VP8: eliminate redundant code in r24458

Originally committed as revision 24459 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Jason Garrett-Glaser 2010-07-23 10:34:21 +00:00
parent a71abb714e
commit 09959ec46e
1 changed files with 1 additions and 1 deletions

View File

@ -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;