Path: blob/master/dep/ffmpeg/include/libavdevice/version_major.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_MAJOR_H19#define AVDEVICE_VERSION_MAJOR_H2021/**22* @file23* @ingroup lavd24* Libavdevice version macros25*/2627#define LIBAVDEVICE_VERSION_MAJOR 612829/**30* FF_API_* defines may be placed below to indicate public API that will be31* dropped at a future version bump. The defines themselves are not part of32* the public API and may change, break or disappear at any time.33*/3435// reminder to remove the bktr device on next major bump36#define FF_API_BKTR_DEVICE (LIBAVDEVICE_VERSION_MAJOR < 62)37// reminder to remove the opengl device on next major bump38#define FF_API_OPENGL_DEVICE (LIBAVDEVICE_VERSION_MAJOR < 62)39// reminder to remove the sdl2 device on next major bump40#define FF_API_SDL2_DEVICE (LIBAVDEVICE_VERSION_MAJOR < 62)4142#endif /* AVDEVICE_VERSION_MAJOR_H */434445