Path: blob/master/dep/ffmpeg/include/libavdevice/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 AVDEVICE_VERSION_H19#define AVDEVICE_VERSION_H2021/**22* @file23* @ingroup lavd24* Libavdevice version macros25*/2627#include "libavutil/version.h"2829#include "version_major.h"3031#define LIBAVDEVICE_VERSION_MINOR 332#define LIBAVDEVICE_VERSION_MICRO 1003334#define LIBAVDEVICE_VERSION_INT AV_VERSION_INT(LIBAVDEVICE_VERSION_MAJOR, \35LIBAVDEVICE_VERSION_MINOR, \36LIBAVDEVICE_VERSION_MICRO)37#define LIBAVDEVICE_VERSION AV_VERSION(LIBAVDEVICE_VERSION_MAJOR, \38LIBAVDEVICE_VERSION_MINOR, \39LIBAVDEVICE_VERSION_MICRO)40#define LIBAVDEVICE_BUILD LIBAVDEVICE_VERSION_INT4142#define LIBAVDEVICE_IDENT "Lavd" AV_STRINGIFY(LIBAVDEVICE_VERSION)4344#endif /* AVDEVICE_VERSION_H */454647