Commit 34281ac1 authored by cehoyos's avatar cehoyos

Cosmetics: Fix indentation after r18741.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18742 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 666b0a67
...@@ -223,8 +223,8 @@ static int mpegaudio_parse(AVCodecParserContext *s1, ...@@ -223,8 +223,8 @@ static int mpegaudio_parse(AVCodecParserContext *s1,
if(s->frame_size > 0 && buf_ptr - buf == s->inbuf_ptr - s->inbuf if(s->frame_size > 0 && buf_ptr - buf == s->inbuf_ptr - s->inbuf
&& buf_size + buf_ptr - buf >= s->frame_size){ && buf_size + buf_ptr - buf >= s->frame_size){
*poutbuf = buf; *poutbuf = buf;
*poutbuf_size = s->frame_size; *poutbuf_size = s->frame_size;
buf_ptr = buf + s->frame_size; buf_ptr = buf + s->frame_size;
s->inbuf_ptr = s->inbuf; s->inbuf_ptr = s->inbuf;
s->frame_size = 0; s->frame_size = 0;
...@@ -234,8 +234,8 @@ static int mpegaudio_parse(AVCodecParserContext *s1, ...@@ -234,8 +234,8 @@ static int mpegaudio_parse(AVCodecParserContext *s1,
// next_data: // next_data:
if (s->frame_size > 0 && if (s->frame_size > 0 &&
(s->inbuf_ptr - s->inbuf) >= s->frame_size) { (s->inbuf_ptr - s->inbuf) >= s->frame_size) {
*poutbuf = s->inbuf; *poutbuf = s->inbuf;
*poutbuf_size = s->inbuf_ptr - s->inbuf; *poutbuf_size = s->inbuf_ptr - s->inbuf;
s->inbuf_ptr = s->inbuf; s->inbuf_ptr = s->inbuf;
s->frame_size = 0; s->frame_size = 0;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment