-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
66 lines (58 loc) · 2.54 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# use pkg-config for getting CFLAGS and LDLIBS
FFMPEG_LIBS= libavdevice \
libavformat \
libavfilter \
libavcodec \
libswresample \
libswscale \
libavutil \
CFLAGS += -Wall -g
CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
#EXAMPLES= avio_dir_cmd \
# avio_reading \
# decode_audio \
# decode_video \
# demuxing_decoding \
# encode_audio \
# encode_video \
# extract_mvs \
# filtering_video \
# filtering_audio \
# http_multiclient \
# metadata \
# muxing \
# remuxing \
# resampling_audio \
# scaling_video \
# transcode_aac \
# transcoding \
EXAMPLES = demuxing_decoding \
mediainfo \
ffmpeg_log \
extr_audio \
write_file \
read_file \
extr_video \
remuxing \
cutvideo \
avmerge \
muxer \
scaling_video \
yuv_video \
decode_audio \
decode_video \
filtering_audio \
filtering_video
OBJS=$(addsuffix .o,$(EXAMPLES))
# the following examples make explicit use of the math library
avcodec: LDLIBS += -lm
encode_audio: LDLIBS += -lm
muxing: LDLIBS += -lm
resampling_audio: LDLIBS += -lm
.phony: all clean-test clean
all: $(OBJS) $(EXAMPLES)
clean-test:
$(RM) test*.pgm test.h264 test.mp2 test.sw test.mpg
clean: clean-test
$(RM) $(EXAMPLES) $(OBJS)