Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /*
  2.  * Windows resource file for libavutil
  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 "libavutil/version.h"
  26. #include "libavutil/ffversion.h"
  27. #include "config.h"
  28.  
  29. 1 VERSIONINFO
  30. FILEVERSION     LIBAVUTIL_VERSION_MAJOR, LIBAVUTIL_VERSION_MINOR, LIBAVUTIL_VERSION_MICRO, 0
  31. PRODUCTVERSION  LIBAVUTIL_VERSION_MAJOR, LIBAVUTIL_VERSION_MINOR, LIBAVUTIL_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 utility library"
  42.             VALUE "FileVersion",      AV_STRINGIFY(LIBAVUTIL_VERSION)
  43.             VALUE "InternalName",     "libavutil"
  44.             VALUE "LegalCopyright",   "Copyright (C) 2000-" AV_STRINGIFY(CONFIG_THIS_YEAR) " FFmpeg Project"
  45.             VALUE "OriginalFilename", "avutil" BUILDSUF "-" AV_STRINGIFY(LIBAVUTIL_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. }
  56.