[SCM] libav/experimental: Cosmetics: Reindent after r20736.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:55:31 UTC 2013


The following commit has been merged in the experimental branch:
commit f50270c9c0d6339f11d766ef9493cf41d93b33de
Author: Carl Eugen Hoyos <cehoyos at rainbow.studorg.tuwien.ac.at>
Date:   Sat Dec 5 09:36:32 2009 +0000

    Cosmetics: Reindent after r20736.
    
    Originally committed as revision 20737 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/mpegvideo_parser.c b/libavcodec/mpegvideo_parser.c
index 537614b..df998a3 100644
--- a/libavcodec/mpegvideo_parser.c
+++ b/libavcodec/mpegvideo_parser.c
@@ -53,7 +53,7 @@ static void mpegvideo_extract_headers(AVCodecParserContext *s,
                 pc->width  = (buf[0] << 4) | (buf[1] >> 4);
                 pc->height = ((buf[1] & 0x0f) << 8) | buf[2];
                 if(!avctx->width || !avctx->height || !avctx->coded_width || !avctx->coded_height){
-                avcodec_set_dimensions(avctx, pc->width, pc->height);
+                    avcodec_set_dimensions(avctx, pc->width, pc->height);
                     did_set_size=1;
                 }
                 frame_rate_index = buf[3] & 0xf;
@@ -82,7 +82,7 @@ static void mpegvideo_extract_headers(AVCodecParserContext *s,
                         pc->height |=( vert_size_ext << 12);
                         avctx->bit_rate += (bit_rate_ext << 18) * 400;
                         if(did_set_size)
-                        avcodec_set_dimensions(avctx, pc->width, pc->height);
+                            avcodec_set_dimensions(avctx, pc->width, pc->height);
                         avctx->time_base.den = pc->frame_rate.den * (frame_rate_ext_n + 1) * 2;
                         avctx->time_base.num = pc->frame_rate.num * (frame_rate_ext_d + 1);
                         avctx->codec_id = CODEC_ID_MPEG2VIDEO;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list