changeset 9599:6409c6ba8040 libavcodec

Cosmetics: Fix indentation after r18741.
author cehoyos
date Tue, 05 May 2009 15:48:04 +0000
parents 407470044819
children b59a8ed50f36
files mpegaudio_parser.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/mpegaudio_parser.c	Tue May 05 13:46:50 2009 +0000
+++ b/mpegaudio_parser.c	Tue May 05 15:48:04 2009 +0000
@@ -223,8 +223,8 @@
 
         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 @@
         //    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;