Path: blob/master/dep/ffmpeg/include/libavformat/version_major.h
4216 views
/*1* Version macros.2*3* This file is part of FFmpeg.4*5* FFmpeg is free software; you can redistribute it and/or6* modify it under the terms of the GNU Lesser General Public7* License as published by the Free Software Foundation; either8* version 2.1 of the License, or (at your option) any later version.9*10* FFmpeg is distributed in the hope that it will be useful,11* but WITHOUT ANY WARRANTY; without even the implied warranty of12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU13* Lesser General Public License for more details.14*15* You should have received a copy of the GNU Lesser General Public16* License along with FFmpeg; if not, write to the Free Software17* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA18*/1920#ifndef AVFORMAT_VERSION_MAJOR_H21#define AVFORMAT_VERSION_MAJOR_H2223/**24* @file25* @ingroup libavf26* Libavformat version macros27*/2829// Major bumping may affect Ticket5467, 5421, 5451(compatibility with Chromium)30// Also please add any ticket numbers that you believe might be affected here31#define LIBAVFORMAT_VERSION_MAJOR 613233/**34* FF_API_* defines may be placed below to indicate public API that will be35* dropped at a future version bump. The defines themselves are not part of36* the public API and may change, break or disappear at any time.37*38* @note, when bumping the major version it is recommended to manually39* disable each FF_API_* in its own commit instead of disabling them all40* at once through the bump. This improves the git bisect-ability of the change.41*42*/43#define FF_API_COMPUTE_PKT_FIELDS2 (LIBAVFORMAT_VERSION_MAJOR < 62)44#define FF_API_LAVF_SHORTEST (LIBAVFORMAT_VERSION_MAJOR < 62)45#define FF_API_ALLOW_FLUSH (LIBAVFORMAT_VERSION_MAJOR < 62)46#define FF_API_AVSTREAM_SIDE_DATA (LIBAVFORMAT_VERSION_MAJOR < 62)4748#define FF_API_GET_DUR_ESTIMATE_METHOD (LIBAVFORMAT_VERSION_MAJOR < 62)49#define FF_API_INTERNAL_TIMING (LIBAVFORMAT_VERSION_MAJOR < 62)5051#define FF_API_R_FRAME_RATE 15253#endif /* AVFORMAT_VERSION_MAJOR_H */545556