Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Poorva <2003gaikarpoorva@gmail.com>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Cc: Thilo Borgmann <thilo.borgmann@mail.de>,
	Cosmin Stejerean <cosmin@cosmin.at>
Subject: Re: [FFmpeg-devel] Fixes #10509
Date: Sun, 24 Mar 2024 19:58:22 +0530
Message-ID: <CAJdhrg=MhR--TtcZ=3PNZt42srPqmfK9xV9tWMWF_mfXBjcxYQ@mail.gmail.com> (raw)
In-Reply-To: <CAJdhrgmDo-1GiNrw06_Cmm2jteVdWQ0hSDKB32G=dma2kxKnxw@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 3928 bytes --]

>

On Mon, Mar 18, 2024 at 10:34 PM Poorva <2003gaikarpoorva@gmail.com> wrote:
>
> >
>
> On Sun, Mar 17, 2024 at 12:26 AM Marton Balint <cus@passwd.hu> wrote:
> >
> >
> >
> > On Sun, 17 Mar 2024, Poorva wrote:
> >
> > > On Mon, Mar 11, 2024 at 1:10 AM Leo Izen <leo.izen@gmail.com> wrote:
> > >>
> > >> On 3/9/24 15:49, Poorva wrote:
> > >>> I have attached the git patch containing the changes for your review.
> > >>>
> > >>> This patch is submitted as part of my qualification task for Google Summer
> > >>> of Code (GSoC)
> > >>>
> > >>
> > >> Your editor appears to have stripped the newline at the end of the file.
> >
> > > diff --git a/libavfilter/f_select.c b/libavfilter/f_select.c
> > > index 9b330a0673..965f5a0b54 100644
> > > --- a/libavfilter/f_select.c
> > > +++ b/libavfilter/f_select.c
> > > @@ -90,6 +90,9 @@ static const char *const var_names[] = {
> > >
> > >      "concatdec_select",  ///< frame is within the interval set by the concat demuxer
> > >
> > > +    "ih",                ///< ih: Represents the height of the input video frame.
> > > +    "iw",                ///< iw: Represents the width of the input video frame.
> > > +
> > >      NULL
> > >  };
> > >
> > > @@ -144,6 +147,9 @@ enum var_name {
> > >
> > >      VAR_CONCATDEC_SELECT,
> > >
> > > +    VAR_IH,
> > > +    VAR_IW,
> > > +
> > >      VAR_VARS_NB
> > >  };
> > >
> > > @@ -264,6 +270,9 @@ static int config_input(AVFilterLink *inlink)
> > >      select->var_values[VAR_CONSUMED_SAMPLES_N] = NAN;
> > >      select->var_values[VAR_SAMPLES_N]          = NAN;
> > >
> > > +    select->var_values[VAR_IH] = inlink->h;
> > > +    select->var_values[VAR_IW] = inlink->w;
> >
> > Initial valaues should be NAN. This may well be an audio filter, when
> > ih/iw is not available.
> >
> > > +
> > >      select->var_values[VAR_SAMPLE_RATE] =
> > >          inlink->type == AVMEDIA_TYPE_AUDIO ? inlink->sample_rate : NAN;
> > >
> > > @@ -371,6 +380,9 @@ FF_ENABLE_DEPRECATION_WARNINGS
> > >          break;
> > >      }
> > >
> > > +    select->var_values[VAR_IH] = frame->height;
> > > +    select->var_values[VAR_IW] = frame->width;
> >
> > You shold only set these for the VIDEO case.
> >
> > > +
> > >      select->select = res = av_expr_eval(select->expr, select->var_values, NULL);
> > >      av_log(inlink->dst, AV_LOG_DEBUG,
> > >             "n:%f pts:%f t:%f key:%d",
> > > @@ -546,3 +558,4 @@ const AVFilter ff_vf_select = {
> > >      .flags         = AVFILTER_FLAG_DYNAMIC_OUTPUTS | AVFILTER_FLAG_METADATA_ONLY,
> > >  };
> > >  #endif /* CONFIG_SELECT_FILTER */
> > > +
> >
> > Extra added line.
> >
> > > --
> > > 2.43.0.windows.1
> >
> > Documentation update missing.
> Sir, I have made the changes as per your suggestions:
>
> 1)Initial values are now set to NaN.
> 2)Values are only set for the VIDEO case.
> 3)Documentation has been updated to reflect these changes accurately.
> I have attached the patch with the updated code for your review.
>
  I wanted to follow up on a patch I submitted earlier and provide an
update based on the feedback received.

Changes made in the update were:

1)Initial values are now set to NaN.
2)Values are only set for the VIDEO case.
3)Documentation has been updated to reflect these changes accurately.
Despite the changes made, I have not received any further feedback or
comments on the patch. Therefore, I kindly request the community to
review the updated patch attached to this email.

Your feedback and suggestions are highly valuable and appreciated.
>
> > Regards,
> > Marton
> > _______________________________________________
> > 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".

[-- Attachment #2: v2-0001-avfilter-f_select.c-add-support-for-iw-and-ih-con.patch --]
[-- Type: application/octet-stream, Size: 2408 bytes --]

[-- Attachment #3: Type: text/plain, Size: 251 bytes --]

_______________________________________________
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:[~2024-03-24 14:33 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-09 20:49 Poorva
2024-03-10 19:40 ` Leo Izen
2024-03-16 18:47   ` Poorva
2024-03-16 18:56     ` Marton Balint
2024-03-18 17:04       ` Poorva
2024-03-24 14:28         ` Poorva [this message]
2024-03-24 20:34           ` Marton Balint
2024-03-25 21:06             ` Poorva
2024-03-28 19:34               ` Poorva
2024-03-31 15:05                 ` Marton Balint
2024-04-01 14:37                   ` Poorva
2024-04-04 20:38                     ` Marton Balint
2024-05-01  9:50                       ` Poorva
2024-05-07 22:04                         ` Marton Balint

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='CAJdhrg=MhR--TtcZ=3PNZt42srPqmfK9xV9tWMWF_mfXBjcxYQ@mail.gmail.com' \
    --to=2003gaikarpoorva@gmail.com \
    --cc=cosmin@cosmin.at \
    --cc=ffmpeg-devel@ffmpeg.org \
    --cc=thilo.borgmann@mail.de \
    /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