1/* 2 * Windows resource file for libpostproc 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 "libpostproc/version.h" 26#include "libavutil/ffversion.h" 27#include "config.h" 28 291 VERSIONINFO 30FILEVERSION LIBPOSTPROC_VERSION_MAJOR, LIBPOSTPROC_VERSION_MINOR, LIBPOSTPROC_VERSION_MICRO, 0 31PRODUCTVERSION LIBPOSTPROC_VERSION_MAJOR, LIBPOSTPROC_VERSION_MINOR, LIBPOSTPROC_VERSION_MICRO, 0 32FILEFLAGSMASK VS_FFI_FILEFLAGSMASK 33FILEOS VOS_NT_WINDOWS32 34FILETYPE VFT_DLL 35{ 36 BLOCK "StringFileInfo" 37 { 38 BLOCK "040904B0" 39 { 40 VALUE "CompanyName", "FFmpeg Project" 41 VALUE "FileDescription", "FFmpeg postprocessing library" 42 VALUE "FileVersion", AV_STRINGIFY(LIBPOSTPROC_VERSION) 43 VALUE "InternalName", "libpostproc" 44 VALUE "LegalCopyright", "Copyright (C) 2000-" AV_STRINGIFY(CONFIG_THIS_YEAR) " FFmpeg Project" 45 VALUE "OriginalFilename", "postproc" BUILDSUF "-" AV_STRINGIFY(LIBPOSTPROC_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