Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvements for Rockchip ffmpeg #4

Open
wants to merge 9 commits into
base: rockchip
Choose a base branch
from
4 changes: 0 additions & 4 deletions libavcodec/rkmppdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -546,10 +546,6 @@ static int rkmpp_receive_frame(AVCodecContext *avctx, AVFrame *frame)
return ret;
}
}

// make sure we keep decoder full
if (freeslots > 1 && decoder->first_frame)
return AVERROR(EAGAIN);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why would this be unnecessary ?

}

return rkmpp_retrieve_frame(avctx, frame);
Expand Down