diff options
author | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-02 06:09:08 +0000 |
---|---|---|
committer | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-02 06:09:08 +0000 |
commit | 7a82a10a094c413aaddfaf7631bbf6a9fa9eeb78 (patch) | |
tree | c0dc810eccdfdc5bb3427c5d4b434daa1072eddc | |
parent | 6fde6305b12e3150e2c3d975f04318934a53e250 (diff) | |
download | ffmpeg-7a82a10a094c413aaddfaf7631bbf6a9fa9eeb78.tar.gz |
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
-rw-r--r-- | libavcodec/vorbis_enc.c | 1 |
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; } |