You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
VP8: eliminate redundant code in r24458
Originally committed as revision 24459 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -932,7 +932,7 @@ static int check_intra_pred_mode(int mode, int mb_x, int mb_y)
|
|||||||
if (!mb_x) {
|
if (!mb_x) {
|
||||||
mode = mb_y ? TOP_DC_PRED8x8 : DC_128_PRED8x8;
|
mode = mb_y ? TOP_DC_PRED8x8 : DC_128_PRED8x8;
|
||||||
} else if (!mb_y) {
|
} else if (!mb_y) {
|
||||||
mode = mb_x ? LEFT_DC_PRED8x8 : DC_128_PRED8x8;
|
mode = LEFT_DC_PRED8x8;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return mode;
|
return mode;
|
||||||
|
Reference in New Issue
Block a user