Commit 96111d99 authored by michael's avatar michael

Better explanation for buf_size==0 code.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14353 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ea07aa96
...@@ -7730,7 +7730,7 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -7730,7 +7730,7 @@ static int decode_frame(AVCodecContext *avctx,
s->flags= avctx->flags; s->flags= avctx->flags;
s->flags2= avctx->flags2; s->flags2= avctx->flags2;
/* no supplementary picture */ /* end of stream, output whats still in the buffers */
if (buf_size == 0) { if (buf_size == 0) {
Picture *out; Picture *out;
int i, out_idx; int i, out_idx;
......
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