[FFmpeg-cvslog] r18742 - trunk/libavcodec/mpegaudio_parser.c

cehoyos subversion
Tue May 5 17:48:05 CEST 2009


Author: cehoyos
Date: Tue May  5 17:48:04 2009
New Revision: 18742

Log:
Cosmetics: Fix indentation after r18741.

Modified:
   trunk/libavcodec/mpegaudio_parser.c

Modified: trunk/libavcodec/mpegaudio_parser.c
==============================================================================
--- trunk/libavcodec/mpegaudio_parser.c	Tue May  5 15:46:50 2009	(r18741)
+++ trunk/libavcodec/mpegaudio_parser.c	Tue May  5 17:48:04 2009	(r18742)
@@ -223,8 +223,8 @@ static int mpegaudio_parse(AVCodecParser
 
         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(AVCodecParser
         //    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;



More information about the ffmpeg-cvslog mailing list