Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Stefano Sabatini <stefasab@gmail.com>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Cc: Stefano Sabatini <stefasab@gmail.com>
Subject: [FFmpeg-devel] [PATCH 03/15] examples: rename filtering_audio to decode_filter_audio
Date: Sun, 15 Jan 2023 17:10:23 +0100
Message-ID: <20230115161035.584474-4-stefasab@gmail.com> (raw)
In-Reply-To: <20230115161035.584474-1-stefasab@gmail.com>

---
 configure                                                 | 4 ++--
 doc/examples/Makefile                                     | 2 +-
 doc/examples/Makefile.example                             | 2 +-
 doc/examples/{filtering_audio.c => decode_filter_audio.c} | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)
 rename doc/examples/{filtering_audio.c => decode_filter_audio.c} (99%)

diff --git a/configure b/configure
index a1488c442a..69137e929a 100755
--- a/configure
+++ b/configure
@@ -1713,13 +1713,13 @@ EXAMPLE_LIST="
     avio_list_dir_example
     avio_read_callback_example
     decode_audio_example
+    decode_filter_audio_example
     decode_video_example
     demux_decode_example
     encode_audio_example
     encode_video_example
     extract_mvs_example
     filter_audio_example
-    filtering_audio_example
     filtering_video_example
     http_multiclient_example
     hw_decode_example
@@ -3770,13 +3770,13 @@ yadif_videotoolbox_filter_deps="metal corevideo videotoolbox"
 avio_list_dir_deps="avformat avutil"
 avio_read_callback_deps="avformat avcodec avutil"
 decode_audio_example_deps="avcodec avutil"
+decode_filter_audio_example_deps="avfilter avcodec avformat avutil"
 decode_video_example_deps="avcodec avutil"
 demux_decode_example_deps="avcodec avformat avutil"
 encode_audio_example_deps="avcodec avutil"
 encode_video_example_deps="avcodec avutil"
 extract_mvs_example_deps="avcodec avformat avutil"
 filter_audio_example_deps="avfilter avutil"
-filtering_audio_example_deps="avfilter avcodec avformat avutil"
 filtering_video_example_deps="avfilter avcodec avformat avutil"
 http_multiclient_example_deps="avformat avutil fork"
 hw_decode_example_deps="avcodec avformat avutil"
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index adfcdb6aa3..2e97605d5e 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -1,13 +1,13 @@
 EXAMPLES-$(CONFIG_AVIO_LIST_DIR_EXAMPLE)     += avio_list_dir
 EXAMPLES-$(CONFIG_AVIO_READ_CALLBACK_EXAMPLE) += avio_read_callback
 EXAMPLES-$(CONFIG_DECODE_AUDIO_EXAMPLE)      += decode_audio
+EXAMPLES-$(CONFIG_DECODE_FILTER_AUDIO_EXAMPLE) += decode_filter_audio
 EXAMPLES-$(CONFIG_DECODE_VIDEO_EXAMPLE)      += decode_video
 EXAMPLES-$(CONFIG_DEMUX_DECODE_EXAMPLE)      += demux_decode
 EXAMPLES-$(CONFIG_ENCODE_AUDIO_EXAMPLE)      += encode_audio
 EXAMPLES-$(CONFIG_ENCODE_VIDEO_EXAMPLE)      += encode_video
 EXAMPLES-$(CONFIG_EXTRACT_MVS_EXAMPLE)       += extract_mvs
 EXAMPLES-$(CONFIG_FILTER_AUDIO_EXAMPLE)      += filter_audio
-EXAMPLES-$(CONFIG_FILTERING_AUDIO_EXAMPLE)   += filtering_audio
 EXAMPLES-$(CONFIG_FILTERING_VIDEO_EXAMPLE)   += filtering_video
 EXAMPLES-$(CONFIG_HTTP_MULTICLIENT_EXAMPLE)  += http_multiclient
 EXAMPLES-$(CONFIG_HW_DECODE_EXAMPLE)         += hw_decode
diff --git a/doc/examples/Makefile.example b/doc/examples/Makefile.example
index 33af323c6f..e720dc2008 100644
--- a/doc/examples/Makefile.example
+++ b/doc/examples/Makefile.example
@@ -14,13 +14,13 @@ LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
 EXAMPLES=       avio_list_dir                      \
                 avio_read_callback                 \
                 decode_audio                       \
+                decode_filter_audio                \
                 decode_video                       \
                 demux_decode                       \
                 encode_audio                       \
                 encode_video                       \
                 extract_mvs                        \
                 filtering_video                    \
-                filtering_audio                    \
                 http_multiclient                   \
                 hw_decode                          \
                 metadata                           \
diff --git a/doc/examples/filtering_audio.c b/doc/examples/decode_filter_audio.c
similarity index 99%
rename from doc/examples/filtering_audio.c
rename to doc/examples/decode_filter_audio.c
index 51fc47be2a..607237bf11 100644
--- a/doc/examples/filtering_audio.c
+++ b/doc/examples/decode_filter_audio.c
@@ -25,7 +25,7 @@
 /**
  * @file
  * API example for audio decoding and filtering
- * @example filtering_audio.c
+ * @example decode_filter_audio.c
  */
 
 #include <unistd.h>
-- 
2.25.1

_______________________________________________
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".

  parent reply	other threads:[~2023-01-15 16:11 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-15 16:10 [FFmpeg-devel] Rename examples, apply consistency fixes Stefano Sabatini
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 01/15] examples: rename avio_reading to avio_read_callback Stefano Sabatini
2023-01-25  0:28   ` Stefano Sabatini
2023-02-11 17:12     ` Stefano Sabatini
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 02/15] examples: rename demuxing_decoding to demux_decode Stefano Sabatini
2023-01-15 16:10 ` Stefano Sabatini [this message]
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 04/15] examples: rename filtering_video to decode_filter_video Stefano Sabatini
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 05/15] examples: rename http_multiclient to avio_http_serve_files Stefano Sabatini
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 06/15] examples: rename metadata to show_metadata Stefano Sabatini
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 07/15] examples: rename muxing to mux Stefano Sabatini
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 08/15] examples: rename qsvdec to qsv_decode Stefano Sabatini
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 09/15] examples: rename remuxing to remux Stefano Sabatini
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 10/15] examples: rename resampling audio to resample_audio Stefano Sabatini
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 11/15] examples: rename scaling_video to scale_video Stefano Sabatini
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 12/15] examples: rename transcoding to transcode Stefano Sabatini
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 13/15] examples: apply doxy entries consistency fixes Stefano Sabatini
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 14/15] examples: apply consistency fixes to doxy entries Stefano Sabatini
2023-01-15 16:10 ` [FFmpeg-devel] [PATCH 15/15] examples/Makefile.example: add missing entries Stefano Sabatini

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=20230115161035.584474-4-stefasab@gmail.com \
    --to=stefasab@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