Mercurial > mplayer.hg
annotate libvo/Makefile @ 22811:25740687a4d3
r22637: Allow to specify frequencies in channels option.
r22747: Explain workaround for -vo gl:scaled-osd -ass image corruption.
r22772: Available interfaces are showed in verbose mode.
r22779: roff fix: escape dash for options
author | kraymer |
---|---|
date | Mon, 26 Mar 2007 12:14:30 +0000 |
parents | 435648b07244 |
children | 3c89c681e0d6 |
rev | line source |
---|---|
19034 | 1 include ../config.mak |
1 | 2 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
3 LIBNAME_COMMON = libosd.a |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
4 LIBNAME_MPLAYER = libvo.a |
21229 | 5 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
6 SRCS_MPLAYER = aspect.c \ |
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
7 geometry.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
8 spuenc.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
9 video_out.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
10 vo_mpegpes.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
11 vo_null.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
12 vo_yuv4mpeg.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
13 $(VO_SRCS) \ |
15772 | 14 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
15 SRCS_MPLAYER-$(EXTERNAL_VIDIX) += vosub_vidix.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
16 SRCS_MPLAYER-$(VIDIX) += vosub_vidix.c |
21285 | 17 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
18 SRCS_COMMON = aclib.c \ |
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
19 osd.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
20 sub.c \ |
21107
790256469dd7
Split libvo.a into two libs so that libosd.a can be used by MEncoder.
diego
parents:
21105
diff
changeset
|
21 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
22 SRCS_COMMON-$(BITMAP_FONT) += font_load.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
23 SRCS_COMMON-$(FREETYPE) += font_load_ft.c |
16331
96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
diego
parents:
16264
diff
changeset
|
24 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21229
diff
changeset
|
25 include ../mpcommon.mak |