From: Anton Khirnov <anton@khirnov.net>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH 08/10] lavfi: move AVFilterLink.{frame, sample}_count_{in, out} to FilterLink
Date: Tue, 13 Aug 2024 10:28:25 +0200
Message-ID: <172353770582.21344.11526101155865291337@lain.khirnov.net> (raw)
In-Reply-To: <20240812201930.GO4991@pb2>
Quoting Michael Niedermayer (2024-08-12 22:19:30)
> On Sun, Aug 11, 2024 at 04:42:09PM +0200, Anton Khirnov wrote:
> > ---
> > libavfilter/af_adrc.c | 3 ++-
> > libavfilter/af_afftdn.c | 3 ++-
> > libavfilter/af_ashowinfo.c | 4 +++-
> > libavfilter/af_dynaudnorm.c | 3 ++-
> > libavfilter/af_volume.c | 4 +++-
> > libavfilter/asrc_sine.c | 3 ++-
> > libavfilter/avf_showfreqs.c | 5 +++--
> > libavfilter/avfilter.c | 16 +++++++++-------
> > libavfilter/avfilter.h | 10 ----------
> > libavfilter/avfiltergraph.c | 4 ++--
> > libavfilter/f_graphmonitor.c | 24 ++++++++++++------------
> > libavfilter/f_latency.c | 6 ++++--
> > libavfilter/f_loop.c | 6 ++++--
> > libavfilter/f_metadata.c | 6 ++++--
> > libavfilter/f_segment.c | 10 ++++++----
> > libavfilter/f_select.c | 4 +++-
> > libavfilter/f_sendcmd.c | 4 +++-
> > libavfilter/f_streamselect.c | 3 ++-
> > libavfilter/filters.h | 10 ++++++++++
> > libavfilter/qrencode.c | 3 ++-
> > libavfilter/vf_bbox.c | 4 +++-
> > libavfilter/vf_blackdetect.c | 4 +++-
> > libavfilter/vf_blend.c | 3 ++-
> > libavfilter/vf_blockdetect.c | 5 ++++-
> > libavfilter/vf_blurdetect.c | 5 ++++-
> > libavfilter/vf_crop.c | 4 +++-
> > libavfilter/vf_datascope.c | 4 +++-
> > libavfilter/vf_delogo.c | 4 +++-
> > libavfilter/vf_detelecine.c | 3 ++-
> > libavfilter/vf_drawtext.c | 8 +++++---
> > libavfilter/vf_eq.c | 3 ++-
> > libavfilter/vf_fade.c | 10 ++++++----
> > libavfilter/vf_fftfilt.c | 4 +++-
> > libavfilter/vf_fieldhint.c | 17 ++++++++++-------
> > libavfilter/vf_fieldmatch.c | 7 ++++---
> > libavfilter/vf_find_rect.c | 5 ++++-
> > libavfilter/vf_framestep.c | 3 ++-
> > libavfilter/vf_freezeframes.c | 8 +++++---
> > libavfilter/vf_geq.c | 5 ++++-
> > libavfilter/vf_hue.c | 3 ++-
> > libavfilter/vf_libplacebo.c | 6 ++++--
> > libavfilter/vf_overlay.c | 4 +++-
> > libavfilter/vf_overlay_cuda.c | 3 ++-
> > libavfilter/vf_perspective.c | 7 +++++--
> > libavfilter/vf_quirc.c | 3 ++-
> > libavfilter/vf_rotate.c | 4 +++-
> > libavfilter/vf_scale.c | 12 ++++++++----
> > libavfilter/vf_scale_npp.c | 8 +++++---
> > libavfilter/vf_showinfo.c | 3 ++-
> > libavfilter/vf_swaprect.c | 4 +++-
> > libavfilter/vf_telecine.c | 3 ++-
> > libavfilter/vf_tinterlace.c | 7 ++++---
> > libavfilter/vf_vignette.c | 3 ++-
> > libavfilter/vf_weave.c | 3 ++-
> > libavfilter/vf_zoompan.c | 9 ++++++---
> > libavfilter/vsrc_mptestsrc.c | 5 +++--
> > 56 files changed, 208 insertions(+), 116 deletions(-)
>
> this seems to break build here:
Huh, seems my config doesn't build drawtext anymore.
Fixed locally.
--
Anton Khirnov
_______________________________________________
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".
next prev parent reply other threads:[~2024-08-13 8:28 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-11 14:42 [FFmpeg-devel] [PATCH 01/10] lavfi: set AVFilterLink.graph on link creation Anton Khirnov
2024-08-11 14:42 ` [FFmpeg-devel] [PATCH 02/10] lavfi: add a new struct for private link properties Anton Khirnov
2024-08-11 14:42 ` [FFmpeg-devel] [PATCH 03/10] lavfi: move AVFilterLink.m{ax, in}_samples to FilterLink Anton Khirnov
2024-08-11 14:42 ` [FFmpeg-devel] [PATCH 04/10] lavfi/vf_*_cuda: do not access hw contexts before checking they exist Anton Khirnov
2024-08-11 14:42 ` [FFmpeg-devel] [PATCH 05/10] lavfi: move AVFilterLink.hw_frames_ctx to FilterLink Anton Khirnov
2024-08-11 14:42 ` [FFmpeg-devel] [PATCH 06/10] lavfi: move AVFilterLink.current_pts(_us) " Anton Khirnov
2024-08-11 14:42 ` [FFmpeg-devel] [PATCH 07/10] lavfi: move AVFilterLink.frame_rate " Anton Khirnov
2024-08-11 14:42 ` [FFmpeg-devel] [PATCH 08/10] lavfi: move AVFilterLink.{frame, sample}_count_{in, out} " Anton Khirnov
2024-08-12 20:19 ` Michael Niedermayer
2024-08-13 8:28 ` Anton Khirnov [this message]
2024-08-11 14:42 ` [FFmpeg-devel] [PATCH 09/10] lavfi: move AVFilterLink.frame_wanted_out to FilterLinkInternal Anton Khirnov
2024-08-11 14:42 ` [FFmpeg-devel] [PATCH 10/10] lavfi: move AVFilterLink.graph to FilterLink Anton Khirnov
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=172353770582.21344.11526101155865291337@lain.khirnov.net \
--to=anton@khirnov.net \
--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