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