[FFmpeg-cvslog] r17469 - trunk/libavcodec/dv.c

romansh subversion
Fri Feb 20 03:00:44 CET 2009


Author: romansh
Date: Fri Feb 20 03:00:44 2009
New Revision: 17469

Log:
Fixing a value returning issue

Modified:
   trunk/libavcodec/dv.c

Modified: trunk/libavcodec/dv.c
==============================================================================
--- trunk/libavcodec/dv.c	Fri Feb 20 00:35:59 2009	(r17468)
+++ trunk/libavcodec/dv.c	Fri Feb 20 03:00:44 2009	(r17469)
@@ -816,8 +816,9 @@ static av_always_inline int dv_guess_dct
                      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)




More information about the ffmpeg-cvslog mailing list