# HG changeset patch # User cehoyos # Date 1241538484 0 # Node ID 6409c6ba804049424ce05933dc5b5f309b5791f3 # Parent 4074700448191598134c88afd61e9a13870028ed Cosmetics: Fix indentation after r18741. diff -r 407470044819 -r 6409c6ba8040 mpegaudio_parser.c --- 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;