[FFmpeg-cvslog] avcodec/libaomenc: fix the check for presence of encoder interface

James Almer git at videolan.org
Thu Aug 25 22:27:15 EEST 2022


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Thu Aug 25 16:25:55 2022 -0300| [adc38738cb47b4dfff50506514f33940273ba410] | committer: James Almer

avcodec/libaomenc: fix the check for presence of encoder interface

ctx->encoder is not a pointer.

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=adc38738cb47b4dfff50506514f33940273ba410
---

 libavcodec/libaomenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/libaomenc.c b/libavcodec/libaomenc.c
index a82b933c18..1e89b7e3a8 100644
--- a/libavcodec/libaomenc.c
+++ b/libavcodec/libaomenc.c
@@ -400,7 +400,7 @@ static av_cold int aom_free(AVCodecContext *avctx)
 #if defined(AOM_CTRL_AV1E_GET_NUM_OPERATING_POINTS) && \
     defined(AOM_CTRL_AV1E_GET_SEQ_LEVEL_IDX) && \
     defined(AOM_CTRL_AV1E_GET_TARGET_SEQ_LEVEL_IDX)
-    if (ctx->encoder->iface && !(avctx->flags & AV_CODEC_FLAG_PASS1)) {
+    if (ctx->encoder.iface && !(avctx->flags & AV_CODEC_FLAG_PASS1)) {
         int num_operating_points;
         int levels[32];
         int target_levels[32];



More information about the ffmpeg-cvslog mailing list