]> git.sesse.net Git - x264/blob - x264res.rc
Switch to exponential interpolation between presets.
[x264] / x264res.rc
1 /*****************************************************************************
2  * x264res.rc: windows resource file
3  *****************************************************************************
4  * Copyright (C) 2012-2016 x264 project
5  *
6  * Authors: Henrik Gramner <henrik@gramner.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
21  *
22  * This program is also available under a commercial proprietary license.
23  * For more information, contact us at licensing@x264.com.
24  *****************************************************************************/
25
26 #include <windows.h>
27 #include <stdint.h>
28 #include "x264.h"
29
30 #ifndef X264_REV
31 #define X264_REV 0
32 #define X264_REV_DIFF 0
33 #endif
34
35 #define str(s) #s
36 #define xstr(s) str(s)
37
38 VS_VERSION_INFO VERSIONINFO
39 FILEVERSION     0, X264_BUILD, X264_REV, X264_REV_DIFF
40 PRODUCTVERSION  0, X264_BUILD, X264_REV, X264_REV_DIFF
41 FILEFLAGSMASK   VS_FFI_FILEFLAGSMASK
42 #ifdef DEBUG
43 FILEFLAGS       VS_FF_DEBUG
44 #else
45 FILEFLAGS       0
46 #endif
47 FILEOS          VOS_NT_WINDOWS32 /* Identical for x86-64 */
48 #ifdef DLL
49 FILETYPE        VFT_DLL
50 #else
51 FILETYPE        VFT_APP
52 #endif
53 FILESUBTYPE     VFT2_UNKNOWN
54 BEGIN
55     BLOCK "StringFileInfo"
56     BEGIN
57         BLOCK "040904B0"
58         BEGIN
59             VALUE "CompanyName",      "x264 project"
60 #ifdef DLL
61             VALUE "FileDescription",  "H.264 (MPEG-4 AVC) encoder library"
62 #else
63             VALUE "FileDescription",  "H.264 (MPEG-4 AVC) encoder"
64 #endif
65             VALUE "FileVersion",      X264_POINTVER
66             VALUE "InternalName",     "x264"
67             VALUE "LegalCopyright",   "Copyright (C) 2003-2016 x264 project"
68 #ifdef DLL
69             VALUE "OriginalFilename", "libx264-" xstr(X264_BUILD) ".dll"
70 #else
71             VALUE "OriginalFilename", "x264.exe"
72 #endif
73             VALUE "ProductName",      "x264"
74             VALUE "ProductVersion",   X264_POINTVER
75         END
76     END
77
78     BLOCK "VarFileInfo"
79     BEGIN
80         VALUE "Translation", 0x0409, 0x04B0 /* U.S. English (Unicode) */
81     END
82 END