mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
simplify
Originally committed as revision 7995 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2a115873af
commit
43ff071456
@ -1039,7 +1039,7 @@ static inline int check_intra_pred_mode(H264Context *h, int mode){
|
||||
static const int8_t top [7]= {LEFT_DC_PRED8x8, 1,-1,-1};
|
||||
static const int8_t left[7]= { TOP_DC_PRED8x8,-1, 2,-1,DC_128_PRED8x8};
|
||||
|
||||
if(mode < 0 || mode > 6) {
|
||||
if(mode > 6U) {
|
||||
av_log(h->s.avctx, AV_LOG_ERROR, "out of range intra chroma pred mode at %d %d\n", s->mb_x, s->mb_y);
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user