Commit 6aa2ae8e authored by melanson's avatar melanson

chroma decoding fix by Kostya


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4647 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f5c6c08b
......@@ -413,7 +413,7 @@ static inline void tm2_low_chroma(int *data, int stride, int *clast, int *CD, in
else
prev = 0;
t = (CD[0] + CD[1]) >> 1;
l = (prev - CD[0] - CD[1] + clast[1] + 1) >> 1;
l = (prev - CD[0] - CD[1] + clast[1]) >> 1;
CD[1] = CD[0] + CD[1] - t;
CD[0] = t;
clast[0] = l;
......
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