Commit acb39e93 authored by michael's avatar michael

output last ac3 frame and simplify


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4926 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d5f91fef
......@@ -873,9 +873,8 @@ static int ac3_parse(AVCodecParserContext *s1,
len = s->inbuf_ptr - s->inbuf;
if (s->frame_size == 0) {
/* no header seen : find one. We need at least 7 bytes to parse it */
len = AC3_HEADER_SIZE - len;
if (len > buf_size)
len = buf_size;
len = FFMIN(AC3_HEADER_SIZE - len, buf_size);
memcpy(s->inbuf_ptr, buf_ptr, len);
buf_ptr += len;
s->inbuf_ptr += len;
......@@ -898,16 +897,15 @@ static int ac3_parse(AVCodecParserContext *s1,
avctx->frame_size = 6 * 256;
}
}
} else if (len < s->frame_size) {
len = s->frame_size - len;
if (len > buf_size)
len = buf_size;
} else {
len = FFMIN(s->frame_size - len, buf_size);
memcpy(s->inbuf_ptr, buf_ptr, len);
buf_ptr += len;
s->inbuf_ptr += len;
buf_size -= len;
} else {
if(s->inbuf_ptr - s->inbuf == s->frame_size){
*poutbuf = s->inbuf;
*poutbuf_size = s->frame_size;
s->inbuf_ptr = s->inbuf;
......@@ -915,6 +913,7 @@ static int ac3_parse(AVCodecParserContext *s1,
break;
}
}
}
return buf_ptr - buf;
}
......
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