diff options
author | Anton Khirnov <anton@khirnov.net> | 2020-01-10 12:10:09 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2020-03-16 09:23:37 +0100 |
commit | 15546f772c686412d3e823ff8db266796541846e (patch) | |
tree | 874c4b3afe3c6a51d011eace420100b1311b1e1e /doc/examples/Makefile.example | |
parent | 7f0a7e3e63ff0d342772cbc7e6e5d652900d6710 (diff) | |
download | ffmpeg-15546f772c686412d3e823ff8db266796541846e.tar.gz |
examples/avio_dir_cmd: drop support for move/delete operations
They use non-public functions, which is unacceptable for a public API
example. Rename the example back to avio_list_dir.
This effectively reverts c84d208c275d6a43b3c3421d38772179abf8acee and
767d780ec001167b2fd8f6cfe4ef78a3a8b1e34c.
Diffstat (limited to 'doc/examples/Makefile.example')
-rw-r--r-- | doc/examples/Makefile.example | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/Makefile.example b/doc/examples/Makefile.example index 6428154c51..a232d97f98 100644 --- a/doc/examples/Makefile.example +++ b/doc/examples/Makefile.example @@ -11,7 +11,7 @@ CFLAGS += -Wall -g CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS) LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS) -EXAMPLES= avio_dir_cmd \ +EXAMPLES= avio_list_dir \ avio_reading \ decode_audio \ decode_video \ |