Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Lynne via ffmpeg-devel <ffmpeg-devel@ffmpeg.org>
To: ffmpeg-devel@ffmpeg.org
Cc: Lynne <dev@lynne.ee>
Subject: Re: [FFmpeg-devel] [PATCH v12 15/15] avcodec/hw_base_encode: add avctx pointer for FFHWBaseEncodeContext
Date: Tue, 28 May 2024 18:07:38 +0200
Message-ID: <3c6857f5-5c29-440c-a13d-8130296f14be@lynne.ee> (raw)
In-Reply-To: <20240528154807.1151-15-tong1.wu@intel.com>


[-- Attachment #1.1.1.1: Type: text/plain, Size: 9399 bytes --]

On 28/05/2024 17:48, tong1.wu-at-intel.com@ffmpeg.org wrote:
> From: Tong Wu <tong1.wu@intel.com>
> 
> An avctx pointer is added to FFHWBaseEncodeContext. This is to make
> FFHWBaseEncodeContext a standalone component for ff_hw_base_* functions.
> This patch also removes some unnecessary AVCodecContext arguments.
> 
> Signed-off-by: Tong Wu <tong1.wu@intel.com>
> ---
>   libavcodec/d3d12va_encode.c |  6 +++---
>   libavcodec/hw_base_encode.c | 31 +++++++++++++------------------
>   libavcodec/hw_base_encode.h |  8 +++++---
>   libavcodec/vaapi_encode.c   |  6 +++---
>   4 files changed, 24 insertions(+), 27 deletions(-)
> 
> diff --git a/libavcodec/d3d12va_encode.c b/libavcodec/d3d12va_encode.c
> index 0fbf8eb07c..6d3a53c6ca 100644
> --- a/libavcodec/d3d12va_encode.c
> +++ b/libavcodec/d3d12va_encode.c
> @@ -1351,7 +1351,7 @@ static int d3d12va_encode_create_recon_frames(AVCodecContext *avctx)
>       enum AVPixelFormat recon_format;
>       int err;
>   
> -    err = ff_hw_base_get_recon_format(avctx, NULL, &recon_format);
> +    err = ff_hw_base_get_recon_format(base_ctx, NULL, &recon_format);
>       if (err < 0)
>           return err;
>   
> @@ -1398,7 +1398,7 @@ int ff_d3d12va_encode_init(AVCodecContext *avctx)
>       int err;
>       HRESULT hr;
>   
> -    err = ff_hw_base_encode_init(avctx);
> +    err = ff_hw_base_encode_init(avctx, base_ctx);
>       if (err < 0)
>           goto fail;
>   
> @@ -1552,7 +1552,7 @@ int ff_d3d12va_encode_close(AVCodecContext *avctx)
>       D3D12_OBJECT_RELEASE(ctx->video_device3);
>       D3D12_OBJECT_RELEASE(ctx->device3);
>   
> -    ff_hw_base_encode_close(avctx);
> +    ff_hw_base_encode_close(base_ctx);
>   
>       return 0;
>   }
> diff --git a/libavcodec/hw_base_encode.c b/libavcodec/hw_base_encode.c
> index 92f69bb78c..88efdf672c 100644
> --- a/libavcodec/hw_base_encode.c
> +++ b/libavcodec/hw_base_encode.c
> @@ -94,14 +94,13 @@ static void hw_base_encode_remove_refs(FFHWBaseEncodePicture *pic, int level)
>       pic->ref_removed[level] = 1;
>   }
>   
> -static void hw_base_encode_set_b_pictures(AVCodecContext *avctx,
> +static void hw_base_encode_set_b_pictures(FFHWBaseEncodeContext *ctx,
>                                             FFHWBaseEncodePicture *start,
>                                             FFHWBaseEncodePicture *end,
>                                             FFHWBaseEncodePicture *prev,
>                                             int current_depth,
>                                             FFHWBaseEncodePicture **last)
>   {
> -    FFHWBaseEncodeContext *ctx = avctx->priv_data;
>       FFHWBaseEncodePicture *pic, *next, *ref;
>       int i, len;
>   
> @@ -148,20 +147,19 @@ static void hw_base_encode_set_b_pictures(AVCodecContext *avctx,
>               hw_base_encode_add_ref(pic, ref, 0, 1, 0);
>   
>           if (i > 1)
> -            hw_base_encode_set_b_pictures(avctx, start, pic, pic,
> +            hw_base_encode_set_b_pictures(ctx, start, pic, pic,
>                                             current_depth + 1, &next);
>           else
>               next = pic;
>   
> -        hw_base_encode_set_b_pictures(avctx, pic, end, next,
> +        hw_base_encode_set_b_pictures(ctx, pic, end, next,
>                                         current_depth + 1, last);
>       }
>   }
>   
> -static void hw_base_encode_add_next_prev(AVCodecContext *avctx,
> +static void hw_base_encode_add_next_prev(FFHWBaseEncodeContext *ctx,
>                                            FFHWBaseEncodePicture *pic)
>   {
> -    FFHWBaseEncodeContext *ctx = avctx->priv_data;
>       int i;
>   
>       if (!pic)
> @@ -333,12 +331,12 @@ static int hw_base_encode_pick_next(AVCodecContext *avctx,
>       }
>   
>       if (b_counter > 0) {
> -        hw_base_encode_set_b_pictures(avctx, start, pic, pic, 1,
> +        hw_base_encode_set_b_pictures(ctx, start, pic, pic, 1,
>                                         &prev);
>       } else {
>           prev = pic;
>       }
> -    hw_base_encode_add_next_prev(avctx, prev);
> +    hw_base_encode_add_next_prev(ctx, prev);
>   
>       return 0;
>   }
> @@ -687,9 +685,9 @@ int ff_hw_base_init_gop_structure(AVCodecContext *avctx, uint32_t ref_l0, uint32
>       return 0;
>   }
>   
> -int ff_hw_base_get_recon_format(AVCodecContext *avctx, const void *hwconfig, enum AVPixelFormat *fmt)
> +int ff_hw_base_get_recon_format(FFHWBaseEncodeContext *ctx, const void *hwconfig,
> +                                enum AVPixelFormat *fmt)
>   {
> -    FFHWBaseEncodeContext *ctx = avctx->priv_data;
>       AVHWFramesConstraints *constraints = NULL;
>       enum AVPixelFormat recon_format;
>       int err, i;
> @@ -722,14 +720,14 @@ int ff_hw_base_get_recon_format(AVCodecContext *avctx, const void *hwconfig, enu
>           // No idea what to use; copy input format.
>           recon_format = ctx->input_frames->sw_format;
>       }
> -    av_log(avctx, AV_LOG_DEBUG, "Using %s as format of "
> +    av_log(ctx->avctx, AV_LOG_DEBUG, "Using %s as format of "
>              "reconstructed frames.\n", av_get_pix_fmt_name(recon_format));
>   
>       if (ctx->surface_width  < constraints->min_width  ||
>           ctx->surface_height < constraints->min_height ||
>           ctx->surface_width  > constraints->max_width ||
>           ctx->surface_height > constraints->max_height) {
> -        av_log(avctx, AV_LOG_ERROR, "Hardware does not support encoding at "
> +        av_log(ctx->avctx, AV_LOG_ERROR, "Hardware does not support encoding at "
>                  "size %dx%d (constraints: width %d-%d height %d-%d).\n",
>                  ctx->surface_width, ctx->surface_height,
>                  constraints->min_width,  constraints->max_width,
> @@ -756,10 +754,9 @@ int ff_hw_base_encode_free(FFHWBaseEncodePicture *pic)
>       return 0;
>   }
>   
> -int ff_hw_base_encode_init(AVCodecContext *avctx)
> +int ff_hw_base_encode_init(AVCodecContext *avctx, FFHWBaseEncodeContext *ctx)
>   {
> -    FFHWBaseEncodeContext *ctx = avctx->priv_data;
> -
> +    ctx->avctx = avctx;
>       ctx->frame = av_frame_alloc();
>       if (!ctx->frame)
>           return AVERROR(ENOMEM);
> @@ -789,10 +786,8 @@ int ff_hw_base_encode_init(AVCodecContext *avctx)
>       return 0;
>   }
>   
> -int ff_hw_base_encode_close(AVCodecContext *avctx)
> +int ff_hw_base_encode_close(FFHWBaseEncodeContext *ctx)
>   {
> -    FFHWBaseEncodeContext *ctx = avctx->priv_data;
> -
>       av_fifo_freep2(&ctx->encode_fifo);
>   
>       av_frame_free(&ctx->frame);
> diff --git a/libavcodec/hw_base_encode.h b/libavcodec/hw_base_encode.h
> index 15ef3d7ac6..13c1fc0f69 100644
> --- a/libavcodec/hw_base_encode.h
> +++ b/libavcodec/hw_base_encode.h
> @@ -116,6 +116,7 @@ typedef struct FFHWEncodePictureOperation {
>   
>   typedef struct FFHWBaseEncodeContext {
>       const AVClass *class;
> +    AVCodecContext *avctx;
>   
>       // Hardware-specific hooks.
>       const struct FFHWEncodePictureOperation *op;
> @@ -222,13 +223,14 @@ int ff_hw_base_encode_receive_packet(AVCodecContext *avctx, AVPacket *pkt);
>   int ff_hw_base_init_gop_structure(AVCodecContext *avctx, uint32_t ref_l0, uint32_t ref_l1,
>                                     int flags, int prediction_pre_only);
>   
> -int ff_hw_base_get_recon_format(AVCodecContext *avctx, const void *hwconfig, enum AVPixelFormat *fmt);
> +int ff_hw_base_get_recon_format(FFHWBaseEncodeContext *ctx, const void *hwconfig,
> +                                enum AVPixelFormat *fmt);
>   
>   int ff_hw_base_encode_free(FFHWBaseEncodePicture *pic);
>   
> -int ff_hw_base_encode_init(AVCodecContext *avctx);
> +int ff_hw_base_encode_init(AVCodecContext *avctx, FFHWBaseEncodeContext *ctx);
>   
> -int ff_hw_base_encode_close(AVCodecContext *avctx);
> +int ff_hw_base_encode_close(FFHWBaseEncodeContext *ctx);
>   
>   #define HW_BASE_ENCODE_COMMON_OPTIONS \
>       { "idr_interval", \
> diff --git a/libavcodec/vaapi_encode.c b/libavcodec/vaapi_encode.c
> index b35a23e852..0693e77548 100644
> --- a/libavcodec/vaapi_encode.c
> +++ b/libavcodec/vaapi_encode.c
> @@ -2059,7 +2059,7 @@ static av_cold int vaapi_encode_create_recon_frames(AVCodecContext *avctx)
>       }
>       hwconfig->config_id = ctx->va_config;
>   
> -    err = ff_hw_base_get_recon_format(avctx, (const void*)hwconfig, &recon_format);
> +    err = ff_hw_base_get_recon_format(base_ctx, (const void*)hwconfig, &recon_format);
>       if (err < 0)
>           goto fail;
>   
> @@ -2106,7 +2106,7 @@ av_cold int ff_vaapi_encode_init(AVCodecContext *avctx)
>       VAStatus vas;
>       int err;
>   
> -    err = ff_hw_base_encode_init(avctx);
> +    err = ff_hw_base_encode_init(avctx, base_ctx);
>       if (err < 0)
>           goto fail;
>   
> @@ -2313,7 +2313,7 @@ av_cold int ff_vaapi_encode_close(AVCodecContext *avctx)
>       av_freep(&ctx->codec_sequence_params);
>       av_freep(&ctx->codec_picture_params);
>   
> -    ff_hw_base_encode_close(avctx);
> +    ff_hw_base_encode_close(base_ctx);
>   
>       return 0;
>   }

Err, you missed ff_hw_base_encode_set_output_property, 
ff_hw_base_encode_receive_packet and ff_hw_base_init_gop_structure?

Rest looks better.

[-- Attachment #1.1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 637 bytes --]

[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

[-- Attachment #2: Type: text/plain, Size: 251 bytes --]

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

  reply	other threads:[~2024-05-28 16:07 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-28 15:47 [FFmpeg-devel] [PATCH v12 01/15] avcodec/vaapi_encode: introduce a base layer for vaapi encode tong1.wu-at-intel.com
2024-05-28 15:47 ` [FFmpeg-devel] [PATCH v12 02/15] avcodec/hw_base_encode: add FF_HW_ prefix for two enums tong1.wu-at-intel.com
2024-05-28 15:47 ` [FFmpeg-devel] [PATCH v12 03/15] avcodec/vaapi_encode: add async_depth to common options tong1.wu-at-intel.com
2024-05-28 15:47 ` [FFmpeg-devel] [PATCH v12 04/15] avcodec/vaapi_encode: add picture type name to base tong1.wu-at-intel.com
2024-05-28 15:47 ` [FFmpeg-devel] [PATCH v12 05/15] avcodec/vaapi_encode: move pic->input_surface initialization to encode_alloc tong1.wu-at-intel.com
2024-05-28 15:47 ` [FFmpeg-devel] [PATCH v12 06/15] avcodec/vaapi_encode: move the dpb logic from VAAPI to base layer tong1.wu-at-intel.com
2024-05-28 15:47 ` [FFmpeg-devel] [PATCH v12 07/15] avcodec/vaapi_encode: extract the init and close function " tong1.wu-at-intel.com
2024-05-28 15:47 ` [FFmpeg-devel] [PATCH v12 08/15] avcodec/vaapi_encode: extract gop configuration and two options " tong1.wu-at-intel.com
2024-05-28 15:48 ` [FFmpeg-devel] [PATCH v12 09/15] avcodec/vaapi_encode: extract set_output_property " tong1.wu-at-intel.com
2024-05-28 15:48 ` [FFmpeg-devel] [PATCH v12 10/15] avcodec/vaapi_encode: extract a get_recon_format function " tong1.wu-at-intel.com
2024-05-28 15:48 ` [FFmpeg-devel] [PATCH v12 11/15] avcodec/vaapi_encode: extract a free funtion " tong1.wu-at-intel.com
2024-05-28 15:48 ` [FFmpeg-devel] [PATCH v12 12/15] avutil/hwcontext_d3d12va: add Flags for resource creation tong1.wu-at-intel.com
2024-05-28 15:48 ` [FFmpeg-devel] [PATCH v12 13/15] avcodec: add D3D12VA hardware HEVC encoder tong1.wu-at-intel.com
2024-05-28 15:48 ` [FFmpeg-devel] [PATCH v12 14/15] Changelog: add D3D12VA HEVC encoder changelog tong1.wu-at-intel.com
2024-05-28 15:48 ` [FFmpeg-devel] [PATCH v12 15/15] avcodec/hw_base_encode: add avctx pointer for FFHWBaseEncodeContext tong1.wu-at-intel.com
2024-05-28 16:07   ` Lynne via ffmpeg-devel [this message]
2024-05-28 22:53     ` Wu, Tong1
2024-05-29  0:02       ` Lynne via ffmpeg-devel
2024-06-03  9:23         ` Wu, Tong1
2024-07-02 19:08           ` Sean McGovern

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3c6857f5-5c29-440c-a13d-8130296f14be@lynne.ee \
    --to=ffmpeg-devel@ffmpeg.org \
    --cc=dev@lynne.ee \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git