Commit 09959ec4 authored by Jason Garrett-Glaser's avatar Jason Garrett-Glaser

VP8: eliminate redundant code in r24458

Originally committed as revision 24459 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a71abb71
......@@ -932,7 +932,7 @@ static int check_intra_pred_mode(int mode, int mb_x, int mb_y)
if (!mb_x) {
mode = mb_y ? TOP_DC_PRED8x8 : DC_128_PRED8x8;
} else if (!mb_y) {
mode = mb_x ? LEFT_DC_PRED8x8 : DC_128_PRED8x8;
mode = LEFT_DC_PRED8x8;
}
}
return mode;
......
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