1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

avformat/utils: Remove use of caps_internal as it is not public API

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer
2016-04-21 13:35:22 +02:00
parent 0de99ab06f
commit a0b92788a8

View File

@@ -2879,7 +2879,7 @@ static int try_decode_frame(AVFormatContext *s, AVStream *st, AVPacket *avpkt,
goto fail; goto fail;
} }
if (avctx->codec->caps_internal & FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM) { if (avpriv_codec_get_cap_skip_frame_fill_param(avctx->codec)) {
do_skip_frame = 1; do_skip_frame = 1;
skip_frame = avctx->skip_frame; skip_frame = avctx->skip_frame;
avctx->skip_frame = AVDISCARD_ALL; avctx->skip_frame = AVDISCARD_ALL;