[FFmpeg-devel] [PATCH 2/3] avfilter/avfilter: update sample_count_in/out

Nicolas George george at nsup.org
Thu Aug 5 15:34:23 EEST 2021


Paul B Mahol (12021-08-05):
> Signed-off-by: Paul B Mahol <onemda at gmail.com>
> ---
>  libavfilter/avfilter.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
> index 24de8ebee3..e0847c724b 100644
> --- a/libavfilter/avfilter.c
> +++ b/libavfilter/avfilter.c
> @@ -1013,6 +1013,7 @@ int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
>  
>      link->frame_blocked_in = link->frame_wanted_out = 0;
>      link->frame_count_in++;
> +    link->sample_count_in += frame->nb_samples;
>      filter_unblock(link->dst);
>      ret = ff_framequeue_add(&link->fifo, frame);
>      if (ret < 0) {
> @@ -1372,6 +1373,7 @@ static void consume_update(AVFilterLink *link, const AVFrame *frame)
>      ff_inlink_process_commands(link, frame);
>      link->dst->is_disabled = !ff_inlink_evaluate_timeline_at_frame(link, frame);
>      link->frame_count_out++;
> +    link->sample_count_out += frame->nb_samples;
>  }
>  
>  int ff_inlink_consume_frame(AVFilterLink *link, AVFrame **rframe)

LGTM if you squash 1 and 2 together.

-- 
  Nicolas George
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <https://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20210805/d1dd2d34/attachment.sig>


More information about the ffmpeg-devel mailing list