summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/ffmpeg/doc/examples/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/ffmpeg/doc/examples/Makefile')
-rw-r--r--chromium/third_party/ffmpeg/doc/examples/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/chromium/third_party/ffmpeg/doc/examples/Makefile b/chromium/third_party/ffmpeg/doc/examples/Makefile
index f085532ffef..03c7021e8bb 100644
--- a/chromium/third_party/ffmpeg/doc/examples/Makefile
+++ b/chromium/third_party/ffmpeg/doc/examples/Makefile
@@ -11,20 +11,23 @@ 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 \
metadata \
muxing \
+ remuxing \
resampling_audio \
scaling_video \
transcode_aac \
+ transcoding \
OBJS=$(addsuffix .o,$(EXAMPLES))
# the following examples make explicit use of the math library
-decoding_encoding: LDLIBS += -lm
+avcodec: LDLIBS += -lm
muxing: LDLIBS += -lm
resampling_audio: LDLIBS += -lm