Path: blob/master/dep/ffmpeg/include/libswscale/version.h
4216 views
/*1* This file is part of FFmpeg.2*3* FFmpeg is free software; you can redistribute it and/or4* modify it under the terms of the GNU Lesser General Public5* License as published by the Free Software Foundation; either6* version 2.1 of the License, or (at your option) any later version.7*8* FFmpeg is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU11* Lesser General Public License for more details.12*13* You should have received a copy of the GNU Lesser General Public14* License along with FFmpeg; if not, write to the Free Software15* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA16*/1718#ifndef SWSCALE_VERSION_H19#define SWSCALE_VERSION_H2021/**22* @file23* swscale version macros24*/2526#include "libavutil/version.h"2728#include "version_major.h"2930#define LIBSWSCALE_VERSION_MINOR 331#define LIBSWSCALE_VERSION_MICRO 1003233#define LIBSWSCALE_VERSION_INT AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \34LIBSWSCALE_VERSION_MINOR, \35LIBSWSCALE_VERSION_MICRO)36#define LIBSWSCALE_VERSION AV_VERSION(LIBSWSCALE_VERSION_MAJOR, \37LIBSWSCALE_VERSION_MINOR, \38LIBSWSCALE_VERSION_MICRO)39#define LIBSWSCALE_BUILD LIBSWSCALE_VERSION_INT4041#define LIBSWSCALE_IDENT "SwS" AV_STRINGIFY(LIBSWSCALE_VERSION)4243#endif /* SWSCALE_VERSION_H */444546