Remove useless assignment from h263_pred_dc() found by the clang static analyzer.
Originally committed as revision 18547 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6e21a5b1ae
commit
c2394854ed
@ -1580,7 +1580,6 @@ static int h263_pred_dc(MpegEncContext * s, int n, int16_t **dc_val_ptr)
|
|||||||
if(n!=2) c= 1024;
|
if(n!=2) c= 1024;
|
||||||
if(n!=1 && s->mb_x == s->resync_mb_x) a= 1024;
|
if(n!=1 && s->mb_x == s->resync_mb_x) a= 1024;
|
||||||
}
|
}
|
||||||
pred_dc = 1024;
|
|
||||||
/* just DC prediction */
|
/* just DC prediction */
|
||||||
if (a != 1024 && c != 1024)
|
if (a != 1024 && c != 1024)
|
||||||
pred_dc = (a + c) >> 1;
|
pred_dc = (a + c) >> 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user