From: Nuo Mi <nuomi2021@gmail.com> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: Re: [FFmpeg-devel] [PATCH 12/18] avcodec/vvcdec: inter, wait reference with a diffrent resolution Date: Mon, 20 May 2024 21:25:28 +0800 Message-ID: <CAFXK13d8+2HiuGFNer4P8T9s=mbBjYp_C8HhX3d=avV_P8Pj6w@mail.gmail.com> (raw) In-Reply-To: <936585d7-06cf-400f-a7a9-e5fa2239a8fd@betaapp.fastmail.com> On Sun, May 19, 2024 at 11:21 PM Jean-Baptiste Kempf <jb@videolan.org> wrote: > Careful about the typo on "different" on the title of the patch. > Changed locally. Thank you, jb > > On Sun, 19 May 2024, at 13:27, Nuo Mi wrote: > > For RPR, the current frame may reference a frame with a different > resolution. > > Therefore, we need to consider frame scaling when we wait for reference > pixels. > > --- > > libavcodec/vvc/dec.c | 5 +++++ > > libavcodec/vvc/dec.h | 17 +++++++++++++++++ > > libavcodec/vvc/refs.c | 39 +++++++++++++++++++++++++++++++++++++++ > > libavcodec/vvc/thread.c | 10 +++++++--- > > 4 files changed, 68 insertions(+), 3 deletions(-) > > > > diff --git a/libavcodec/vvc/dec.c b/libavcodec/vvc/dec.c > > index 3325133efb..584c7b219f 100644 > > --- a/libavcodec/vvc/dec.c > > +++ b/libavcodec/vvc/dec.c > > @@ -573,6 +573,11 @@ static int ref_frame(VVCFrame *dst, const VVCFrame > *src) > > > > dst->poc = src->poc; > > dst->ctb_count = src->ctb_count; > > + > > + dst->scaling_win = src->scaling_win; > > + dst->ref_width = src->ref_width; > > + dst->ref_height = src->ref_height; > > + > > dst->flags = src->flags; > > dst->sequence = src->sequence; > > > > diff --git a/libavcodec/vvc/dec.h b/libavcodec/vvc/dec.h > > index 6f14cc1860..1e0b76f283 100644 > > --- a/libavcodec/vvc/dec.h > > +++ b/libavcodec/vvc/dec.h > > @@ -46,6 +46,10 @@ typedef struct VVCRefPic { > > struct VVCFrame *ref; > > int poc; > > int is_lt; // is long term reference > > + > > + // for RPR > > + int is_scaled; ///< RprConstraintsActiveFlag > > + int scale[2]; ///< RefPicScale[] > > } VVCRefPic; > > > > typedef struct RefPicList { > > @@ -57,6 +61,13 @@ typedef struct RefPicListTab { > > RefPicList refPicList[2]; > > } RefPicListTab; > > > > +typedef struct VVCWindow { > > + int16_t left_offset; > > + int16_t right_offset; > > + int16_t top_offset; > > + int16_t bottom_offset; > > +} VVCWindow; > > + > > typedef struct VVCFrame { > > struct AVFrame *frame; > > > > @@ -71,6 +82,12 @@ typedef struct VVCFrame { > > > > int poc; > > > > + //for RPR > > + VVCWindow scaling_win; ///< > > pps_scaling_win_left_offset * SubWithC, pps_scaling_win_right_offset > > * SubWithC, > > + ///< > > pps_scaling_win_top_offset * SubHeigtC, pps_scaling_win_bottom_offset > > * SubHiehgtC > > + int ref_width; ///< > > CurrPicScalWinWidthL > > + int ref_height; ///< > > CurrPicScalWinHeightL > > + > > struct VVCFrame *collocated_ref; > > > > struct FrameProgress *progress; ///< RefStruct reference > > diff --git a/libavcodec/vvc/refs.c b/libavcodec/vvc/refs.c > > index 954db4a8c8..fb42963034 100644 > > --- a/libavcodec/vvc/refs.c > > +++ b/libavcodec/vvc/refs.c > > @@ -114,10 +114,12 @@ static FrameProgress *alloc_progress(void) > > > > static VVCFrame *alloc_frame(VVCContext *s, VVCFrameContext *fc) > > { > > + const VVCSPS *sps = fc->ps.sps; > > const VVCPPS *pps = fc->ps.pps; > > for (int i = 0; i < FF_ARRAY_ELEMS(fc->DPB); i++) { > > int ret; > > VVCFrame *frame = &fc->DPB[i]; > > + VVCWindow *win = &frame->scaling_win; > > if (frame->frame->buf[0]) > > continue; > > > > @@ -144,6 +146,13 @@ static VVCFrame *alloc_frame(VVCContext *s, > > VVCFrameContext *fc) > > for (int j = 0; j < frame->ctb_count; j++) > > frame->rpl_tab[j] = frame->rpl; > > > > + win->left_offset = pps->r->pps_scaling_win_left_offset << > > sps->hshift[CHROMA]; > > + win->right_offset = pps->r->pps_scaling_win_right_offset << > > sps->hshift[CHROMA]; > > + win->top_offset = pps->r->pps_scaling_win_top_offset << > > sps->vshift[CHROMA]; > > + win->bottom_offset = pps->r->pps_scaling_win_bottom_offset << > > sps->vshift[CHROMA]; > > + frame->ref_width = pps->r->pps_pic_width_in_luma_samples - > > win->left_offset - win->right_offset; > > + frame->ref_height = pps->r->pps_pic_height_in_luma_samples - > > win->bottom_offset - win->top_offset; > > + > > frame->progress = alloc_progress(); > > if (!frame->progress) > > goto fail; > > @@ -353,6 +362,24 @@ static VVCFrame *generate_missing_ref(VVCContext > > *s, VVCFrameContext *fc, int po > > return frame; > > } > > > > +#define CHECK_MAX(d) (frame->ref_##d * > > frame->sps->r->sps_pic_##d##_max_in_luma_samples >= ref->ref_##d * > > (frame->pps->r->pps_pic_##d##_in_luma_samples - max)) > > +#define CHECK_SAMPLES(d) (frame->pps->r->pps_pic_##d##_in_luma_samples > > == ref->pps->r->pps_pic_##d##_in_luma_samples) > > +static int check_candidate_ref(const VVCFrame *frame, const VVCRefPic > > *refp) > > +{ > > + const VVCFrame *ref = refp->ref; > > + > > + if (refp->is_scaled) { > > + const int max = FFMAX(8, frame->sps->min_cb_size_y); > > + return frame->ref_width * 2 >= ref->ref_width && > > + frame->ref_height * 2 >= ref->ref_height && > > + frame->ref_width <= ref->ref_width * 8 && > > + frame->ref_height <= ref->ref_height * 8 && > > + CHECK_MAX(width) && CHECK_MAX(height); > > + } > > + return CHECK_SAMPLES(width) && CHECK_SAMPLES(height); > > +} > > + > > +#define RPR_SCALE(f) (((ref->f << 14) + (fc->ref->f >> 1)) / > > fc->ref->f) > > /* add a reference with the given poc to the list and mark it as used > > in DPB */ > > static int add_candidate_ref(VVCContext *s, VVCFrameContext *fc, > > RefPicList *list, > > int poc, int ref_flag, uint8_t use_msb) > > @@ -372,6 +399,18 @@ static int add_candidate_ref(VVCContext *s, > > VVCFrameContext *fc, RefPicList *lis > > refp->poc = poc; > > refp->ref = ref; > > refp->is_lt = ref_flag & VVC_FRAME_FLAG_LONG_REF; > > + refp->is_scaled = ref->sps->r->sps_num_subpics_minus1 != > > fc->ref->sps->r->sps_num_subpics_minus1|| > > + memcmp(&ref->scaling_win, &fc->ref->scaling_win, > > sizeof(ref->scaling_win)) || > > + ref->pps->r->pps_pic_width_in_luma_samples != > > fc->ref->pps->r->pps_pic_width_in_luma_samples || > > + ref->pps->r->pps_pic_height_in_luma_samples != > > fc->ref->pps->r->pps_pic_height_in_luma_samples; > > + > > + if (!check_candidate_ref(fc->ref, refp)) > > + return AVERROR_INVALIDDATA; > > + > > + if (refp->is_scaled) { > > + refp->scale[0] = RPR_SCALE(ref_width); > > + refp->scale[1] = RPR_SCALE(ref_height); > > + } > > list->nb_refs++; > > > > mark_ref(ref, ref_flag); > > diff --git a/libavcodec/vvc/thread.c b/libavcodec/vvc/thread.c > > index 2654b40058..8777d380bf 100644 > > --- a/libavcodec/vvc/thread.c > > +++ b/libavcodec/vvc/thread.c > > @@ -293,10 +293,14 @@ static void schedule_inter(VVCContext *s, > > VVCFrameContext *fc, const SliceContex > > CTU *ctu = fc->tab.ctus + rs; > > for (int lx = 0; lx < 2; lx++) { > > for (int i = 0; i < sh->r->num_ref_idx_active[lx]; i++) { > > - const int y = ctu->max_y[lx][i]; > > - VVCFrame *ref = sc->rpl[lx].refs[i].ref; > > - if (ref && y >= 0) > > + int y = ctu->max_y[lx][i]; > > + VVCRefPic *refp = sc->rpl[lx].refs + i; > > + VVCFrame *ref = refp->ref; > > + if (ref && y >= 0) { > > + if (refp->is_scaled) > > + y = y * refp->scale[1] >> 14; > > add_progress_listener(ref, &t->listener[lx][i], t, > > s, VVC_PROGRESS_PIXEL, y + LUMA_EXTRA_AFTER); > > + } > > } > > } > > } > > -- > > 2.34.1 > > > > _______________________________________________ > > 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". > > -- > Jean-Baptiste Kempf - President > +33 672 704 734 > https://jbkempf.com/ > _______________________________________________ > 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". > _______________________________________________ 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".
next prev parent reply other threads:[~2024-05-20 13:25 UTC|newest] Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top [not found] <20240519132749.790832-1-nuomi2021@gmail.com> 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 02/18] avcodec/vvcdec: refact, unify {luma, chroma}_mc to mc Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 03/18] avcodec/vvcdec: refact, unify {luma, chroma}_mc_uni to mc_uni Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 04/18] avcodec/vvcdec: refact, unify {luma, chroma}_mc_bi to mc_bi Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 05/18] avcodec/vvcdec: misc, remove unused EMULATED_EDGE_{LUMA, CHROMA}, EMULATED_EDGE_DMVR_{LUAM, CHROMA} Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 06/18] avcodec/vvcdec: refact, unify pred_regular_{luma, chroma} to pred_regular Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 07/18] avcodec/vvcdec: refact out VVCRefPic from RefPicList Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 08/18] avcodec/vvcdec: refact, pred_get_refs return VVCRefPic instead of VVCFrame Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 09/18] avcodec/vvcdec: add vvc inter filters for RPR Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 10/18] avcodec/vvcdec: emulated_edge, use reference frame's sps and pps Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 11/18] avcodec/vvcdec: add RPR dsp Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 12/18] avcodec/vvcdec: inter, wait reference with a diffrent resolution Nuo Mi 2024-05-19 15:20 ` Jean-Baptiste Kempf 2024-05-20 13:25 ` Nuo Mi [this message] 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 13/18] avcodec/vvcdec: fix dmvr, bdof, cb_prof for RPR Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 14/18] avcodec/vvcdec: refact out luma_prof from luma_prof_bi Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 15/18] avcodec/vvcdec: refact, remove hf_idx and vf_idx from mc_xxx's param list Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 16/18] avcodec/vvcdec: increase edge_emu_buffer for RPR Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 17/18] avcodec/vvcdec: support Reference Picture Resampling Nuo Mi 2024-05-19 13:27 ` [FFmpeg-devel] [PATCH 18/18] Changelog: add DVB compatible information for VVC decoder Nuo Mi 2024-05-21 12:32 ` Nuo Mi
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='CAFXK13d8+2HiuGFNer4P8T9s=mbBjYp_C8HhX3d=avV_P8Pj6w@mail.gmail.com' \ --to=nuomi2021@gmail.com \ --cc=ffmpeg-devel@ffmpeg.org \ /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