summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-04-13 15:29:21 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-04-13 17:59:34 +0200
commit3a920372a11607a4ea6e5a2c29b0b5dbf08f275c (patch)
treeced17cb1fddaf972bb7bf964b53127c667dd77e0
parentf67403edb379ea906cdcaf296977abc894ce2916 (diff)
avcodec/encode: Fix check for encoders impl. encode-simple API
FFCodec.cb is a union. Reviewed-by: Anton Khirnov <anton@khirnov.net> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavcodec/encode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/encode.c b/libavcodec/encode.c
index 6ae47b736c..e7ae2cd4c1 100644
--- a/libavcodec/encode.c
+++ b/libavcodec/encode.c
@@ -589,7 +589,7 @@ int ff_encode_preinit(AVCodecContext *avctx)
if (avctx->codec_descriptor->props & AV_CODEC_PROP_INTRA_ONLY)
avctx->internal->intra_only_flag = AV_PKT_FLAG_KEY;
- if (ffcodec(avctx->codec)->cb.encode) {
+ if (ffcodec(avctx->codec)->cb_type == FF_CODEC_CB_TYPE_ENCODE) {
avci->in_frame = av_frame_alloc();
if (!avci->in_frame)
return AVERROR(ENOMEM);