diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-03-15 13:37:43 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-03-20 20:12:16 +0100 |
commit | a6733202cc6891f9feec48e33e342e657da3873d (patch) | |
tree | 3b40a1a2ec6996215dd6face613f7b217ea1faa5 /libavformat/version.h | |
parent | 3c90cc2ef21a928a7c11cf5a4583169025cdf847 (diff) | |
download | ffmpeg-a6733202cc6891f9feec48e33e342e657da3873d.tar.gz |
lavf: make av_interleave_packet_per_dts() private.
There is no reason for it to be public, it's only meant to be used
internally.
Diffstat (limited to 'libavformat/version.h')
-rw-r--r-- | libavformat/version.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/version.h b/libavformat/version.h index ac1c5473bd..91ddfd27e8 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -56,5 +56,8 @@ #ifndef FF_API_READ_PACKET #define FF_API_READ_PACKET (LIBAVFORMAT_VERSION_MAJOR < 55) #endif +#ifndef FF_API_INTERLEAVE_PACKET +#define FF_API_INTERLEAVE_PACKET (LIBAVFORMAT_VERSION_MAJOR < 55) +#endif #endif /* AVFORMAT_VERSION_H */ |