diff mbox series

[FFmpeg-devel] avcodec/libaomenc: Fix compilation

Message ID DB6PR0101MB221472C2FF31B8A832D9C70C8F729@DB6PR0101MB2214.eurprd01.prod.exchangelabs.com
State Superseded
Headers show
Series [FFmpeg-devel] avcodec/libaomenc: Fix compilation | expand

Commit Message

Andreas Rheinhardt Aug. 25, 2022, 7:35 p.m. UTC
The struct aom_codec_ctx for the encoder is part of the
AOMEncoderContext, it is not separately allocated.
Therefore 5bab794e4aaed55d3146723974ffb5ad792617ab broke compilation.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavcodec/libaomenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Andreas Rheinhardt Aug. 25, 2022, 7:38 p.m. UTC | #1
Andreas Rheinhardt:
> The struct aom_codec_ctx for the encoder is part of the
> AOMEncoderContext, it is not separately allocated.
> Therefore 5bab794e4aaed55d3146723974ffb5ad792617ab broke compilation.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
>  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];

Seems like I am too late to the party and this has already been fixed.
(I got a new version of libaom because I presumed that
5bab794e4aaed55d3146723974ffb5ad792617ab would cause a crash in case
init fails before ctx->encoder can be set, but before I could test this
it turned out that it doesn't even compile.)

- Andreas
diff mbox series

Patch

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];