Originally committed as revision 5527 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Michael Niedermayer 19 years ago
parent f3a30e3a9c
commit 6c35b4dee3
  1. 2
      libavcodec/flacenc.c

@ -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){

Loading…
Cancel
Save