annotate libmpeg2/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 316732ab2b41
children d198ab45f7c9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1 include ../config.mak
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2
22528
8bcff5c7e387 Give more descriptive names to the source and library variables and split
diego
parents: 22527
diff changeset
3 LIBNAME_COMMON = libmpeg2.a
8bcff5c7e387 Give more descriptive names to the source and library variables and split
diego
parents: 22527
diff changeset
4
8bcff5c7e387 Give more descriptive names to the source and library variables and split
diego
parents: 22527
diff changeset
5 SRCS_COMMON = alloc.c \
22531
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
6 cpu_accel.c\
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
7 cpu_state.c \
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
8 decode.c \
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
9 header.c \
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
10 idct.c \
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
11 motion_comp.c \
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
12 slice.c \
9852
47984e3f54ce Importing libmpeg2 from mpeg2dec-0.3.1
arpi
parents: 5515
diff changeset
13
22528
8bcff5c7e387 Give more descriptive names to the source and library variables and split
diego
parents: 22527
diff changeset
14 SRCS_COMMON-$(TARGET_MMX) += idct_mmx.c motion_comp_mmx.c
8bcff5c7e387 Give more descriptive names to the source and library variables and split
diego
parents: 22527
diff changeset
15 SRCS_COMMON-$(TARGET_ALTIVEC) += motion_comp_altivec.c idct_altivec.c
8bcff5c7e387 Give more descriptive names to the source and library variables and split
diego
parents: 22527
diff changeset
16 SRCS_COMMON-$(TARGET_VIS) += motion_comp_vis.c
8bcff5c7e387 Give more descriptive names to the source and library variables and split
diego
parents: 22527
diff changeset
17 SRCS_COMMON-$(TARGET_ARCH_ALPHA) += idct_alpha.c motion_comp_alpha.c
23240
316732ab2b41 compile fix for regression introduced by r23254
gpoirier
parents: 23236
diff changeset
18 SRCS_COMMON-$(TARGET_ARCH_ARMV4L) += motion_comp_arm.c motion_comp_iwmmxt.c motion_comp_arm_s.S
21309
ef59ac68c9b6 FFmpeg-style dependency declaration
diego
parents: 21259
diff changeset
19
21259
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents: 21206
diff changeset
20 include ../mpcommon.mak