diff mbox series

[FFmpeg-devel] avcodec/libaomenc: fix compile after 5bab794

Message ID 20220825193025.1942263-1-jzern@google.com
State New
Headers show
Series [FFmpeg-devel] avcodec/libaomenc: fix compile after 5bab794 | expand

Commit Message

James Zern Aug. 25, 2022, 7:30 p.m. UTC
encoder is a struct, not a pointer; use '.' to access iface.

Signed-off-by: James Zern <jzern@google.com>
---
 libavcodec/libaomenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

James Zern Aug. 25, 2022, 7:32 p.m. UTC | #1
On Thu, Aug 25, 2022 at 12:30 PM James Zern <jzern@google.com> wrote:
>
> encoder is a struct, not a pointer; use '.' to access iface.
>
> Signed-off-by: James Zern <jzern@google.com>
> ---
>  libavcodec/libaomenc.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

Already fixed.

> 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];
> --
> 2.37.2.672.g94769d06f0-goog
>
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];