Rev 1085 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1085 | pj | 1 | # |
2 | # The mpeg library |
||
3 | # |
||
4 | |||
5 | # (see sources for copyrights) |
||
6 | |||
7 | ifndef BASE |
||
8 | BASE=../.. |
||
9 | endif |
||
10 | include $(BASE)/config/config.mk |
||
11 | |||
12 | LIBRARY = mpeg2 |
||
13 | |||
14 | OBJS_PATH = $(BASE)/ports/mpeg2 |
||
15 | |||
16 | DECODER_SRC = util.c \ |
||
17 | video.c \ |
||
18 | parseblock.c \ |
||
19 | motionvector.c \ |
||
20 | decoders.c \ |
||
21 | jrevdct.c \ |
||
22 | wrapper.c \ |
||
23 | gdith.c \ |
||
24 | gdithmni.c \ |
||
25 | readfile.c \ |
||
26 | 16bit.c |
||
27 | |||
28 | DITHER_SRC = fs2.c \ |
||
29 | fs2fast.c \ |
||
30 | fs4.c \ |
||
31 | hybrid.c \ |
||
32 | hybriderr.c \ |
||
33 | 2x2.c \ |
||
34 | gray.c \ |
||
35 | mono.c \ |
||
36 | ordered.c \ |
||
37 | ordered2.c \ |
||
38 | mb_ordered.c |
||
39 | |||
40 | SRCS= $(DECODER_SRC) $(DITHER_SRC) |
||
41 | |||
42 | OBJS= mpeg2dec.o getpic.o motion.o getvlc.o \ |
||
43 | gethdr.o getblk.o getbits.o store.o \ |
||
44 | recon.o spatscal.o idct.o idctref.o \ |
||
45 | display.o systems.o subspic.o verify.o |
||
46 | |||
47 | #C_WARN += -Wno-unused -Wno-uninitialized -Wno-implicit-function-declaration \ |
||
48 | # -Wno-switch -Wno-return-type |
||
49 | |||
50 | #C_DEF += -DNOCONTROLS |
||
51 | #C_INC += -I. |
||
52 | |||
53 | include $(BASE)/config/lib.mk |
||
54 |