~ubuntu-branches/ubuntu/maverick/vlc/maverick

« back to all changes in this revision

Viewing changes to modules/video_chroma/Modules.am

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2010-06-25 01:09:16 UTC
  • mfrom: (1.1.30 upstream)
  • Revision ID: james.westby@ubuntu.com-20100625010916-asxhep2mutg6g6pd
Tags: 1.1.0-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - build and install the libx264 plugin
  - add Xb-Npp header to vlc package
  - Add apport hook to include more vlc dependencies in bug reports
* Drop xulrunner patches.
* Drop 502_xulrunner_191.diff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
        i420_rgb_c.h \
7
7
        $(NULL)
8
8
 
9
 
SOURCES_i420_rgb_mmx = \
10
 
        i420_rgb.c \
11
 
        i420_rgb.h \
12
 
        i420_rgb16.c \
13
 
        i420_rgb_mmx.h \
14
 
        $(NULL)
15
 
 
16
 
SOURCES_i420_rgb_sse2 = \
17
 
        i420_rgb.c \
18
 
        i420_rgb.h \
19
 
        i420_rgb16.c \
20
 
        i420_rgb_mmx.h \
21
 
        $(NULL)
22
 
 
23
9
SOURCES_i420_yuy2 = \
24
10
        i420_yuy2.c \
25
11
        i420_yuy2.h \
26
12
        $(NULL)
27
13
 
28
 
SOURCES_i420_yuy2_mmx = \
29
 
        i420_yuy2.c \
30
 
        i420_yuy2.h \
31
 
        $(NULL)
32
 
 
33
 
SOURCES_i420_yuy2_sse2 = \
34
 
        i420_yuy2.c \
35
 
        i420_yuy2.h \
36
 
        $(NULL)
37
 
 
38
 
SOURCES_i420_yuy2_altivec = \
39
 
        i420_yuy2.c \
40
 
        i420_yuy2.h \
41
 
        $(NULL)
42
 
 
43
14
SOURCES_i422_yuy2 = \
44
15
        i422_yuy2.c \
45
16
        i422_yuy2.h \
46
17
        $(NULL)
47
18
 
48
 
SOURCES_i422_yuy2_mmx = \
49
 
        i422_yuy2.c \
50
 
        i422_yuy2.h \
51
 
        $(NULL)
52
 
 
53
 
SOURCES_i422_yuy2_sse2 = \
54
 
        i422_yuy2.c \
55
 
        i422_yuy2.h \
56
 
        $(NULL)
57
 
 
58
19
SOURCES_i422_i420 = \
59
20
        i422_i420.c \
60
21
        $(NULL)
61
22
 
62
 
SOURCES_i420_ymga = \
63
 
        i420_ymga.c \
64
 
        $(NULL)
65
 
 
66
 
SOURCES_i420_ymga_mmx = \
67
 
        i420_ymga.c \
68
 
        $(NULL)
69
 
 
70
23
SOURCES_grey_yuv = \
71
24
        grey_yuv.c \
72
25
        $(NULL)
81
34
 
82
35
libvlc_LTLIBRARIES += \
83
36
        libi420_rgb_plugin.la \
 
37
        libi420_yuy2_plugin.la \
 
38
        libi422_i420_plugin.la \
 
39
        libi422_yuy2_plugin.la \
84
40
        libgrey_yuv_plugin.la \
 
41
        libyuy2_i420_plugin.la \
 
42
        libyuy2_i422_plugin.la \
85
43
        $(NULL)