diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2014-01-26 18:30:06 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2014-02-02 11:58:23 +0100 |
commit | 5fc4dea39caf7f4ea8a9a37c836d0a87d888d33f (patch) | |
tree | 2552af2b295ce1102e99cb078a1374d508104a2e /doc/examples/Makefile | |
parent | a270f63e832b6fffaef41b3bb898024827a7877e (diff) | |
download | ffmpeg-5fc4dea39caf7f4ea8a9a37c836d0a87d888d33f.tar.gz |
examples: add avio_reading.c example
Diffstat (limited to 'doc/examples/Makefile')
-rw-r--r-- | doc/examples/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile index a25455e08c..f4f6c70d8c 100644 --- a/doc/examples/Makefile +++ b/doc/examples/Makefile @@ -11,7 +11,8 @@ CFLAGS += -Wall -g CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS) LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS) -EXAMPLES= decoding_encoding \ +EXAMPLES= avio_reading \ + decoding_encoding \ demuxing_decoding \ filtering_video \ filtering_audio \ |