diff dv.c @ 8990:cc8f95accbff libavcodec

Fixing a value returning issue
author romansh
date Fri, 20 Feb 2009 02:00:44 +0000
parents 5337b260a70d
children 54bc8a2727b0
line wrap: on
line diff
--- a/dv.c	Thu Feb 19 23:35:59 2009 +0000
+++ b/dv.c	Fri Feb 20 02:00:44 2009 +0000
@@ -816,8 +816,9 @@
                      s->ildct_cmp(NULL, data + linesize, NULL, linesize<<1, 4);
             return (ps > is);
         }
-    } else
-        return 0;
+    }
+
+    return 0;
 }
 
 static av_always_inline int dv_init_enc_block(EncBlockInfo* bi, uint8_t *data, int linesize, DVVideoContext *s, int bias)