summaryrefslogtreecommitdiff
path: root/ffmpeg/doc/examples/Makefile
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
committerTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
commitf7813a5324be39d13ab536c245d15dfc602a7849 (patch)
treefad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/doc/examples/Makefile
parentb7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff)
basic type mechanism working
Diffstat (limited to 'ffmpeg/doc/examples/Makefile')
-rw-r--r--ffmpeg/doc/examples/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/ffmpeg/doc/examples/Makefile b/ffmpeg/doc/examples/Makefile
index c849daa..f085532 100644
--- a/ffmpeg/doc/examples/Makefile
+++ b/ffmpeg/doc/examples/Makefile
@@ -7,24 +7,26 @@ FFMPEG_LIBS= libavdevice \
libswscale \
libavutil \
-CFLAGS += -Wall -O2 -g
+CFLAGS += -Wall -g
CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
EXAMPLES= decoding_encoding \
- demuxing \
+ demuxing_decoding \
filtering_video \
filtering_audio \
metadata \
muxing \
resampling_audio \
scaling_video \
+ transcode_aac \
OBJS=$(addsuffix .o,$(EXAMPLES))
# the following examples make explicit use of the math library
decoding_encoding: LDLIBS += -lm
muxing: LDLIBS += -lm
+resampling_audio: LDLIBS += -lm
.phony: all clean-test clean