]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Cosmetics: Fix indentation after r18741.
authorcehoyos <cehoyos@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Tue, 5 May 2009 15:48:04 +0000 (15:48 +0000)
committercehoyos <cehoyos@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Tue, 5 May 2009 15:48:04 +0000 (15:48 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18742 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/mpegaudio_parser.c

index cc2d240abdb44beb210f7004c89fde966dc4dd62..d1f54b9f8fa8e1902ce3bf2677026af33d9b4e32 100644 (file)
@@ -223,8 +223,8 @@ static int mpegaudio_parse(AVCodecParserContext *s1,
 
         if(s->frame_size > 0 && buf_ptr - buf == s->inbuf_ptr - s->inbuf
            && buf_size + buf_ptr - buf >= s->frame_size){
-                *poutbuf = buf;
-                *poutbuf_size = s->frame_size;
+            *poutbuf = buf;
+            *poutbuf_size = s->frame_size;
             buf_ptr = buf + s->frame_size;
             s->inbuf_ptr = s->inbuf;
             s->frame_size = 0;
@@ -234,8 +234,8 @@ static int mpegaudio_parse(AVCodecParserContext *s1,
         //    next_data:
         if (s->frame_size > 0 &&
             (s->inbuf_ptr - s->inbuf) >= s->frame_size) {
-                *poutbuf = s->inbuf;
-                *poutbuf_size = s->inbuf_ptr - s->inbuf;
+            *poutbuf = s->inbuf;
+            *poutbuf_size = s->inbuf_ptr - s->inbuf;
             s->inbuf_ptr = s->inbuf;
             s->frame_size = 0;
             break;