From: Stefano Sabatini <stefasab@gmail.com> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Cc: Niklas Haas <git@haasn.dev> Subject: Re: [FFmpeg-devel] [PATCH 1/2] avfilter/vf_showinfo: add AVFilmGrainAOMParams support Date: Sun, 3 Mar 2024 16:53:04 +0100 Message-ID: <ZeSc4KsrMR0M521l@mariano> (raw) In-Reply-To: <20240227134313.46097-1-ffmpeg@haasn.xyz> On date Tuesday 2024-02-27 14:43:12 +0100, Niklas Haas wrote: > From: Niklas Haas <git@haasn.dev> > > For my own testing purposes. You can drop "my own". > --- > libavfilter/vf_showinfo.c | 42 +++++++++++++++++++++++++++++++++++++-- > 1 file changed, 40 insertions(+), 2 deletions(-) > > diff --git a/libavfilter/vf_showinfo.c b/libavfilter/vf_showinfo.c > index 309de28df91..830170363bc 100644 > --- a/libavfilter/vf_showinfo.c > +++ b/libavfilter/vf_showinfo.c > @@ -462,8 +462,46 @@ static void dump_sei_film_grain_params_metadata(AVFilterContext *ctx, const AVFr > > switch (fgp->type) { > case AV_FILM_GRAIN_PARAMS_NONE: > - case AV_FILM_GRAIN_PARAMS_AV1: > - return; > + break; > + case AV_FILM_GRAIN_PARAMS_AV1: { > + const AVFilmGrainAOMParams *aom = &fgp->codec.aom; > + const int num_ar_coeffs_y = 2 * aom->ar_coeff_lag * (aom->ar_coeff_lag + 1); > + const int num_ar_coeffs_uv = num_ar_coeffs_y + !!aom->num_y_points; > + av_log(ctx, AV_LOG_INFO, "y_points={ "); > + for (int i = 0; i < aom->num_y_points; i++) > + av_log(ctx, AV_LOG_INFO, "{%d, %d} ", aom->y_points[i][0], aom->y_points[i][1]); nit++: other instances make use of () to delimit vector values > + av_log(ctx, AV_LOG_INFO, "}; chroma_scaling_from_luma=%d; ", aom->chroma_scaling_from_luma); > + for (int uv = 0; uv < 2; uv++) { > + av_log(ctx, AV_LOG_INFO, "uv_points[%d]={ ", uv); > + for (int i = 0; i < aom->num_uv_points[uv]; i++) > + av_log(ctx, AV_LOG_INFO, "{%d %d} ", aom->uv_points[uv][i][0], aom->uv_points[uv][i][1]); > + av_log(ctx, AV_LOG_INFO, "}; "); > + } > + av_log(ctx, AV_LOG_INFO, "scaling_shift=%d; ", aom->scaling_shift); > + av_log(ctx, AV_LOG_INFO, "ar_coeff_lag=%d; ", aom->ar_coeff_lag); nit: using "," seems more consistent with other instances, here and below > + if (num_ar_coeffs_y) { > + av_log(ctx, AV_LOG_INFO, "ar_coeffs_y={ "); > + for (int i = 0; i < num_ar_coeffs_y; i++) > + av_log(ctx, AV_LOG_INFO, "%d ", aom->ar_coeffs_y[i]); > + av_log(ctx, AV_LOG_INFO, "}; "); > + } > + for (int uv = 0; num_ar_coeffs_uv && uv < 2; uv++) { > + av_log(ctx, AV_LOG_INFO, "ar_coeffs_uv[%d]={ ", uv); > + for (int i = 0; i < num_ar_coeffs_uv; i++) > + av_log(ctx, AV_LOG_INFO, "%d ", aom->ar_coeffs_uv[uv][i]); > + av_log(ctx, AV_LOG_INFO, "}; "); > + } > + av_log(ctx, AV_LOG_INFO, "ar_coeff_shift=%d; ", aom->ar_coeff_shift); > + av_log(ctx, AV_LOG_INFO, "grain_scale_shift=%d; ", aom->grain_scale_shift); > + for (int uv = 0; uv < 2; uv++) { > + av_log(ctx, AV_LOG_INFO, "uv_mult[%d] = %d; ", uv, aom->uv_mult[uv]); > + av_log(ctx, AV_LOG_INFO, "uv_mult_luma[%d] = %d; ", uv, aom->uv_mult_luma[uv]); > + av_log(ctx, AV_LOG_INFO, "uv_offset[%d] = %d; ", uv, aom->uv_offset[uv]); > + } > + av_log(ctx, AV_LOG_INFO, "overlap_flag=%d; ", aom->overlap_flag); > + av_log(ctx, AV_LOG_INFO, "limit_output_range=%d; ", aom->limit_output_range); > + break; > + } > case AV_FILM_GRAIN_PARAMS_H274: { > const AVFilmGrainH274Params *h274 = &fgp->codec.h274; > const char *color_range_str = av_color_range_name(h274->color_range); > -- LGTM otherwise (and no need to send another patch). Unrelated note: probably we should define a serialization method at the library level, then we might employ the same code to display the information here and in ffprobe (this was the work proposed by Nicolas). _______________________________________________ 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".
prev parent reply other threads:[~2024-03-03 15:53 UTC|newest] Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-02-27 13:43 Niklas Haas 2024-02-27 13:43 ` [FFmpeg-devel] [PATCH 2/2] fftools/ffprobe: add AVFilmGrainParams printing Niklas Haas 2024-03-03 16:19 ` Stefano Sabatini 2024-03-03 15:53 ` Stefano Sabatini [this message]
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=ZeSc4KsrMR0M521l@mariano \ --to=stefasab@gmail.com \ --cc=ffmpeg-devel@ffmpeg.org \ --cc=git@haasn.dev \ /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