diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-05-05 15:48:04 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-05-05 15:48:04 +0000 |
commit | ee273f98e8910376ad61200fcc6254a615fe2f7a (patch) | |
tree | 4f65f62305de2867f926d12010191249489ca034 | |
parent | 266c1d901f1b9a5a10cf9046dc2a011217184f7f (diff) | |
download | ffmpeg-ee273f98e8910376ad61200fcc6254a615fe2f7a.tar.gz |
Cosmetics: Fix indentation after r18741.
Originally committed as revision 18742 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mpegaudio_parser.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/mpegaudio_parser.c b/libavcodec/mpegaudio_parser.c index cc2d240abd..d1f54b9f8f 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; |