mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/options: Fix AVClassCategory of decoders with .receive_frame
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
21ca221068
commit
1c3c29d07d
@ -68,7 +68,7 @@ static const AVClass *codec_child_class_iterate(void **iter)
|
||||
static AVClassCategory get_category(void *ptr)
|
||||
{
|
||||
AVCodecContext* avctx = ptr;
|
||||
if (avctx->codec && ffcodec(avctx->codec)->decode)
|
||||
if (avctx->codec && av_codec_is_decoder(avctx->codec))
|
||||
return AV_CLASS_CATEGORY_DECODER;
|
||||
else
|
||||
return AV_CLASS_CATEGORY_ENCODER;
|
||||
|
Loading…
Reference in New Issue
Block a user