# HG changeset patch # User michael # Date 1239973067 0 # Node ID a15a08c1ce8b5b72d5a876b715c882aa05daf643 # Parent 6fe0b0ff991adcc70c3b08c86da7521f343a8bb8 Remove useless assignment from h263_pred_dc() found by the clang static analyzer. diff -r 6fe0b0ff991a -r a15a08c1ce8b h263.c --- a/h263.c Fri Apr 17 12:53:11 2009 +0000 +++ b/h263.c Fri Apr 17 12:57:47 2009 +0000 @@ -1580,7 +1580,6 @@ 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;