diff options
author | Anton Khirnov | 2013-02-23 08:20:12 +0100 |
---|---|---|
committer | Anton Khirnov | 2013-03-11 18:23:10 +0100 |
commit | 32e5194969e026d790e72e0b3f8f254979ea0f36 (patch) | |
tree | 8bbab9cee1cf9b8f481c4c6bab57b544a6183a6e /libavformat/mux.c | |
parent | 435c2a31ad5eead20eda1152097f60c3bfa22847 (diff) |
lavf: remove disabled FF_API_INTERLEAVE_PACKET cruft
Diffstat (limited to 'libavformat/mux.c')
-rw-r--r-- | libavformat/mux.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c index cb3c297a6b..76b0fb4dc6 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -495,15 +495,6 @@ int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out, } } -#if FF_API_INTERLEAVE_PACKET -int av_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out, - AVPacket *pkt, int flush) -{ - return ff_interleave_packet_per_dts(s, out, pkt, flush); -} - -#endif - /** * Interleave an AVPacket correctly so it can be muxed. * @param out the interleaved packet will be output here |