aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/DocBook/media/dvb/video.xml
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2011-06-08 14:39:05 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-07-27 16:52:58 -0400
commitdc05e571725a5a609a29bd84bd020263728ed5e4 (patch)
treeb69a86ef701075cdab5ddb63956764d814520cf6 /Documentation/DocBook/media/dvb/video.xml
parentec77f15caef3f45a6ebc86a569376eb94a94fb03 (diff)
[media] DocBook/video.xml: Fix section references with video.h.xml
Make the reference links at video.h.xml to match the ones at video.xml. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'Documentation/DocBook/media/dvb/video.xml')
-rw-r--r--Documentation/DocBook/media/dvb/video.xml175
1 files changed, 92 insertions, 83 deletions
diff --git a/Documentation/DocBook/media/dvb/video.xml b/Documentation/DocBook/media/dvb/video.xml
index 7bb287e67c8e..ef30f69edf22 100644
--- a/Documentation/DocBook/media/dvb/video.xml
+++ b/Documentation/DocBook/media/dvb/video.xml
@@ -18,15 +18,16 @@ supported on some MPEG decoders made for DVD playback.
18<section id="video_types"> 18<section id="video_types">
19<title>Video Data Types</title> 19<title>Video Data Types</title>
20 20
21<section id="video_format_t"> 21<section id="video-format-t">
22<title>video_format_t</title> 22<title>video_format_t</title>
23<para>The <emphasis role="tt">video_format_t</emphasis> data type defined by 23<para>The <emphasis role="tt">video_format_t</emphasis> data type defined by
24</para> 24</para>
25<programlisting> 25<programlisting>
26 typedef enum { 26typedef enum {
27 VIDEO_FORMAT_4_3, 27 VIDEO_FORMAT_4_3, /&#x22C6; Select 4:3 format &#x22C6;/
28 VIDEO_FORMAT_16_9 28 VIDEO_FORMAT_16_9, /&#x22C6; Select 16:9 format. &#x22C6;/
29 } video_format_t; 29 VIDEO_FORMAT_221_1 /&#x22C6; 2.21:1 &#x22C6;/
30} video_format_t;
30</programlisting> 31</programlisting>
31<para>is used in the VIDEO_SET_FORMAT function (??) to tell the driver which aspect ratio 32<para>is used in the VIDEO_SET_FORMAT function (??) to tell the driver which aspect ratio
32the output hardware (e.g. TV) has. It is also used in the data structures video_status 33the output hardware (e.g. TV) has. It is also used in the data structures video_status
@@ -36,34 +37,36 @@ stream.
36</para> 37</para>
37</section> 38</section>
38 39
39<section id="video_display_format_t"> 40<section id="video-display-format-t">
40<title>video_display_format_t</title> 41<title>video_display_format_t</title>
41<para>In case the display format of the video stream and of the display hardware differ the 42<para>In case the display format of the video stream and of the display hardware differ the
42application has to specify how to handle the cropping of the picture. This can be done using 43application has to specify how to handle the cropping of the picture. This can be done using
43the VIDEO_SET_DISPLAY_FORMAT call (??) which accepts 44the VIDEO_SET_DISPLAY_FORMAT call (??) which accepts
44</para> 45</para>
45<programlisting> 46<programlisting>
46 typedef enum { 47typedef enum {
47 VIDEO_PAN_SCAN, 48 VIDEO_PAN_SCAN, /&#x22C6; use pan and scan format &#x22C6;/
48 VIDEO_LETTER_BOX, 49 VIDEO_LETTER_BOX, /&#x22C6; use letterbox format &#x22C6;/
49 VIDEO_CENTER_CUT_OUT 50 VIDEO_CENTER_CUT_OUT /&#x22C6; use center cut out format &#x22C6;/
50 } video_display_format_t; 51} video_displayformat_t;
51</programlisting> 52</programlisting>
52<para>as argument. 53<para>as argument.
53</para> 54</para>
54</section> 55</section>
55 56
56<section id="video_stream_source"> 57<section id="video-stream-source-t">
57<title>video stream source</title> 58<title>video stream source</title>
58<para>The video stream source is set through the VIDEO_SELECT_SOURCE call and can take 59<para>The video stream source is set through the VIDEO_SELECT_SOURCE call and can take
59the following values, depending on whether we are replaying from an internal (demuxer) or 60the following values, depending on whether we are replaying from an internal (demuxer) or
60external (user write) source. 61external (user write) source.
61</para> 62</para>
62<programlisting> 63<programlisting>
63 typedef enum { 64typedef enum {
64 VIDEO_SOURCE_DEMUX, 65 VIDEO_SOURCE_DEMUX, /&#x22C6; Select the demux as the main source &#x22C6;/
65 VIDEO_SOURCE_MEMORY 66 VIDEO_SOURCE_MEMORY /&#x22C6; If this source is selected, the stream
66 } video_stream_source_t; 67 comes from the user through the write
68 system call &#x22C6;/
69} video_stream_source_t;
67</programlisting> 70</programlisting>
68<para>VIDEO_SOURCE_DEMUX selects the demultiplexer (fed either by the frontend or the 71<para>VIDEO_SOURCE_DEMUX selects the demultiplexer (fed either by the frontend or the
69DVR device) as the source of the video stream. If VIDEO_SOURCE_MEMORY 72DVR device) as the source of the video stream. If VIDEO_SOURCE_MEMORY
@@ -72,49 +75,55 @@ call.
72</para> 75</para>
73</section> 76</section>
74 77
75<section id="video_play_state"> 78<section id="video-play-state-t">
76<title>video play state</title> 79<title>video play state</title>
77<para>The following values can be returned by the VIDEO_GET_STATUS call representing the 80<para>The following values can be returned by the VIDEO_GET_STATUS call representing the
78state of video playback. 81state of video playback.
79</para> 82</para>
80<programlisting> 83<programlisting>
81 typedef enum { 84typedef enum {
82 VIDEO_STOPPED, 85 VIDEO_STOPPED, /&#x22C6; Video is stopped &#x22C6;/
83 VIDEO_PLAYING, 86 VIDEO_PLAYING, /&#x22C6; Video is currently playing &#x22C6;/
84 VIDEO_FREEZED 87 VIDEO_FREEZED /&#x22C6; Video is freezed &#x22C6;/
85 } video_play_state_t; 88} video_play_state_t;
86</programlisting> 89</programlisting>
87</section> 90</section>
88 91
89<section id="video_event"> 92<section id="video-event">
90<title>struct video_event</title> 93<title>struct video_event</title>
91<para>The following is the structure of a video event as it is returned by the VIDEO_GET_EVENT 94<para>The following is the structure of a video event as it is returned by the VIDEO_GET_EVENT
92call. 95call.
93</para> 96</para>
94<programlisting> 97<programlisting>
95 struct video_event { 98struct video_event {
96 int32_t type; 99 __s32 type;
97 time_t timestamp; 100#define VIDEO_EVENT_SIZE_CHANGED 1
98 union { 101#define VIDEO_EVENT_FRAME_RATE_CHANGED 2
99 video_format_t video_format; 102#define VIDEO_EVENT_DECODER_STOPPED 3
100 } u; 103#define VIDEO_EVENT_VSYNC 4
101 }; 104 __kernel_time_t timestamp;
105 union {
106 video_size_t size;
107 unsigned int frame_rate; /&#x22C6; in frames per 1000sec &#x22C6;/
108 unsigned char vsync_field; /&#x22C6; unknown/odd/even/progressive &#x22C6;/
109 } u;
110};
102</programlisting> 111</programlisting>
103</section> 112</section>
104 113
105<section id="video_status"> 114<section id="video-status">
106<title>struct video_status</title> 115<title>struct video_status</title>
107<para>The VIDEO_GET_STATUS call returns the following structure informing about various 116<para>The VIDEO_GET_STATUS call returns the following structure informing about various
108states of the playback operation. 117states of the playback operation.
109</para> 118</para>
110<programlisting> 119<programlisting>
111 struct video_status { 120struct video_status {
112 boolean video_blank; 121 int video_blank; /&#x22C6; blank video on freeze? &#x22C6;/
113 video_play_state_t play_state; 122 video_play_state_t play_state; /&#x22C6; current state of playback &#x22C6;/
114 video_stream_source_t stream_source; 123 video_stream_source_t stream_source; /&#x22C6; current source (demux/memory) &#x22C6;/
115 video_format_t video_format; 124 video_format_t video_format; /&#x22C6; current aspect ratio of stream &#x22C6;/
116 video_displayformat_t display_format; 125 video_displayformat_t display_format;/&#x22C6; selected cropping mode &#x22C6;/
117 }; 126};
118</programlisting> 127</programlisting>
119<para>If video_blank is set video will be blanked out if the channel is changed or if playback is 128<para>If video_blank is set video will be blanked out if the channel is changed or if playback is
120stopped. Otherwise, the last picture will be displayed. play_state indicates if the video is 129stopped. Otherwise, the last picture will be displayed. play_state indicates if the video is
@@ -127,17 +136,17 @@ device.
127</para> 136</para>
128</section> 137</section>
129 138
130<section id="video_still_picture"> 139<section id="video-still-picture">
131<title>struct video_still_picture</title> 140<title>struct video_still_picture</title>
132<para>An I-frame displayed via the VIDEO_STILLPICTURE call is passed on within the 141<para>An I-frame displayed via the VIDEO_STILLPICTURE call is passed on within the
133following structure. 142following structure.
134</para> 143</para>
135<programlisting> 144<programlisting>
136 /&#x22C6; pointer to and size of a single iframe in memory &#x22C6;/ 145/&#x22C6; pointer to and size of a single iframe in memory &#x22C6;/
137 struct video_still_picture { 146struct video_still_picture {
138 char &#x22C6;iFrame; 147 char &#x22C6;iFrame; /&#x22C6; pointer to a single iframe in memory &#x22C6;/
139 int32_t size; 148 int32_t size;
140 }; 149};
141</programlisting> 150</programlisting>
142</section> 151</section>
143 152
@@ -164,26 +173,26 @@ bits set according to the hardwares capabilities.
164</programlisting> 173</programlisting>
165</section> 174</section>
166 175
167<section id="video_system"> 176<section id="video-system">
168<title>video system</title> 177<title>video system</title>
169<para>A call to VIDEO_SET_SYSTEM sets the desired video system for TV output. The 178<para>A call to VIDEO_SET_SYSTEM sets the desired video system for TV output. The
170following system types can be set: 179following system types can be set:
171</para> 180</para>
172<programlisting> 181<programlisting>
173 typedef enum { 182typedef enum {
174 VIDEO_SYSTEM_PAL, 183 VIDEO_SYSTEM_PAL,
175 VIDEO_SYSTEM_NTSC, 184 VIDEO_SYSTEM_NTSC,
176 VIDEO_SYSTEM_PALN, 185 VIDEO_SYSTEM_PALN,
177 VIDEO_SYSTEM_PALNc, 186 VIDEO_SYSTEM_PALNc,
178 VIDEO_SYSTEM_PALM, 187 VIDEO_SYSTEM_PALM,
179 VIDEO_SYSTEM_NTSC60, 188 VIDEO_SYSTEM_NTSC60,
180 VIDEO_SYSTEM_PAL60, 189 VIDEO_SYSTEM_PAL60,
181 VIDEO_SYSTEM_PALM60 190 VIDEO_SYSTEM_PALM60
182 } video_system_t; 191} video_system_t;
183</programlisting> 192</programlisting>
184</section> 193</section>
185 194
186<section id="video_highlight"> 195<section id="video-highlight">
187<title>struct video_highlight</title> 196<title>struct video_highlight</title>
188<para>Calling the ioctl VIDEO_SET_HIGHLIGHTS posts the SPU highlight information. The 197<para>Calling the ioctl VIDEO_SET_HIGHLIGHTS posts the SPU highlight information. The
189call expects the following format for that information: 198call expects the following format for that information:
@@ -210,7 +219,7 @@ call expects the following format for that information:
210</programlisting> 219</programlisting>
211 220
212</section> 221</section>
213<section id="video_spu"> 222<section id="video-spu">
214<title>video SPU</title> 223<title>video SPU</title>
215<para>Calling VIDEO_SET_SPU deactivates or activates SPU decoding, according to the 224<para>Calling VIDEO_SET_SPU deactivates or activates SPU decoding, according to the
216following format: 225following format:
@@ -224,7 +233,7 @@ following format:
224</programlisting> 233</programlisting>
225 234
226</section> 235</section>
227<section id="video_spu_palette"> 236<section id="video-spu-palette">
228<title>video SPU palette</title> 237<title>video SPU palette</title>
229<para>The following structure is used to set the SPU palette by calling VIDEO_SPU_PALETTE: 238<para>The following structure is used to set the SPU palette by calling VIDEO_SPU_PALETTE:
230</para> 239</para>
@@ -237,7 +246,7 @@ following format:
237</programlisting> 246</programlisting>
238 247
239</section> 248</section>
240<section id="video_navi_pack"> 249<section id="video-navi-pack">
241<title>video NAVI pack</title> 250<title>video NAVI pack</title>
242<para>In order to get the navigational data the following structure has to be passed to the ioctl 251<para>In order to get the navigational data the following structure has to be passed to the ioctl
243VIDEO_GET_NAVI: 252VIDEO_GET_NAVI:
@@ -252,7 +261,7 @@ VIDEO_GET_NAVI:
252</section> 261</section>
253 262
254 263
255<section id="video_attributes"> 264<section id="video-attributes-t">
256<title>video attributes</title> 265<title>video attributes</title>
257<para>The following attributes can be set by a call to VIDEO_SET_ATTRIBUTES: 266<para>The following attributes can be set by a call to VIDEO_SET_ATTRIBUTES:
258</para> 267</para>
@@ -488,7 +497,7 @@ VIDEO_GET_NAVI:
488</entry> 497</entry>
489 </row></tbody></tgroup></informaltable> 498 </row></tbody></tgroup></informaltable>
490 499
491</section><section 500</section><section id="VIDEO_STOP"
492role="subsection"><title>VIDEO_STOP</title> 501role="subsection"><title>VIDEO_STOP</title>
493<para>DESCRIPTION 502<para>DESCRIPTION
494</para> 503</para>
@@ -562,7 +571,7 @@ role="subsection"><title>VIDEO_STOP</title>
562</entry> 571</entry>
563 </row></tbody></tgroup></informaltable> 572 </row></tbody></tgroup></informaltable>
564 573
565</section><section 574</section><section id="VIDEO_PLAY"
566role="subsection"><title>VIDEO_PLAY</title> 575role="subsection"><title>VIDEO_PLAY</title>
567<para>DESCRIPTION 576<para>DESCRIPTION
568</para> 577</para>
@@ -615,7 +624,7 @@ role="subsection"><title>VIDEO_PLAY</title>
615</entry> 624</entry>
616 </row></tbody></tgroup></informaltable> 625 </row></tbody></tgroup></informaltable>
617 626
618</section><section 627</section><section id="VIDEO_FREEZE"
619role="subsection"><title>VIDEO_FREEZE</title> 628role="subsection"><title>VIDEO_FREEZE</title>
620<para>DESCRIPTION 629<para>DESCRIPTION
621</para> 630</para>
@@ -672,7 +681,7 @@ role="subsection"><title>VIDEO_FREEZE</title>
672</entry> 681</entry>
673 </row></tbody></tgroup></informaltable> 682 </row></tbody></tgroup></informaltable>
674 683
675</section><section 684</section><section id="VIDEO_CONTINUE"
676role="subsection"><title>VIDEO_CONTINUE</title> 685role="subsection"><title>VIDEO_CONTINUE</title>
677<para>DESCRIPTION 686<para>DESCRIPTION
678</para> 687</para>
@@ -725,7 +734,7 @@ role="subsection"><title>VIDEO_CONTINUE</title>
725</entry> 734</entry>
726 </row></tbody></tgroup></informaltable> 735 </row></tbody></tgroup></informaltable>
727 736
728</section><section 737</section><section id="VIDEO_SELECT_SOURCE"
729role="subsection"><title>VIDEO_SELECT_SOURCE</title> 738role="subsection"><title>VIDEO_SELECT_SOURCE</title>
730<para>DESCRIPTION 739<para>DESCRIPTION
731</para> 740</para>
@@ -788,7 +797,7 @@ role="subsection"><title>VIDEO_SELECT_SOURCE</title>
788</entry> 797</entry>
789 </row></tbody></tgroup></informaltable> 798 </row></tbody></tgroup></informaltable>
790 799
791</section><section 800</section><section id="VIDEO_SET_BLANK"
792role="subsection"><title>VIDEO_SET_BLANK</title> 801role="subsection"><title>VIDEO_SET_BLANK</title>
793<para>DESCRIPTION 802<para>DESCRIPTION
794</para> 803</para>
@@ -861,7 +870,7 @@ role="subsection"><title>VIDEO_SET_BLANK</title>
861</entry> 870</entry>
862 </row></tbody></tgroup></informaltable> 871 </row></tbody></tgroup></informaltable>
863 872
864</section><section 873</section><section id="VIDEO_GET_STATUS"
865role="subsection"><title>VIDEO_GET_STATUS</title> 874role="subsection"><title>VIDEO_GET_STATUS</title>
866<para>DESCRIPTION 875<para>DESCRIPTION
867</para> 876</para>
@@ -929,7 +938,7 @@ role="subsection"><title>VIDEO_GET_STATUS</title>
929</entry> 938</entry>
930 </row></tbody></tgroup></informaltable> 939 </row></tbody></tgroup></informaltable>
931 940
932</section><section 941</section><section id="VIDEO_GET_EVENT"
933role="subsection"><title>VIDEO_GET_EVENT</title> 942role="subsection"><title>VIDEO_GET_EVENT</title>
934<para>DESCRIPTION 943<para>DESCRIPTION
935</para> 944</para>
@@ -1018,7 +1027,7 @@ role="subsection"><title>VIDEO_GET_EVENT</title>
1018</entry> 1027</entry>
1019 </row></tbody></tgroup></informaltable> 1028 </row></tbody></tgroup></informaltable>
1020 1029
1021</section><section 1030</section><section id="VIDEO_SET_DISPLAY_FORMAT"
1022role="subsection"><title>VIDEO_SET_DISPLAY_FORMAT</title> 1031role="subsection"><title>VIDEO_SET_DISPLAY_FORMAT</title>
1023<para>DESCRIPTION 1032<para>DESCRIPTION
1024</para> 1033</para>
@@ -1088,7 +1097,7 @@ role="subsection"><title>VIDEO_SET_DISPLAY_FORMAT</title>
1088</entry> 1097</entry>
1089 </row></tbody></tgroup></informaltable> 1098 </row></tbody></tgroup></informaltable>
1090 1099
1091</section><section 1100</section><section id="VIDEO_STILLPICTURE"
1092role="subsection"><title>VIDEO_STILLPICTURE</title> 1101role="subsection"><title>VIDEO_STILLPICTURE</title>
1093<para>DESCRIPTION 1102<para>DESCRIPTION
1094</para> 1103</para>
@@ -1158,7 +1167,7 @@ role="subsection"><title>VIDEO_STILLPICTURE</title>
1158</entry> 1167</entry>
1159 </row></tbody></tgroup></informaltable> 1168 </row></tbody></tgroup></informaltable>
1160 1169
1161</section><section 1170</section><section id="VIDEO_FAST_FORWARD"
1162role="subsection"><title>VIDEO_FAST_FORWARD</title> 1171role="subsection"><title>VIDEO_FAST_FORWARD</title>
1163<para>DESCRIPTION 1172<para>DESCRIPTION
1164</para> 1173</para>
@@ -1232,7 +1241,7 @@ role="subsection"><title>VIDEO_FAST_FORWARD</title>
1232</entry> 1241</entry>
1233 </row></tbody></tgroup></informaltable> 1242 </row></tbody></tgroup></informaltable>
1234 1243
1235</section><section 1244</section><section id="VIDEO_SLOWMOTION"
1236role="subsection"><title>VIDEO_SLOWMOTION</title> 1245role="subsection"><title>VIDEO_SLOWMOTION</title>
1237<para>DESCRIPTION 1246<para>DESCRIPTION
1238</para> 1247</para>
@@ -1306,7 +1315,7 @@ role="subsection"><title>VIDEO_SLOWMOTION</title>
1306</entry> 1315</entry>
1307 </row></tbody></tgroup></informaltable> 1316 </row></tbody></tgroup></informaltable>
1308 1317
1309</section><section 1318</section><section id="VIDEO_GET_CAPABILITIES"
1310role="subsection"><title>VIDEO_GET_CAPABILITIES</title> 1319role="subsection"><title>VIDEO_GET_CAPABILITIES</title>
1311<para>DESCRIPTION 1320<para>DESCRIPTION
1312</para> 1321</para>
@@ -1368,7 +1377,7 @@ role="subsection"><title>VIDEO_GET_CAPABILITIES</title>
1368</entry> 1377</entry>
1369 </row></tbody></tgroup></informaltable> 1378 </row></tbody></tgroup></informaltable>
1370 1379
1371</section><section 1380</section><section id="VIDEO_SET_ID"
1372role="subsection"><title>VIDEO_SET_ID</title> 1381role="subsection"><title>VIDEO_SET_ID</title>
1373<para>DESCRIPTION 1382<para>DESCRIPTION
1374</para> 1383</para>
@@ -1435,7 +1444,7 @@ role="subsection"><title>VIDEO_SET_ID</title>
1435</entry> 1444</entry>
1436 </row></tbody></tgroup></informaltable> 1445 </row></tbody></tgroup></informaltable>
1437 1446
1438</section><section 1447</section><section id="VIDEO_CLEAR_BUFFER"
1439role="subsection"><title>VIDEO_CLEAR_BUFFER</title> 1448role="subsection"><title>VIDEO_CLEAR_BUFFER</title>
1440<para>DESCRIPTION 1449<para>DESCRIPTION
1441</para> 1450</para>
@@ -1479,7 +1488,7 @@ role="subsection"><title>VIDEO_CLEAR_BUFFER</title>
1479</entry> 1488</entry>
1480 </row></tbody></tgroup></informaltable> 1489 </row></tbody></tgroup></informaltable>
1481 1490
1482</section><section 1491</section><section id="VIDEO_SET_STREAMTYPE"
1483role="subsection"><title>VIDEO_SET_STREAMTYPE</title> 1492role="subsection"><title>VIDEO_SET_STREAMTYPE</title>
1484<para>DESCRIPTION 1493<para>DESCRIPTION
1485</para> 1494</para>
@@ -1540,7 +1549,7 @@ role="subsection"><title>VIDEO_SET_STREAMTYPE</title>
1540</entry> 1549</entry>
1541 </row></tbody></tgroup></informaltable> 1550 </row></tbody></tgroup></informaltable>
1542 1551
1543</section><section 1552</section><section id="VIDEO_SET_FORMAT"
1544role="subsection"><title>VIDEO_SET_FORMAT</title> 1553role="subsection"><title>VIDEO_SET_FORMAT</title>
1545<para>DESCRIPTION 1554<para>DESCRIPTION
1546</para> 1555</para>
@@ -1601,7 +1610,7 @@ role="subsection"><title>VIDEO_SET_FORMAT</title>
1601</entry> 1610</entry>
1602 </row></tbody></tgroup></informaltable> 1611 </row></tbody></tgroup></informaltable>
1603 1612
1604</section><section 1613</section><section id="VIDEO_SET_SYSTEM"
1605role="subsection"><title>VIDEO_SET_SYSTEM</title> 1614role="subsection"><title>VIDEO_SET_SYSTEM</title>
1606<para>DESCRIPTION 1615<para>DESCRIPTION
1607</para> 1616</para>
@@ -1663,7 +1672,7 @@ role="subsection"><title>VIDEO_SET_SYSTEM</title>
1663</entry> 1672</entry>
1664 </row></tbody></tgroup></informaltable> 1673 </row></tbody></tgroup></informaltable>
1665 1674
1666</section><section 1675</section><section id="VIDEO_SET_HIGHLIGHT"
1667role="subsection"><title>VIDEO_SET_HIGHLIGHT</title> 1676role="subsection"><title>VIDEO_SET_HIGHLIGHT</title>
1668<para>DESCRIPTION 1677<para>DESCRIPTION
1669</para> 1678</para>
@@ -1723,7 +1732,7 @@ role="subsection"><title>VIDEO_SET_HIGHLIGHT</title>
1723</entry> 1732</entry>
1724 </row></tbody></tgroup></informaltable> 1733 </row></tbody></tgroup></informaltable>
1725 1734
1726</section><section 1735</section><section id="VIDEO_SET_SPU"
1727role="subsection"><title>VIDEO_SET_SPU</title> 1736role="subsection"><title>VIDEO_SET_SPU</title>
1728<para>DESCRIPTION 1737<para>DESCRIPTION
1729</para> 1738</para>
@@ -1785,7 +1794,7 @@ role="subsection"><title>VIDEO_SET_SPU</title>
1785</entry> 1794</entry>
1786 </row></tbody></tgroup></informaltable> 1795 </row></tbody></tgroup></informaltable>
1787 1796
1788</section><section 1797</section><section id="VIDEO_SET_SPU_PALETTE"
1789role="subsection"><title>VIDEO_SET_SPU_PALETTE</title> 1798role="subsection"><title>VIDEO_SET_SPU_PALETTE</title>
1790<para>DESCRIPTION 1799<para>DESCRIPTION
1791</para> 1800</para>
@@ -1845,7 +1854,7 @@ role="subsection"><title>VIDEO_SET_SPU_PALETTE</title>
1845</entry> 1854</entry>
1846 </row></tbody></tgroup></informaltable> 1855 </row></tbody></tgroup></informaltable>
1847 1856
1848</section><section 1857</section><section id="VIDEO_GET_NAVI"
1849role="subsection"><title>VIDEO_GET_NAVI</title> 1858role="subsection"><title>VIDEO_GET_NAVI</title>
1850<para>DESCRIPTION 1859<para>DESCRIPTION
1851</para> 1860</para>
@@ -1907,7 +1916,7 @@ role="subsection"><title>VIDEO_GET_NAVI</title>
1907</entry> 1916</entry>
1908 </row></tbody></tgroup></informaltable> 1917 </row></tbody></tgroup></informaltable>
1909 1918
1910</section><section 1919</section><section id="VIDEO_SET_ATTRIBUTES"
1911role="subsection"><title>VIDEO_SET_ATTRIBUTES</title> 1920role="subsection"><title>VIDEO_SET_ATTRIBUTES</title>
1912<para>DESCRIPTION 1921<para>DESCRIPTION
1913</para> 1922</para>