Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Soft Works <softworkz@hotmail.com>
To: "Xiang, Haihao" <haihao.xiang@intel.com>,
	"ffmpeg-devel@ffmpeg.org" <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH 4/6] avcodec/hevcdec: make set_side_data() accessible
Date: Tue, 31 May 2022 16:03:09 +0000
Message-ID: <DM8P223MB0365D3C0A7CEDEA72C6C33A0BADC9@DM8P223MB0365.NAMP223.PROD.OUTLOOK.COM> (raw)
In-Reply-To: <65fd87e90d9ad7df5fe4fc767fc2ac2dec38defd.camel@intel.com>



> -----Original Message-----
> From: Xiang, Haihao <haihao.xiang@intel.com>
> Sent: Tuesday, May 31, 2022 11:38 AM
> To: ffmpeg-devel@ffmpeg.org
> Cc: softworkz@hotmail.com
> Subject: Re: [FFmpeg-devel] [PATCH 4/6] avcodec/hevcdec: make
> set_side_data() accessible
> 
> On Thu, 2022-05-26 at 08:08 +0000, softworkz wrote:
> > From: softworkz <softworkz@hotmail.com>
> >
> > Signed-off-by: softworkz <softworkz@hotmail.com>
> > ---
> >  libavcodec/hevcdec.c | 117 +++++++++++++++++++++------------------
> ----
> >  libavcodec/hevcdec.h |   2 +
> >  2 files changed, 60 insertions(+), 59 deletions(-)
> >
> > diff --git a/libavcodec/hevcdec.c b/libavcodec/hevcdec.c
> > index f782ea6394..ff22081b46 100644
> > --- a/libavcodec/hevcdec.c
> > +++ b/libavcodec/hevcdec.c
> > @@ -2726,23 +2726,22 @@ error:
> >      return res;
> >  }
> >
> > -static int set_side_data(HEVCContext *s)
> > +int ff_set_side_data(AVCodecContext *logctx, HEVCSEI *sei,
> HEVCContext *s,
> > AVFrame *out)
> >  {
> > -    AVFrame *out = s->ref->frame;
> > -    int ret;
> > +    int ret = 0;
> >
> > -    if (s->sei.frame_packing.present &&
> > -        s->sei.frame_packing.arrangement_type >= 3 &&
> > -        s->sei.frame_packing.arrangement_type <= 5 &&
> > -        s->sei.frame_packing.content_interpretation_type > 0 &&
> > -        s->sei.frame_packing.content_interpretation_type < 3) {
> > +    if (sei->frame_packing.present &&
> > +        sei->frame_packing.arrangement_type >= 3 &&
> > +        sei->frame_packing.arrangement_type <= 5 &&
> > +        sei->frame_packing.content_interpretation_type > 0 &&
> > +        sei->frame_packing.content_interpretation_type < 3) {
> >          AVStereo3D *stereo = av_stereo3d_create_side_data(out);
> >          if (!stereo)
> >              return AVERROR(ENOMEM);
> >
> > -        switch (s->sei.frame_packing.arrangement_type) {
> > +        switch (sei->frame_packing.arrangement_type) {
> >          case 3:
> > -            if (s->sei.frame_packing.quincunx_subsampling)
> > +            if (sei->frame_packing.quincunx_subsampling)
> >                  stereo->type = AV_STEREO3D_SIDEBYSIDE_QUINCUNX;
> >              else
> >                  stereo->type = AV_STEREO3D_SIDEBYSIDE;
> > @@ -2755,21 +2754,21 @@ static int set_side_data(HEVCContext *s)
> >              break;
> >          }
> >
> > -        if (s->sei.frame_packing.content_interpretation_type == 2)
> > +        if (sei->frame_packing.content_interpretation_type == 2)
> >              stereo->flags = AV_STEREO3D_FLAG_INVERT;
> >
> > -        if (s->sei.frame_packing.arrangement_type == 5) {
> > -            if (s->sei.frame_packing.current_frame_is_frame0_flag)
> > +        if (sei->frame_packing.arrangement_type == 5) {
> > +            if (sei->frame_packing.current_frame_is_frame0_flag)
> >                  stereo->view = AV_STEREO3D_VIEW_LEFT;
> >              else
> >                  stereo->view = AV_STEREO3D_VIEW_RIGHT;
> >          }
> >      }
> >
> > -    if (s->sei.display_orientation.present &&
> > -        (s->sei.display_orientation.anticlockwise_rotation ||
> > -         s->sei.display_orientation.hflip || s-
> > >sei.display_orientation.vflip)) {
> > -        double angle = s-
> >sei.display_orientation.anticlockwise_rotation *
> > 360 / (double) (1 << 16);
> > +    if (sei->display_orientation.present &&
> > +        (sei->display_orientation.anticlockwise_rotation ||
> > +         sei->display_orientation.hflip || sei-
> >display_orientation.vflip)) {
> > +        double angle = sei-
> >display_orientation.anticlockwise_rotation * 360
> > / (double) (1 << 16);
> >          AVFrameSideData *rotation = av_frame_new_side_data(out,
> >
> AV_FRAME_DATA_DISP
> > LAYMATRIX,
> >
> sizeof(int32_t) *
> > 9);
> > @@ -2788,17 +2787,17 @@ static int set_side_data(HEVCContext *s)
> >                         * (1 - 2 * !!s-
> >sei.display_orientation.vflip);
> >          av_display_rotation_set((int32_t *)rotation->data, angle);
> >          av_display_matrix_flip((int32_t *)rotation->data,
> > -                               s->sei.display_orientation.hflip,
> > -                               s->sei.display_orientation.vflip);
> > +                               sei->display_orientation.hflip,
> > +                               sei->display_orientation.vflip);
> >      }
> >
> >      // Decrement the mastering display flag when IRAP frame has
> > no_rasl_output_flag=1
> >      // so the side data persists for the entire coded video
> sequence.
> > -    if (s->sei.mastering_display.present > 0 &&
> > +    if (s && sei->mastering_display.present > 0 &&
> 
> So sei must be non-NULL but s may be NULL in the new function, right
> ? 

Right.

> The
> caller should ensure s is non-NULL for the original function. It
> would be better
> to have some comment if s may be NULL now.

Ok, I will add that comment.

In a future update, I would like to further extend this to allow
parsing of other SEI which currently still requires a non-null
HEVCContext (e.g. DOVI parsing), but I figured that this would 
go too far for doing this as part of this patchset and I'm not 
sure about the best way to do that, means either:

- Mocking an HEVCContext
  or
- Changing the individual functions to not require an HEVCContext

So, for now, I'll add the comment.


> > -static int set_side_data(HEVCContext *s)
> > +int ff_set_side_data(AVCodecContext *logctx, HEVCSEI *sei,
> HEVCContext *s,
> 
> How about to use ff_hevc as prefix ? This function is used for hevc
> only

Yes makes sense, will change.


Thanks for reviewing,
softworkz

_______________________________________________
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:[~2022-05-31 16:03 UTC|newest]

Thread overview: 65+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-26  8:08 [FFmpeg-devel] [PATCH 0/6] Implement SEI parsing for QSV decoders ffmpegagent
2022-05-26  8:08 ` [FFmpeg-devel] [PATCH 1/6] avutil/frame: Add av_frame_copy_side_data() and av_frame_remove_all_side_data() softworkz
2022-05-27 14:35   ` Soft Works
2022-05-26  8:08 ` [FFmpeg-devel] [PATCH 2/6] avcodec/vpp_qsv: Copy side data from input to output frame softworkz
2022-05-31  9:19   ` Xiang, Haihao
2022-05-26  8:08 ` [FFmpeg-devel] [PATCH 3/6] avcodec/mpeg12dec: make mpeg_decode_user_data() accessible softworkz
2022-05-31  9:24   ` Xiang, Haihao
2022-05-26  8:08 ` [FFmpeg-devel] [PATCH 4/6] avcodec/hevcdec: make set_side_data() accessible softworkz
2022-05-31  9:38   ` Xiang, Haihao
2022-05-31 16:03     ` Soft Works [this message]
2022-05-31  9:40   ` Xiang, Haihao
2022-05-26  8:08 ` [FFmpeg-devel] [PATCH 5/6] avcodec/h264dec: make h264_export_frame_props() accessible softworkz
2022-05-26  8:08 ` [FFmpeg-devel] [PATCH 6/6] avcodec/qsvdec: Implement SEI parsing for QSV decoders softworkz
2022-06-01  5:15   ` Xiang, Haihao
2022-06-01  8:51     ` Soft Works
2022-06-01  9:06 ` [FFmpeg-devel] [PATCH v2 0/6] " ffmpegagent
2022-06-01  9:06   ` [FFmpeg-devel] [PATCH v2 1/6] avutil/frame: Add av_frame_copy_side_data() and av_frame_remove_all_side_data() softworkz
2022-06-01  9:06   ` [FFmpeg-devel] [PATCH v2 2/6] avcodec/vpp_qsv: Copy side data from input to output frame softworkz
2022-06-01  9:06   ` [FFmpeg-devel] [PATCH v2 3/6] avcodec/mpeg12dec: make mpeg_decode_user_data() accessible softworkz
2022-06-01  9:06   ` [FFmpeg-devel] [PATCH v2 4/6] avcodec/hevcdec: make set_side_data() accessible softworkz
2022-06-01  9:06   ` [FFmpeg-devel] [PATCH v2 5/6] avcodec/h264dec: make h264_export_frame_props() accessible softworkz
2022-06-01  9:06   ` [FFmpeg-devel] [PATCH v2 6/6] avcodec/qsvdec: Implement SEI parsing for QSV decoders softworkz
2022-06-01 17:20     ` Xiang, Haihao
2022-06-01 17:50       ` Soft Works
2022-06-01 18:01   ` [FFmpeg-devel] [PATCH v3 0/6] " ffmpegagent
2022-06-01 18:01     ` [FFmpeg-devel] [PATCH v3 1/6] avutil/frame: Add av_frame_copy_side_data() and av_frame_remove_all_side_data() softworkz
2022-06-24  7:01       ` Xiang, Haihao
2022-06-26 23:35         ` Soft Works
2022-06-01 18:01     ` [FFmpeg-devel] [PATCH v3 2/6] avcodec/vpp_qsv: Copy side data from input to output frame softworkz
2022-06-01 18:01     ` [FFmpeg-devel] [PATCH v3 3/6] avcodec/mpeg12dec: make mpeg_decode_user_data() accessible softworkz
2022-06-01 18:01     ` [FFmpeg-devel] [PATCH v3 4/6] avcodec/hevcdec: make set_side_data() accessible softworkz
2022-06-01 18:01     ` [FFmpeg-devel] [PATCH v3 5/6] avcodec/h264dec: make h264_export_frame_props() accessible softworkz
2022-06-01 18:01     ` [FFmpeg-devel] [PATCH v3 6/6] avcodec/qsvdec: Implement SEI parsing for QSV decoders softworkz
2022-06-26 23:41     ` [FFmpeg-devel] [PATCH v4 0/6] " ffmpegagent
2022-06-26 23:41       ` [FFmpeg-devel] [PATCH v4 1/6] avutil/frame: Add av_frame_copy_side_data() and av_frame_remove_all_side_data() softworkz
2022-06-26 23:41       ` [FFmpeg-devel] [PATCH v4 2/6] avcodec/vpp_qsv: Copy side data from input to output frame softworkz
2022-06-26 23:41       ` [FFmpeg-devel] [PATCH v4 3/6] avcodec/mpeg12dec: make mpeg_decode_user_data() accessible softworkz
2022-06-26 23:41       ` [FFmpeg-devel] [PATCH v4 4/6] avcodec/hevcdec: make set_side_data() accessible softworkz
2022-06-26 23:41       ` [FFmpeg-devel] [PATCH v4 5/6] avcodec/h264dec: make h264_export_frame_props() accessible softworkz
2022-06-26 23:41       ` [FFmpeg-devel] [PATCH v4 6/6] avcodec/qsvdec: Implement SEI parsing for QSV decoders softworkz
2022-06-28  4:16         ` Andreas Rheinhardt
2022-06-28  5:25           ` Soft Works
2022-06-27  4:18       ` [FFmpeg-devel] [PATCH v4 0/6] " Xiang, Haihao
2022-07-01 20:48       ` [FFmpeg-devel] [PATCH v5 " ffmpegagent
2022-07-01 20:48         ` [FFmpeg-devel] [PATCH v5 1/6] avutil/frame: Add av_frame_copy_side_data() and av_frame_remove_all_side_data() softworkz
2022-07-01 20:48         ` [FFmpeg-devel] [PATCH v5 2/6] avcodec/vpp_qsv: Copy side data from input to output frame softworkz
2022-07-01 20:48         ` [FFmpeg-devel] [PATCH v5 3/6] avcodec/mpeg12dec: make mpeg_decode_user_data() accessible softworkz
2022-07-01 20:48         ` [FFmpeg-devel] [PATCH v5 4/6] avcodec/hevcdec: make set_side_data() accessible softworkz
2022-07-01 20:48         ` [FFmpeg-devel] [PATCH v5 5/6] avcodec/h264dec: make h264_export_frame_props() accessible softworkz
2022-07-01 20:48         ` [FFmpeg-devel] [PATCH v5 6/6] avcodec/qsvdec: Implement SEI parsing for QSV decoders softworkz
2022-07-19  6:55         ` [FFmpeg-devel] [PATCH v5 0/6] " Xiang, Haihao
2022-07-21 21:06           ` Soft Works
2022-07-21 21:56           ` Andreas Rheinhardt
2022-10-21  7:42             ` Soft Works
2022-10-25  4:03         ` [FFmpeg-devel] [PATCH v6 0/3] " ffmpegagent
2022-10-25  4:03           ` [FFmpeg-devel] [PATCH v6 1/3] avcodec/hevcdec: factor out ff_hevc_set_set_to_frame softworkz
2022-10-25  4:03           ` [FFmpeg-devel] [PATCH v6 2/3] avcodec/h264dec: make h264_export_frame_props() accessible softworkz
2022-10-25  4:03           ` [FFmpeg-devel] [PATCH v6 3/3] avcodec/qsvdec: Implement SEI parsing for QSV decoders softworkz
2022-11-21  2:44             ` Xiang, Haihao
2022-11-21 15:58               ` Soft Works
2022-11-22  5:41                 ` Xiang, Haihao
2022-06-01 19:15 ` [FFmpeg-devel] [PATCH 0/6] " Kieran Kunhya
2022-06-01 19:46   ` Soft Works
2022-06-01 20:25     ` Kieran Kunhya
2022-06-01 21:24       ` Soft Works

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=DM8P223MB0365D3C0A7CEDEA72C6C33A0BADC9@DM8P223MB0365.NAMP223.PROD.OUTLOOK.COM \
    --to=softworkz@hotmail.com \
    --cc=ffmpeg-devel@ffmpeg.org \
    --cc=haihao.xiang@intel.com \
    /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