[FFmpeg-devel] [PATCH 2/2] avformat/mov: fix mix of declaration and statement

Michael Niedermayer michaelni at gmx.at
Mon Oct 13 13:45:19 CEST 2014


Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
---
 libavformat/mov.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/mov.c b/libavformat/mov.c
index 294b38a..17551cd 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -780,9 +780,9 @@ static int mov_read_moof(MOVContext *c, AVIOContext *pb, MOVAtom atom)
     if (!c->has_looked_for_mfra && c->use_mfra_for > 0) {
         c->has_looked_for_mfra = 1;
         if (pb->seekable) {
+            int ret;
             av_log(c->fc, AV_LOG_VERBOSE, "stream has moof boxes, will look "
                     "for a mfra\n");
-            int ret;
             if ((ret = mov_read_mfra(c, pb)) < 0) {
                 av_log(c->fc, AV_LOG_VERBOSE, "found a moof box but failed to "
                         "read the mfra (may be a live ismv)\n");
-- 
1.7.9.5



More information about the ffmpeg-devel mailing list