[FFmpeg-cvslog] mpegvideo_enc: separate declarations and statements

Diego Biurrun git at videolan.org
Wed Dec 21 03:51:29 CET 2011


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Tue Dec 20 10:06:49 2011 +0100| [1ce1578e4e6e4c79eff87b997668779e50e4be33] | committer: Diego Biurrun

mpegvideo_enc: separate declarations and statements

libavcodec/mpegvideo_enc.c:1209: warning: ISO C90 forbids mixed declarations and code

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1ce1578e4e6e4c79eff87b997668779e50e4be33
---

 libavcodec/mpegvideo_enc.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c
index 14f5447..798eb5c 100644
--- a/libavcodec/mpegvideo_enc.c
+++ b/libavcodec/mpegvideo_enc.c
@@ -1203,10 +1203,11 @@ no_output_pic:
         if (s->reordered_input_picture[0]->f.type == FF_BUFFER_TYPE_SHARED || s->avctx->rc_buffer_size) {
             // input is a shared pix, so we can't modifiy it -> alloc a new one & ensure that the shared one is reuseable
 
+            Picture *pic;
             int i= ff_find_unused_picture(s, 0);
             if (i < 0)
                 return i;
-            Picture *pic= &s->picture[i];
+            pic = &s->picture[i];
 
             pic->f.reference = s->reordered_input_picture[0]->f.reference;
             if(ff_alloc_picture(s, pic, 0) < 0){



More information about the ffmpeg-cvslog mailing list