This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Original Commit: r42 | ods15 | 2006-09-23 10:53:16 +0300 (Sat, 23 Sep 2006) | 2 lines
fix for residue end Originally committed as revision 6450 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Oded Shimon
19 years ago
parent
b452ee42f5
commit
4317306f34
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/vorbis_enc.c
+ 1
- 1
libavcodec/vorbis_enc.c
View File
@@ -311,7 +311,7 @@ static void create_vorbis_context(venc_context_t * venc, AVCodecContext * avccon
rc = &venc->residues[0];
rc->type = 0;
rc->begin = 0;
rc->end = 1 << venc->blocksize[0];
rc->end = 1 <<
(
venc->blocksize[0]
- 1)
;
rc->partition_size = 64;
rc->classifications = 1;
rc->classbook = 1;
Write
Preview
Loading…
Cancel
Save