Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOded Shimon <ods15@ods15.dyndns.org>2006-10-02 10:09:08 +0400
committerOded Shimon <ods15@ods15.dyndns.org>2006-10-02 10:09:08 +0400
commit7a82a10a094c413aaddfaf7631bbf6a9fa9eeb78 (patch)
treec0dc810eccdfdc5bb3427c5d4b434daa1072eddc /libavcodec/vorbis_enc.c
parent6fde6305b12e3150e2c3d975f04318934a53e250 (diff)
Original Commit: r96 | ods15 | 2006-09-30 23:25:18 +0300 (Sat, 30 Sep 2006) | 2 lines
even though it doesn't do anything, use flush_put_bits() Originally committed as revision 6500 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis_enc.c')
-rw-r--r--libavcodec/vorbis_enc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vorbis_enc.c b/libavcodec/vorbis_enc.c
index 6093bc1927..c6f5037f20 100644
--- a/libavcodec/vorbis_enc.c
+++ b/libavcodec/vorbis_enc.c
@@ -1134,6 +1134,7 @@ static int vorbis_encode_frame(AVCodecContext * avccontext, unsigned char * pack
residue_encode(venc, &venc->residues[mapping->residue[mapping->mux[0]]], &pb, venc->coeffs, samples, venc->channels);
+ flush_put_bits(&pb);
return (put_bits_count(&pb) + 7) / 8;
}