aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/Makefile
diff options
context:
space:
mode:
authorClément Bœsch <clement.boesch@smartjog.com>2012-02-20 13:49:18 +0100
committerClément Bœsch <ubitux@gmail.com>2012-02-21 16:45:37 +0100
commitaecf0cf5ed907993d41009c6f2a7aa7c3904b837 (patch)
treeacf5b512c1aff0dcbb0763217090a8cce490b23f /doc/examples/Makefile
parent241f8465d07ecc0696bcda994a1f44d836b8809c (diff)
downloadffmpeg-aecf0cf5ed907993d41009c6f2a7aa7c3904b837.tar.gz
doc/examples: add audio decoding/filtering example.
Mostly based on doc/examples/filtering.c. lavfi API is still limited to "buffer feeding" instead of "frame feeding" at the moment, so this example code sticks with it.
Diffstat (limited to 'doc/examples/Makefile')
-rw-r--r--doc/examples/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index b4d299ff67..6b9902df6e 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -3,7 +3,7 @@ FFMPEG_LIBS=libavdevice libavformat libavfilter libavcodec libswscale libavutil
CFLAGS+=-Wall $(shell pkg-config --cflags $(FFMPEG_LIBS))
LDFLAGS+=$(shell pkg-config --libs $(FFMPEG_LIBS))
-EXAMPLES=decoding_encoding filtering metadata muxing
+EXAMPLES=decoding_encoding filtering filtering_audio metadata muxing
OBJS=$(addsuffix .o,$(EXAMPLES))