blob: 172d4a96bcc9fc3078e04b9fcc97e4cd12ee04e7 (
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
|
# libsplay - Makefile.am
EXTRA_DIST = mainMpegPlay.cpp README COPYRIGHT \
mmxidct_asm.S copyFunctions.cpp
INCLUDES = $(all_includes)
AM_ASFLAGS = $(DEFS) $(DEFAULT_INCLUDES) $(all_includes) $(INTELCPPFLAG)
AM_CCASFLAGS = $(AM_ASFLAGS)
noinst_LTLIBRARIES = libmpegplay.la
noinst_HEADERS = mpegVideoHeader.h mpegVideoStream.h \
decoderTables.h gop.h \
proto.h \
recon.h startCodes.h \
jrevdct.h \
motionVector.h slice.h \
decoderClass.h \
mmxidct.h \
picture.h mpegExtension.h macroBlock.h \
copyFunctions.h \
mpegVideoBitWindow.h videoDecoder.h \
copyFunctions_asm.h copyFunctions_mmx.h
mpegutildir = $(includedir)/$(THIS_LIB_NAME)/mpegutil
mpegutil_HEADERS = mpegSystemStream.h mpegVideoLength.h \
mpegSystemHeader.h tsSystemStream.h \
psSystemStream.h pesSystemStream.h
libmpegplay_la_SOURCES = mpegVideoHeader.cpp mpegVideoStream.cpp \
globals.cpp jrevdct.cpp \
recon.cpp decoderClass.cpp \
decoderTables.cpp motionVector.cpp \
slice.cpp gop.cpp \
mmxidct.cpp \
mpegSystemHeader.cpp mpegSystemStream.cpp \
picture.cpp mpegExtension.cpp \
macroBlock.cpp \
mpegVideoLength.cpp \
mpegVideoBitWindow.cpp videoDecoder.cpp \
copyFunctions_asm.cpp copyFunctions_mmx.cpp \
mmxidct_asm.S copyFunctions.cpp \
tsSystemStream.cpp psSystemStream.cpp \
pesSystemStream.cpp
|