Commit 3ba3e188 authored by Dawid Kozinski's avatar Dawid Kozinski Committed by Ronald S. Bultje

avcodec/hevcpred_template: Removed unreachable code

Signed-off-by: 's avatarDawid Kozinski <d.kozinski@samsung.com>
Signed-off-by: 's avatarRonald S. Bultje <rsbultje@gmail.com>
parent f58038d4
......@@ -213,13 +213,10 @@ do { \
j = 0;
while (j < size_max_x && !IS_INTRA(j, -1))
j++;
if (j > 0)
if (cand_up_left) {
EXTEND_LEFT_CIP(top, j, j + 1);
} else {
EXTEND_LEFT_CIP(top, j, j);
top[-1] = top[0];
}
if (j > 0) {
EXTEND_LEFT_CIP(top, j, j);
top[-1] = top[0];
}
left[-1] = top[-1];
}
left[-1] = top[-1];
......
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