mirror of
https://github.com/videolan/vlc.git
synced 2024-12-04 15:26:23 +08:00
4e84ec7af9
+ Added the 'video/x-ms-asf' MIME type to the plugin (Closes Debian bug #232690). This commit is also a blatant test of the SVN->CVS mirroring scripts. If it does not work, we're screwed :-)
52 lines
2.0 KiB
Plaintext
52 lines
2.0 KiB
Plaintext
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// VLC Plugin description.
|
|
//
|
|
#ifndef VERSION_NUMBER
|
|
#define VERSION_NUMBER 0,0,0,0
|
|
#endif
|
|
#ifndef VERSION
|
|
#define VERSION 0.0.0
|
|
#endif
|
|
|
|
#define STRINGIFY( z ) UGLY_KLUDGE( z )
|
|
#define UGLY_KLUDGE( z ) #z
|
|
|
|
//VS_VERSION_INFO VERSIONINFO
|
|
1 VERSIONINFO
|
|
FILEVERSION VERSION_NUMBER
|
|
PRODUCTVERSION VERSION_NUMBER
|
|
FILEFLAGSMASK 0x3fL
|
|
#ifdef _DEBUG
|
|
FILEFLAGS 0x1L
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS 0x4L
|
|
FILETYPE 0x2L
|
|
FILESUBTYPE 0x0L
|
|
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904e4"
|
|
BEGIN
|
|
VALUE "ProductName", "VLC multimedia plugin\0"
|
|
VALUE "ProductVersion", STRINGIFY( VERSION )
|
|
VALUE "OriginalFilename", "npvlc.dll\0"
|
|
VALUE "FileVersion", STRINGIFY( VERSION )
|
|
VALUE "FileDescription", "VLC multimedia plugin Version "STRINGIFY( VERSION )"<br><br>VideoLAN WWW: <a href=""http://www.videolan.org/"">http://www.videolan.org/</a>\0"
|
|
VALUE "InternalName", "npvlc\0"
|
|
VALUE "CompanyName", "VideoLAN Team\0"
|
|
VALUE "LegalCopyright", "Copyright VideoLAN \251 1996-2004\0"
|
|
VALUE "MIMEType", "audio/mpeg|audio/x-mpeg|video/mpeg|video/x-mpeg|video/mpeg-system|video/x-mpeg-system|video/mpeg4|audio/mpeg4|application/mpeg4-iod|application/mpeg4-muxcodetable|video/x-msvideo|video/quicktime|application/x-ogg|application/x-vlc-plugin|video/x-ms-asf-plugin|video/x-ms-asf|application/x-mplayer2|video/x-ms-wmv\0"
|
|
VALUE "FileExtents", "mp2,mp3,mpga,mpega|mp2,mp3,mpga,mpega|mpg,mpeg,mpe|mpg,mpeg,mpe|mpg,mpeg,vob|mpg,mpeg,vob|mp4,mpg4|mp4,mpg4|mp4,mpg4|mp4,mpg4|avi|mov,qt|ogg|\0"
|
|
VALUE "FileOpenName", "MPEG audio|MPEG audio|MPEG video|MPEG video|MPEG video|MPEG video|MPEG-4 video|MPEG-4 audio|MPEG-4 video|MPEG-4 video|AVI video|QuickTime video|Ogg stream|VLC plugin\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1252
|
|
END
|
|
END
|