lavf: deprecate AVFormatContext.index_built
it's not touched anywhere in ffmpeg, the code setting it was removed over two years ago (e9b78eeba22b050810a507e69df1b652e56ab62b). Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit b0294c80d3a3981ec7ef9e4654962780e8566075)
This commit is contained in:
parent
4f036b9f69
commit
b845252d52
@ -754,7 +754,9 @@ typedef struct AVFormatContext {
|
|||||||
|
|
||||||
/* av_seek_frame() support */
|
/* av_seek_frame() support */
|
||||||
int64_t data_offset; /**< offset of the first packet */
|
int64_t data_offset; /**< offset of the first packet */
|
||||||
int index_built;
|
#if FF_API_INDEX_BUILT
|
||||||
|
attribute_deprecated int index_built;
|
||||||
|
#endif
|
||||||
|
|
||||||
int mux_rate;
|
int mux_rate;
|
||||||
unsigned int packet_size;
|
unsigned int packet_size;
|
||||||
|
@ -89,5 +89,8 @@
|
|||||||
#ifndef FF_API_OLD_AVIO
|
#ifndef FF_API_OLD_AVIO
|
||||||
#define FF_API_OLD_AVIO (LIBAVFORMAT_VERSION_MAJOR < 53)
|
#define FF_API_OLD_AVIO (LIBAVFORMAT_VERSION_MAJOR < 53)
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef FF_API_INDEX_BUILT
|
||||||
|
#define FF_API_INDEX_BUILT (LIBAVFORMAT_VERSION_MAJOR < 53)
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif //AVFORMAT_VERSION_H
|
#endif //AVFORMAT_VERSION_H
|
||||||
|
Loading…
x
Reference in New Issue
Block a user