Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 638690
Collapse All | Expand All

(-)a/libavcodec/decode.c (-1 / +5 lines)
Lines 726-731 static int compat_decode(AVCodecContext *avctx, AVFrame *frame, Link Here
726
726
727
    av_assert0(avci->compat_decode_consumed == 0);
727
    av_assert0(avci->compat_decode_consumed == 0);
728
728
729
    if (avci->draining_done && pkt && pkt->size != 0) {
730
        av_log(avctx, AV_LOG_WARNING, "Got unexpected packet after EOF\n");
731
        avcodec_flush_buffers(avctx);
732
    }
733
729
    *got_frame = 0;
734
    *got_frame = 0;
730
    avci->compat_decode = 1;
735
    avci->compat_decode = 1;
731
736
732
- 

Return to bug 638690