Path: blob/master/dep/ffmpeg/include/libavcodec/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 AVCODEC_VERSION_H19#define AVCODEC_VERSION_H2021/**22* @file23* @ingroup libavc24* Libavcodec version macros.25*/2627#include "libavutil/version.h"2829#include "version_major.h"3031#define LIBAVCODEC_VERSION_MINOR 1932#define LIBAVCODEC_VERSION_MICRO 1013334#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \35LIBAVCODEC_VERSION_MINOR, \36LIBAVCODEC_VERSION_MICRO)37#define LIBAVCODEC_VERSION AV_VERSION(LIBAVCODEC_VERSION_MAJOR, \38LIBAVCODEC_VERSION_MINOR, \39LIBAVCODEC_VERSION_MICRO)40#define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT4142#define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)4344#endif /* AVCODEC_VERSION_H */454647