Commit 499bc1c2 authored by michael's avatar michael

Remove uselss assignment from h263_pred_dc() found by the clang static analyzer.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18547 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3846b5c1
......@@ -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!=1 && s->mb_x == s->resync_mb_x) a= 1024;
}
pred_dc = 1024;
/* just DC prediction */
if (a != 1024 && c != 1024)
pred_dc = (a + c) >> 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment