Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Paul B Mahol <onemda@gmail.com>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH] avfilter/vf_cropdetect: add ability to change limit/reset at runtime
Date: Tue, 17 Jan 2023 17:23:45 +0100
Message-ID: <CAPYw7P7KS45f9BWn1kwJg80GjY50dLSnBC5XmYCX5ZR3j_x2Hg@mail.gmail.com> (raw)
In-Reply-To: <6594f837-39ba-6d5a-6cf5-576944011045@gmail.com>

On 1/17/23, Jeffrey Chapuis <ashyni1987@gmail.com> wrote:
> On 17/01/2023 15:29, Paul B Mahol wrote:
>> On 1/17/23, Jeffrey Chapuis <ashyni1987@gmail.com> wrote:
>>> On 17/01/2023 14:45, Paul B Mahol wrote:
>>>> On 1/17/23, Jeffrey Chapuis <ashyni1987@gmail.com> wrote:
>>>>> On 17/01/2023 13:34, Paul B Mahol wrote:
>>>>>> On 1/17/23, Jeffrey Chapuis <ashyni1987@gmail.com> wrote:
>>>>>>> On 17/01/2023 12:52, Paul B Mahol wrote:
>>>>>>>> On 1/17/23, Jeffrey Chapuis <ashyni1987@gmail.com> wrote:
>>>>>>>>>> Le 10/01/2023 à 16:45, Paul B Mahol a écrit :
>>>>>>>>>>> On 1/10/23, Jeffrey CHAPUIS <ashyni1987 at gmail.com> wrote:
>>>>>>>>>>>> Hello,
>>>>>>>>>>>> I decided to continue on a simpler path without
>>>>>>>>>>>> 'reset/reset_count',
>>>>>>>>>>>> it
>>>>>>>>>>>> was
>>>>>>>>>>>> only to experiment anyway, 'limit' is the main goal.
>>>>>>>>>>>> 'limit' is added to the metadata to control that the result is
>>>>>>>>>>>> associated to
>>>>>>>>>>>> a change at runtime, it's after scaling with bitdetph but
>>>>>>>>>>>> that's
>>>>>>>>>>>> not
>>>>>>>>>>>> really
>>>>>>>>>>>> a problem (at least for me, we can always store the parameter
>>>>>>>>>>>> before
>>>>>>>>>>>> any
>>>>>>>>>>>> alteration).
>>>>>>>>>>>>
>>>>>>>>>>>>> +    if (!strcmp(cmd, "limit")) {
>>>>>>>>>>>>> +        if (s->limit < 1.0)
>>>>>>>>>>>>> +            s->limit *= (1 << s->bitdepth) - 1;
>>>>>>>>>>>>> +        s->frame_nb = s->reset_count;
>>>>>>>>>>>>> +    }
>>>>>>>>>>>> Should i remove the if statement here ? or keep it for future
>>>>>>>>>>>> change
>>>>>>>>>>>> eventually.
>>>>>>>>>>>
>>>>>>>>>>> Split variables, keep one variable settable by user and
>>>>>>>>>>> unchanged
>>>>>>>>>>> by
>>>>>>>>>>> filter.
>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> Notes I didn't think about?
>>>>>>>>>>>>
>>>>>>>>>>>> Thunderbird altered the patch somehow (remove empty new lines),
>>>>>>>>>>>> it's
>>>>>>>>>>>> edited
>>>>>>>>>>>> manually.
>>>>>>>>>>>
>>>>>>>>>>> Attach patch instead.
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Avoid using strcmp to check for this variable change, instead
>>>>>>>>>>> check
>>>>>>>>>>> with previous and new value in process function.
>>>>>>>>>>
>>>>>>>>>>> Here is part of the updated patch, 'limit' exposed in
>>>>>>>>>>> metadata/log
>>>>>>>>>>> is
>>>>>>>>>>> now
>>>>>>>>>>> coherent with init().
>>>>>>>>>>> Like 'limit/limit_user' is of type float, i've used what's done
>>>>>>>>>>> in
>>>>>>>>>>> av_dict_set_int() to print it as float.
>>>>>>>>>>> Compare 's->limit_user' and 's->limit' to check for a change
>>>>>>>>>>> instead
>>>>>>>>>>> of
>>>>>>>>>>> 'strcmp'.
>>>>>>>>>>> Is there anything to adjust ?
>>>>>>>>>>
>>>>>>>>>> Forgot to update ref file for fate (full patch attached).
>>>>>>>>>
>>>>>>>>> Is the update code good?
>>>>>>>>>
>>>>>>>>>> +    char limit_str[22];
>>>>>>>>>> +        snprintf(limit_str, sizeof(limit_str), "%f",
>>>>>>>>>> s->limit_user);
>>>>>>>>>> +        av_dict_set(metadata, "lavfi.cropdetect.limit",
>>>>>>>>>> limit_str,
>>>>>>>>>> 0);
>>>>>>>>>
>>>>>>>>> Should i create a function av_dict_set_float() in libavutil/dict.c
>>>>>>>>> and
>>>>>>>>> libavutil/dict.h?
>>>>>>>>
>>>>>>>> Nope.
>>>>>>>>
>>>>>>>> Shouldnt limit variable be changed if < 1.0 before being used in
>>>>>>>> process_command()  ?
>>>>>>>
>>>>>>> You mean before ff_filter_process_command() ?
>>>>>>
>>>>>> Inside that function.
>>>>>>
>>>>>>> I thought ff_filter_process_command() was only checking the command
>>>>>>> flag
>>>>>>> and
>>>>>>> input value.
>>>>>>
>>>>>> Call to ff_filter_process_command() does update to new values set by
>>>>>> user.
>>>>>>
>>>>>> So if limit is lower than 1.0 have special meaning it needs to be
>>>>>> handled properly.
>>>>>>
>>>>>> The ideal solution is thus to keep user supplied value always
>>>>>> constant
>>>>>> after its changed by user, and to do operations with it into new
>>>>>> variables.
>>>>>
>>>>> I'm lost, limit_user already keep the user settings untouched before
>>>>> limit
>>>>> is modified if < 1.0
>>>>
>>>> That is an issue, limit should not ever change except if user set it.
>>>
>>>> static int process_command(AVFilterContext *ctx, const char *cmd, const
>>>> char *args,
>>>>                             char *res, int res_len, int flags)
>>>> {
>>>>     CropDetectContext *s = ctx->priv;
>>>>     int ret;
>>>>
>>>> +   if (s->limit_user == s->limit)
>>>> +       return AVERROR(ENOSYS);
>>>> +
>>
>> Remove this 3 lines.
>>
>>>>     if ((ret = ff_filter_process_command(ctx, cmd, args, res, res_len,
>>>> flags)) < 0)
>>>>         return ret;
>>>>
>>>>     if (s->limit_user != s->limit) {
>>>>         s->limit_user = s->limit;
>>>>         if (s->limit < 1.0)
>>
>> here replace this with s->limit_user.
>>
>>>>             s->limit *= (1 << s->bitdepth) - 1;
>>
>> same here
>>
>>>>         s->frame_nb = s->reset_count;
>>>>     }
>>>>
>>>>     return 0;
>>>> }
>>>
>>> I did not check if the limit was identical to the old one before
>>> ff_filter_process_command() set it,
>>> and it wasn't upscale for bitdepth in that case, so we avoid touching
>>> limit
>>> all together now.
>>> Is this correct?
>
> You actually want to make limit_user the variable being upscale for bitdepth
> and used in filter_frame(),
> and keep limit untouched for metadata and log ? reverse everything ?
>
> The filter is working as expected, right now, I'm more and more lost.
>
>> I did not check if the limit was identical to the old one before
>> ff_filter_process_command() set it,
>> and it wasn't upscale for bitdepth in that case, so we avoid touching
>> limit
>> all together now.
>
> This was the only thing missing.
>
> Full patch attached.
>

That code in patch will always trigger check in process_command() when
user modify limit.
Currently it does not matter as only that option can be changed but that is bad
solution for future maintenance.

So yes, you need to rename all variables of limit to limit_user or
reverse your current logic.
_______________________________________________
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:[~2023-01-17 16:23 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-10 13:15 Jeffrey CHAPUIS
2023-01-10 15:45 ` Paul B Mahol
2023-01-11 11:42   ` Jeffrey Chapuis
2023-01-11 17:46     ` Jeffrey Chapuis
2023-01-12 15:53       ` Jeffrey Chapuis
2023-01-17 11:46         ` Jeffrey Chapuis
2023-01-17 11:52           ` Paul B Mahol
2023-01-17 12:27             ` Jeffrey Chapuis
2023-01-17 12:34               ` Paul B Mahol
2023-01-17 13:31                 ` Jeffrey Chapuis
2023-01-17 13:45                   ` Paul B Mahol
2023-01-17 14:24                     ` Jeffrey Chapuis
2023-01-17 14:29                       ` Paul B Mahol
2023-01-17 15:19                         ` Jeffrey Chapuis
2023-01-17 16:23                           ` Paul B Mahol [this message]
2023-01-17 18:00                             ` Jeffrey Chapuis
2023-01-17 18:11                               ` Paul B Mahol
2023-01-17 22:07                                 ` Jeffrey Chapuis
2023-01-19 12:11                                 ` Jeffrey Chapuis
2023-01-19 13:50                                 ` Jeffrey Chapuis
  -- strict thread matches above, loose matches on Subject: below --
2022-12-28 11:02 Jeffrey CHAPUIS
2022-12-28 11:21 ` Marton Balint
2022-12-28 11:51 ` James Almer
2022-12-28 15:37   ` Jeffrey CHAPUIS
2022-12-27 12:33 Jeffrey CHAPUIS
2022-12-27 11:46 Jeffrey CHAPUIS
2022-12-27 12:34 ` James Almer
2022-12-27 12:57   ` Jeffrey CHAPUIS

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=CAPYw7P7KS45f9BWn1kwJg80GjY50dLSnBC5XmYCX5ZR3j_x2Hg@mail.gmail.com \
    --to=onemda@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