[FFmpeg-cvslog] avdevice/fbdev_enc: avoid declaring variables in for()

Michael Niedermayer git at videolan.org
Thu Oct 24 10:28:54 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Oct 24 10:18:17 2013 +0200| [04916953584332b457a9485eee0724f33bbb9ba8] | committer: Michael Niedermayer

avdevice/fbdev_enc: avoid declaring variables in for()

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavdevice/fbdev_enc.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/libavdevice/fbdev_enc.c b/libavdevice/fbdev_enc.c
index 9e76938..c3f8588 100644
--- a/libavdevice/fbdev_enc.c
+++ b/libavdevice/fbdev_enc.c
@@ -47,8 +47,9 @@ static av_cold int fbdev_write_header(AVFormatContext *h)
     enum AVPixelFormat pix_fmt;
     AVStream *st = NULL;
     int ret, flags = O_RDWR;
+    int i;
 
-    for (int i = 0; i < h->nb_streams; i++) {
+    for (i = 0; i < h->nb_streams; i++) {
         if (h->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
             if (!st) {
                 fbdev->index = i;
@@ -117,6 +118,7 @@ static int fbdev_write_packet(AVFormatContext *h, AVPacket *pkt)
     int video_height = codec_ctx->height;
     int bytes_per_pixel = ((codec_ctx->bits_per_coded_sample + 7) >> 3);
     int src_line_size = video_width * bytes_per_pixel;
+    int i;
 
     if (fbdev->index != pkt->stream_index)
         return 0;
@@ -175,7 +177,7 @@ static int fbdev_write_packet(AVFormatContext *h, AVPacket *pkt)
         }
     }
 
-    for (int i = 0; i < disp_height; i++) {
+    for (i = 0; i < disp_height; i++) {
         memcpy(pout, pin, bytes_to_copy);
         pout += fbdev->fixinfo.line_length;
         pin  += src_line_size;



More information about the ffmpeg-cvslog mailing list