summaryrefslogtreecommitdiffstats
path: root/libmpdemux/Makefile
blob: 64344ea2e1f96b3397ac7d4bcebdef77cc40b6c1 (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89

include ../config.mak

LIBNAME = libmpdemux.a
ifeq ($(MENCODER),yes)
LIBNAME2 = libmpmux.a
endif

# Headers and header-dumpers
SRCS  = mp3_hdr.c \
        mpeg_hdr.c \
        asfheader.c \
        aviheader.c \
        aviprint.c \

# Core
SRCS += extension.c \
        video.c \

# Miscellaneous
SRCS += parse_es.c \
        parse_mp4.c \
        mpeg_packetizer.c \
        yuv4mpeg.c \
        yuv4mpeg_ratio.c \
        mf.c \

# Demuxers
SRCS += demuxer.c \
        demux_aac.c \
        demux_asf.c \
        demux_audio.c \
        demux_avi.c \
        demux_demuxers.c \
        demux_film.c \
        demux_fli.c \
        demux_lmlm4.c \
        demux_mf.c \
        demux_mov.c \
        demux_mpc.c \
        demux_mpg.c \
        demux_nsv.c \
        demux_nuv.c \
        demux_pva.c \
        demux_rawaudio.c \
        demux_rawvideo.c \
        demux_realaud.c \
        demux_real.c \
        demux_roq.c \
        demux_smjpeg.c \
        demux_ts.c \
        demux_ty.c \
        demux_ty_osd.c \
        demux_viv.c \
        demux_vqf.c \
        demux_y4m.c \
        demux_mkv.c ebml.c \

SRCS-$(CONFIG_LIBAVFORMAT)      += demux_lavf.c
SRCS-$(CONFIG_LIBAVFORMAT_SO)   += demux_lavf.c
SRCS-$(GIF)                     += demux_gif.c
SRCS-$(LIBDV)                   += demux_rawdv.c
SRCS-$(LIBNUT)                  += demux_nut.c
SRCS-$(LIBVORBIS)               += demux_ogg.c
SRCS-$(STREAMING_LIVE555)       += demux_rtp.cpp demux_rtp_codec.cpp
SRCS-$(WIN32DLL)                += demux_avs.c
SRCS-$(XMMS_PLUGINS)            += demux_xmms.c

SRCS2 = muxer.c \
        muxer_avi.c \
        muxer_mpeg.c \
        muxer_rawaudio.c \
        muxer_rawvideo.c \

SRCS2-$(CONFIG_LIBAVFORMAT)     += muxer_lavf.c
SRCS2-$(CONFIG_LIBAVFORMAT_SO)  += muxer_lavf.c

LIBAV_INC-$(CONFIG_LIBAVUTIL)   += -I../libavutil
LIBAV_INC-$(CONFIG_LIBAVCODEC)  += -I../libavcodec
LIBAV_INC-$(CONFIG_LIBAVFORMAT) += -I../libavformat

CFLAGS = -I.. -I../stream -I../loader $(LIBAV_INC)

CPLUSPLUSFLAGS  = $(CFLAGS) -D__STDC_LIMIT_MACROS

.cpp.o:
	$(CC) -c $(CPLUSPLUSFLAGS) -o $@ $<

include ../mpcommon.mak