summaryrefslogtreecommitdiff
path: root/libavformat/gxfenc.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-03-15 13:37:43 +0100
committerAnton Khirnov <anton@khirnov.net>2012-03-20 20:12:16 +0100
commita6733202cc6891f9feec48e33e342e657da3873d (patch)
tree3b40a1a2ec6996215dd6face613f7b217ea1faa5 /libavformat/gxfenc.c
parent3c90cc2ef21a928a7c11cf5a4583169025cdf847 (diff)
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/gxfenc.c')
-rw-r--r--libavformat/gxfenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/gxfenc.c b/libavformat/gxfenc.c
index dcd2a8c84d..5069f2f3f8 100644
--- a/libavformat/gxfenc.c
+++ b/libavformat/gxfenc.c
@@ -936,7 +936,7 @@ static int gxf_interleave_packet(AVFormatContext *s, AVPacket *out, AVPacket *pk
if (pkt && s->streams[pkt->stream_index]->codec->codec_type == AVMEDIA_TYPE_VIDEO)
pkt->duration = 2; // enforce 2 fields
return ff_audio_rechunk_interleave(s, out, pkt, flush,
- av_interleave_packet_per_dts, gxf_compare_field_nb);
+ ff_interleave_packet_per_dts, gxf_compare_field_nb);
}
AVOutputFormat ff_gxf_muxer = {