Commit a7a092b4 authored by michael's avatar michael

Fix decoding of 320x240.ogg.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14227 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 31eed862
...@@ -190,7 +190,7 @@ static av_always_inline void idct(uint8_t *dst, int stride, int16_t *input, int ...@@ -190,7 +190,7 @@ static av_always_inline void idct(uint8_t *dst, int stride, int16_t *input, int
dst[4*stride]= dst[4*stride]=
dst[5*stride]= dst[5*stride]=
dst[6*stride]= dst[6*stride]=
dst[7*stride]= 128 + ((xC4S4 * ip[0*8] + (IdctAdjustBeforeShift<<16))>>20); dst[7*stride]= cm[128 + ((xC4S4 * ip[0*8] + (IdctAdjustBeforeShift<<16))>>20)];
}else{ }else{
if(ip[0*8]){ if(ip[0*8]){
int v= ((xC4S4 * ip[0*8] + (IdctAdjustBeforeShift<<16))>>20); int v= ((xC4S4 * ip[0*8] + (IdctAdjustBeforeShift<<16))>>20);
......
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