changeset 9458:a15a08c1ce8b libavcodec

Remove useless assignment from h263_pred_dc() found by the clang static analyzer.
author michael
date Fri, 17 Apr 2009 12:57:47 +0000
parents 6fe0b0ff991a
children 84932ac233a5
files h263.c
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;