diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-07-23 10:34:21 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-07-23 10:34:21 +0000 |
commit | 09959ec46ec2c7cc78c57a851aff683396c004b0 (patch) | |
tree | 6fd06c451d5b1afdbe213a280a6c165b3db210f6 | |
parent | a71abb714e350b017e1e0c1607e343e1e2f2f8a9 (diff) | |
download | ffmpeg-09959ec46ec2c7cc78c57a851aff683396c004b0.tar.gz |
VP8: eliminate redundant code in r24458
Originally committed as revision 24459 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/vp8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index 762ba9506c..2766afb53b 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -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; |