]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blobdiff - libavcodec/mpegaudio_parser.c
Cosmetics: Fix indentation after r18741.
[frescor/ffmpeg.git] / 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;