From 34281ac136bf7c8d65bc964e669d78b094845e46 Mon Sep 17 00:00:00 2001 From: cehoyos Date: Tue, 5 May 2009 15:48:04 +0000 Subject: [PATCH] Cosmetics: Fix indentation after r18741. git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18742 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavcodec/mpegaudio_parser.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/mpegaudio_parser.c b/libavcodec/mpegaudio_parser.c index cc2d240ab..d1f54b9f8 100644 --- a/libavcodec/mpegaudio_parser.c +++ b/libavcodec/mpegaudio_parser.c @@ -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; -- 2.39.2