Commit 4645c756 authored by michael's avatar michael

zero private bits


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6961 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dce9e386
...@@ -238,8 +238,10 @@ static int mp3_header_decompress(AVBitStreamFilterContext *bsfc, AVCodecContext ...@@ -238,8 +238,10 @@ static int mp3_header_decompress(AVBitStreamFilterContext *bsfc, AVCodecContext
if(lsf){ if(lsf){
FFSWAP(int, p[1], p[2]); FFSWAP(int, p[1], p[2]);
header |= (p[1] & 0xC0)>>2; header |= (p[1] & 0xC0)>>2;
p[1] &= 0x3F;
}else{ }else{
header |= p[1] & 0x30; header |= p[1] & 0x30;
p[1] &= 0xCF;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment