diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-14 20:39:06 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-03-16 22:59:39 -0400 |
commit | b7f2fdde74608d848f943377c40d3df804c5f955 (patch) | |
tree | b2d0037a77a9b3610de310217c683016b19ec204 /libavformat/movenc.c | |
parent | 35f1023592b46e608a4de1566b12268e3e9e72f0 (diff) | |
download | ffmpeg-b7f2fdde74608d848f943377c40d3df804c5f955.tar.gz |
avio: rename put_flush_packet -> avio_flush
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index e1fd79d6ec..774cd3a3b5 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -2042,7 +2042,7 @@ int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt) trk->sampleCount += samplesInChunk; mov->mdat_size += size; - put_flush_packet(pb); + avio_flush(pb); if (trk->hint_track >= 0 && trk->hint_track < mov->nb_streams) ff_mov_add_hinted_packet(s, pkt, trk->hint_track, trk->entry); @@ -2227,7 +2227,7 @@ static int mov_write_header(AVFormatContext *s) } } - put_flush_packet(pb); + avio_flush(pb); return 0; error: @@ -2271,7 +2271,7 @@ static int mov_write_trailer(AVFormatContext *s) } - put_flush_packet(pb); + avio_flush(pb); av_freep(&mov->tracks); |