[email protected]:
> From: Limin Wang <[email protected]>
>
> Signed-off-by: Limin Wang <[email protected]>
> ---
> libavfilter/vf_showinfo.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/libavfilter/vf_showinfo.c b/libavfilter/vf_showinfo.c
> index 87c2bed..5d97ef6 100644
> --- a/libavfilter/vf_showinfo.c
> +++ b/libavfilter/vf_showinfo.c
> @@ -147,10 +147,10 @@ static void dump_roi(AVFilterContext *ctx, const
> AVFrameSideData *sd)
> }
> nb_rois = sd->size / roi_size;
>
> - av_log(ctx, AV_LOG_INFO, "Regions Of Interest(RoI) information: ");
> + av_log(ctx, AV_LOG_INFO, "Regions Of Interest(ROI) information: \n");
^
Unnecessary space
> for (int i = 0; i < nb_rois; i++) {
> roi = (const AVRegionOfInterest *)(sd->data + roi_size * i);
> - av_log(ctx, AV_LOG_INFO, "index: %d, region: (%d, %d)/(%d, %d), qp
> offset: %d/%d.\n",
> + av_log(ctx, AV_LOG_INFO, "index: %d, region: (%d, %d) -> (%d, %d),
> qp offset: %d/%d.\n",
> i, roi->left, roi->top, roi->right, roi->bottom,
> roi->qoffset.num, roi->qoffset.den);
> }
> }
>
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".