~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavcodec/avcodecres.rc

  • Committer: Henrik Rydgård
  • Date: 2014-01-03 10:44:32 UTC
  • Revision ID: git-v1:87c6c126784b1718bfa448ecf2e6a9fef781eb4e
Update our ffmpeg snapshot to a clone of the official repository.

This is because Maxim's at3plus support has been officially merged!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Windows resource file for libavcodec
 
3
 *
 
4
 * Copyright (C) 2012 James Almer
 
5
 * Copyright (C) 2013 Tiancheng "Timothy" Gu
 
6
 *
 
7
 * This file is part of FFmpeg.
 
8
 *
 
9
 * FFmpeg is free software; you can redistribute it and/or
 
10
 * modify it under the terms of the GNU Lesser General Public
 
11
 * License as published by the Free Software Foundation; either
 
12
 * version 2.1 of the License, or (at your option) any later version.
 
13
 *
 
14
 * FFmpeg is distributed in the hope that it will be useful,
 
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
17
 * Lesser General Public License for more details.
 
18
 *
 
19
 * You should have received a copy of the GNU Lesser General Public
 
20
 * License along with FFmpeg; if not, write to the Free Software
 
21
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
22
 */
 
23
 
 
24
#include <windows.h>
 
25
#include "libavcodec/version.h"
 
26
#include "libavutil/ffversion.h"
 
27
#include "config.h"
 
28
 
 
29
1 VERSIONINFO
 
30
FILEVERSION     LIBAVCODEC_VERSION_MAJOR, LIBAVCODEC_VERSION_MINOR, LIBAVCODEC_VERSION_MICRO, 0
 
31
PRODUCTVERSION  LIBAVCODEC_VERSION_MAJOR, LIBAVCODEC_VERSION_MINOR, LIBAVCODEC_VERSION_MICRO, 0
 
32
FILEFLAGSMASK   VS_FFI_FILEFLAGSMASK
 
33
FILEOS          VOS_NT_WINDOWS32
 
34
FILETYPE        VFT_DLL
 
35
{
 
36
    BLOCK "StringFileInfo"
 
37
    {
 
38
        BLOCK "040904B0"
 
39
        {
 
40
            VALUE "CompanyName",      "FFmpeg Project"
 
41
            VALUE "FileDescription",  "FFmpeg codec library"
 
42
            VALUE "FileVersion",      AV_STRINGIFY(LIBAVCODEC_VERSION)
 
43
            VALUE "InternalName",     "libavcodec"
 
44
            VALUE "LegalCopyright",   "Copyright (C) 2000-" AV_STRINGIFY(CONFIG_THIS_YEAR) " FFmpeg Project"
 
45
            VALUE "OriginalFilename", "avcodec" BUILDSUF "-" AV_STRINGIFY(LIBAVCODEC_VERSION_MAJOR) SLIBSUF
 
46
            VALUE "ProductName",      "FFmpeg"
 
47
            VALUE "ProductVersion",   FFMPEG_VERSION
 
48
        }
 
49
    }
 
50
 
 
51
    BLOCK "VarFileInfo"
 
52
    {
 
53
        VALUE "Translation", 0x0409, 0x04B0
 
54
    }
 
55
}