annotate dvdread/Makefile @ 23510:a6c619ee9d30

Teletext support for tv:// (v4l and v4l2 only) modified patch from Otvos Attila oattila at chello dot hu Module uses zvbi library for all low-level VBI operations (like I/O with vbi device, converting vbi pages into usefull vbi_page stuctures, rendering them into RGB32 images). All teletext related stuff (except properties, slave commands and rendering osd in text mode or RGB32 rendered teletext pages in spu mode) is implemented in tvi_vbi.c New properties: teletext_page - switching between pages teletext_mode - switch between on/off/opaque/transparent modes teletext_format - (currently read-only) allows to get format info (black/white,gray,text) teletext_half_page - trivial zooming (displaying top/bottom half of teletext page) New slave commands: teletext_add_dec - user interface for jumping to any page by editing page number interactively teletext_go_link - goes though links, specified on current page
author voroshil
date Sun, 10 Jun 2007 00:06:12 +0000
parents 83b333febf31
children 1ac62a61ea56
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7031
a1ff955aa49b importing libmpdvdkit files
arpi
parents:
diff changeset
1 include ../config.mak
a1ff955aa49b importing libmpdvdkit files
arpi
parents:
diff changeset
2
22528
8bcff5c7e387 Give more descriptive names to the source and library variables and split
diego
parents: 21259
diff changeset
3 LIBNAME_COMMON = libdvdread.a
8bcff5c7e387 Give more descriptive names to the source and library variables and split
diego
parents: 21259
diff changeset
4
8bcff5c7e387 Give more descriptive names to the source and library variables and split
diego
parents: 21259
diff changeset
5 SRCS_COMMON = dvd_input.c \
22531
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
6 dvd_reader.c \
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
7 dvd_udf.c \
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
8 ifo_print.c \
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
9 ifo_read.c \
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
10 nav_print.c \
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
11 nav_read.c \
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
12 md5.c \
7031
a1ff955aa49b importing libmpdvdkit files
arpi
parents:
diff changeset
13
22623
83b333febf31 Remove CFLAGS that are already set by configure.
diego
parents: 22535
diff changeset
14 CFLAGS = -D__USE_UNIX98 -D_GNU_SOURCE -DSTDC_HEADERS -DHAVE_LIMITS_H
20805
e5f38c16da31 Allow disabling internal libdvdcss.
diego
parents: 20803
diff changeset
15
22535
3945d813e573 Simplify CFLAGS handling.
diego
parents: 22531
diff changeset
16 CFLAGS-$(DVDCSS_INTERNAL) += -I../libdvdcss -DHAVE_DVDCSS_DVDCSS_H
17187
e2b0c2841643 libdvdread configure script defines __DARWIN__ on darwin to trigger
diego
parents: 16714
diff changeset
17
21259
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents: 21215
diff changeset
18 include ../mpcommon.mak