~ubuntu-branches/ubuntu/saucy/x264/saucy-updates

« back to all changes in this revision

Viewing changes to x264res.rc

  • Committer: Package Import Robot
  • Author(s): Rico Tzschichholz
  • Date: 2012-03-15 17:37:19 UTC
  • mto: (12.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: package-import@ubuntu.com-20120315173719-bpat2i6dvj0asbjn
Tags: upstream-0.120.2171+git01f7a33
ImportĀ upstreamĀ versionĀ 0.120.2171+git01f7a33

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 * x264res.rc: windows resource file
 
3
 *****************************************************************************
 
4
 * Copyright (C) 2012 x264 project
 
5
 *
 
6
 * Authors: Henrik Gramner <hengar-6@student.ltu.se>
 
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
FILEFLAGS       0
 
43
FILEOS          VOS_NT_WINDOWS32 /* Identical for x86-64 */
 
44
#ifdef DLL
 
45
FILETYPE        VFT_DLL
 
46
#else
 
47
FILETYPE        VFT_APP
 
48
#endif
 
49
FILESUBTYPE     VFT2_UNKNOWN
 
50
BEGIN
 
51
    BLOCK "StringFileInfo"
 
52
    BEGIN
 
53
        BLOCK "040904E4"
 
54
        BEGIN
 
55
            VALUE "CompanyName",      "x264 project"
 
56
#ifdef DLL
 
57
            VALUE "FileDescription",  "H.264 (MPEG-4 AVC) encoder library"
 
58
#else
 
59
            VALUE "FileDescription",  "H.264 (MPEG-4 AVC) encoder"
 
60
#endif
 
61
            VALUE "FileVersion",      X264_POINTVER
 
62
            VALUE "InternalName",     "x264"
 
63
            VALUE "LegalCopyright",   "Copyright (C) 2003-2012 x264 project"
 
64
#ifdef DLL
 
65
            VALUE "OriginalFilename", "libx264-" xstr(X264_BUILD) ".dll"
 
66
#else
 
67
            VALUE "OriginalFilename", "x264.exe"
 
68
#endif
 
69
            VALUE "ProductName",      "x264"
 
70
            VALUE "ProductVersion",   X264_POINTVER
 
71
        END
 
72
    END
 
73
 
 
74
    BLOCK "VarFileInfo"
 
75
    BEGIN
 
76
        VALUE "Translation", 0x0409, 0x04E4
 
77
    END
 
78
END