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
10l
Originally committed as revision 5527 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer
19 years ago
parent
f3a30e3a9c
commit
6c35b4dee3
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/flacenc.c
+ 1
- 1
libavcodec/flacenc.c
View File
@@ -331,7 +331,7 @@ write_utf8(PutBitContext *pb, uint32_t val)
return;
}
bytes= (av_log2(val)
-1
) / 5;
bytes= (av_log2(val)
+4
) / 5;
shift = (bytes - 1) * 6;
put_bits(pb, 8, (256 - (256>>bytes)) | (val >> shift));
while(shift >= 6){
Write
Preview
Loading…
Cancel
Save