[FFmpeg-devel] GSoC VQA v3 different question

The Deep Explorer thedeepexplorer
Mon Apr 13 05:22:49 CEST 2009


Hi,
    Ok, somehow the bit rotation trick wont work so , I replaced ...

code = (code_buf << 3) | (code_buf >> 13);
with
code = code_buf >> 13;
code = code & 0x0007;
And now am getting the codes ..

I am getting lot of code 4, 6, 7 for the movies under bladerunner....
Any suggestions how do I handle that  ?

Thanks,
-tde



More information about the ffmpeg-devel mailing list