Ticket #8968: decoders_comments.patch

File decoders_comments.patch, 7.4 KB (added by criezy, 15 years ago)
Line 
1diff -ruN scummvm-20090303-orig/graphics/iff.h scummvm-20090303/graphics/iff.h
2--- scummvm-20090303-orig/graphics/iff.h 2008-04-01 01:19:52.000000000 +0100
3+++ scummvm-20090303/graphics/iff.h 2009-03-03 20:35:54.000000000 +0000
4@@ -22,6 +22,12 @@
5 * $Id: iff.h 30667 2008-01-28 00:14:17Z jvprat $
6 */
7
8+/**
9+ * Bitmap decoder used in engines:
10+ * - parallaction
11+ * - saga
12+ */
13
14 #ifndef GRAPHICS_IFF_H
15 #define GRAPHICS_IFF_H
16diff -ruN scummvm-20090303-orig/graphics/video/dxa_player.h scummvm-20090303/graphics/video/dxa_player.h
17--- scummvm-20090303-orig/graphics/video/dxa_player.h 2009-01-11 07:05:13.000000000 +0000
18+++ scummvm-20090303/graphics/video/dxa_player.h 2009-03-03 20:29:18.000000000 +0000
19@@ -23,6 +23,13 @@
20 *
21 */
22
23+/**
24+ * Video decoder used in engines:
25+ * - agos
26+ * - sword1
27+ * - sword2
28+ */
29+
30 #ifndef GRAPHICS_VIDEO_DXA_PLAYER_H
31 #define GRAPHICS_VIDEO_DXA_PLAYER_H
32
33diff -ruN scummvm-20090303-orig/graphics/video/flic_player.h scummvm-20090303/graphics/video/flic_player.h
34--- scummvm-20090303-orig/graphics/video/flic_player.h 2009-01-27 07:05:11.000000000 +0000
35+++ scummvm-20090303/graphics/video/flic_player.h 2009-03-03 20:31:51.000000000 +0000
36@@ -23,6 +23,12 @@
37 *
38 */
39
40+/**
41+ * Video decoder used in engines:
42+ * - tucker
43+ */
44+
45 #ifndef GRAPHICS_VIDEO_FLICPLAYER_H
46 #define GRAPHICS_VIDEO_FLICPLAYER_H
47
48diff -ruN scummvm-20090303-orig/graphics/video/smk_player.h scummvm-20090303/graphics/video/smk_player.h
49--- scummvm-20090303-orig/graphics/video/smk_player.h 2009-01-11 07:05:13.000000000 +0000
50+++ scummvm-20090303/graphics/video/smk_player.h 2009-03-03 20:30:30.000000000 +0000
51@@ -23,6 +23,15 @@
52 *
53 */
54
55+/**
56+ * Video decoder used in engines:
57+ * - agos
58+ * - saga
59+ * - scumm (he)
60+ * - sword1
61+ * - sword2
62+ */
63+
64 // Based on http://wiki.multimedia.cx/index.php?title=Smacker
65 // and the FFmpeg Smacker decoder (libavcodec/smacker.c), revision 16143
66 // http://svn.ffmpeg.org/ffmpeg/trunk/libavcodec/smacker.c?revision=16143&view=markup
67diff -ruN scummvm-20090303-orig/sound/adpcm.h scummvm-20090303/sound/adpcm.h
68--- scummvm-20090303-orig/sound/adpcm.h 2009-01-28 07:05:08.000000000 +0000
69+++ scummvm-20090303/sound/adpcm.h 2009-03-03 20:37:34.000000000 +0000
70@@ -23,6 +23,14 @@
71 *
72 */
73
74+/**
75+ * Sound decoder used in engines:
76+ * - agos
77+ * - saga
78+ * - scumm
79+ * - tinsel
80+ */
81+
82 #ifndef SOUND_ADPCM_H
83 #define SOUND_ADPCM_H
84
85diff -ruN scummvm-20090303-orig/sound/aiff.h scummvm-20090303/sound/aiff.h
86--- scummvm-20090303-orig/sound/aiff.h 2008-04-01 01:19:39.000000000 +0100
87+++ scummvm-20090303/sound/aiff.h 2009-03-03 20:37:57.000000000 +0000
88@@ -23,6 +23,12 @@
89 *
90 */
91
92+/**
93+ * Sound decoder used in engines:
94+ * - saga
95+ * - sword1
96+ */
97+
98 #ifndef SOUND_AIFF_H
99 #define SOUND_AIFF_H
100
101diff -ruN scummvm-20090303-orig/sound/flac.h scummvm-20090303/sound/flac.h
102--- scummvm-20090303-orig/sound/flac.h 2008-09-05 09:05:12.000000000 +0100
103+++ scummvm-20090303/sound/flac.h 2009-03-03 20:34:00.000000000 +0000
104@@ -23,6 +23,20 @@
105 *
106 */
107
108+/**
109+ * Sound decoder used in engines:
110+ * - agos
111+ * - kyra
112+ * - m4
113+ * - queen
114+ * - saga
115+ * - scumm
116+ * - sword1
117+ * - sword2
118+ * - touche
119+ * - tucker
120+ */
121+
122 #ifndef SOUND_FLAC_H
123 #define SOUND_FLAC_H
124
125diff -ruN scummvm-20090303-orig/sound/fmopl.h scummvm-20090303/sound/fmopl.h
126--- scummvm-20090303-orig/sound/fmopl.h 2009-02-16 08:05:16.000000000 +0000
127+++ scummvm-20090303/sound/fmopl.h 2009-03-03 20:39:17.000000000 +0000
128@@ -25,6 +25,17 @@
129 * Tatsuyuki Satoh. Included from LGPL'ed AdPlug.
130 */
131
132+/**
133+ * Sound decoder used in engines:
134+ * - cine
135+ * - gob
136+ * - igor
137+ * - kyra
138+ * - queen
139+ * - sci
140+ * - sky
141+ */
142
143 #ifndef SOUND_FMOPL_H
144 #define SOUND_FMOPL_H
145diff -ruN scummvm-20090303-orig/sound/iff.h scummvm-20090303/sound/iff.h
146--- scummvm-20090303-orig/sound/iff.h 2008-04-01 01:19:39.000000000 +0100
147+++ scummvm-20090303/sound/iff.h 2009-03-03 20:40:15.000000000 +0000
148@@ -23,6 +23,11 @@
149 *
150 */
151
152+/**
153+ * Sound decoder used in engines:
154+ * - parallaction
155+ */
156+
157 #ifndef SOUND_IFF_H
158 #define SOUND_IFF_H
159
160diff -ruN scummvm-20090303-orig/sound/mods/infogrames.h scummvm-20090303/sound/mods/infogrames.h
161--- scummvm-20090303-orig/sound/mods/infogrames.h 2008-09-06 09:05:11.000000000 +0100
162+++ scummvm-20090303/sound/mods/infogrames.h 2009-03-03 20:43:59.000000000 +0000
163@@ -23,6 +23,11 @@
164 *
165 */
166
167+/**
168+ * Sound decoder used in engines:
169+ * - gob
170+ */
171+
172 #ifndef SOUND_MODS_INFOGRAMES_H
173 #define SOUND_MODS_INFOGRAMES_H
174
175diff -ruN scummvm-20090303-orig/sound/mods/protracker.h scummvm-20090303/sound/mods/protracker.h
176--- scummvm-20090303-orig/sound/mods/protracker.h 2008-04-01 01:19:21.000000000 +0100
177+++ scummvm-20090303/sound/mods/protracker.h 2009-03-03 20:44:23.000000000 +0000
178@@ -23,6 +23,12 @@
179 *
180 */
181
182+/**
183+ * Sound decoder used in engines:
184+ * - agos
185+ * - parallaction
186+ */
187+
188 #ifndef SOUND_MODS_PROTRACKER_H
189 #define SOUND_MODS_PROTRACKER_H
190
191diff -ruN scummvm-20090303-orig/sound/mods/rjp1.h scummvm-20090303/sound/mods/rjp1.h
192--- scummvm-20090303-orig/sound/mods/rjp1.h 2008-04-01 01:19:21.000000000 +0100
193+++ scummvm-20090303/sound/mods/rjp1.h 2009-03-03 20:43:00.000000000 +0000
194@@ -23,6 +23,11 @@
195 *
196 */
197
198+/**
199+ * Sound decoder used in engines:
200+ * - queen
201+ */
202+
203 #ifndef SOUND_MODS_RJP1_H
204 #define SOUND_MODS_RJP1_H
205
206diff -ruN scummvm-20090303-orig/sound/mods/soundfx.h scummvm-20090303/sound/mods/soundfx.h
207--- scummvm-20090303-orig/sound/mods/soundfx.h 2008-04-01 01:19:21.000000000 +0100
208+++ scummvm-20090303/sound/mods/soundfx.h 2009-03-03 20:42:38.000000000 +0000
209@@ -21,6 +21,11 @@
210 *
211 */
212
213+/**
214+ * Sound decoder used in engines:
215+ * - cine
216+ */
217+
218 #ifndef SOUND_MODS_SOUNDFX_H
219 #define SOUND_MODS_SOUNDFX_H
220
221diff -ruN scummvm-20090303-orig/sound/mp3.h scummvm-20090303/sound/mp3.h
222--- scummvm-20090303-orig/sound/mp3.h 2008-09-05 09:05:12.000000000 +0100
223+++ scummvm-20090303/sound/mp3.h 2009-03-03 20:36:53.000000000 +0000
224@@ -23,6 +23,20 @@
225 *
226 */
227
228+/**
229+ * Sound decoder used in engines:
230+ * - agos
231+ * - kyra
232+ * - m4
233+ * - queen
234+ * - saga
235+ * - scumm
236+ * - sword1
237+ * - sword2
238+ * - touche
239+ * - tucker
240+ */
241+
242 #ifndef SOUND_MP3_H
243 #define SOUND_MP3_H
244
245diff -ruN scummvm-20090303-orig/sound/voc.h scummvm-20090303/sound/voc.h
246--- scummvm-20090303-orig/sound/voc.h 2009-01-27 07:05:10.000000000 +0000
247+++ scummvm-20090303/sound/voc.h 2009-03-03 20:41:14.000000000 +0000
248@@ -23,6 +23,18 @@
249 *
250 */
251
252+/**
253+ * Sound decoder used in engines:
254+ * - agos
255+ * - drascula
256+ * - igor
257+ * - kyra
258+ * - made
259+ * - saga
260+ * - scumm
261+ * - touche
262+ */
263+
264 #ifndef SOUND_VOC_H
265 #define SOUND_VOC_H
266
267diff -ruN scummvm-20090303-orig/sound/vorbis.h scummvm-20090303/sound/vorbis.h
268--- scummvm-20090303-orig/sound/vorbis.h 2008-09-05 09:05:12.000000000 +0100
269+++ scummvm-20090303/sound/vorbis.h 2009-03-03 20:36:41.000000000 +0000
270@@ -23,6 +23,20 @@
271 *
272 */
273
274+/**
275+ * Sound decoder used in engines:
276+ * - agos
277+ * - kyra
278+ * - m4
279+ * - queen
280+ * - saga
281+ * - scumm
282+ * - sword1
283+ * - sword2
284+ * - touche
285+ * - tucker
286+ */
287+
288 #ifndef SOUND_VORBIS_H
289 #define SOUND_VORBIS_H
290
291diff -ruN scummvm-20090303-orig/sound/wave.h scummvm-20090303/sound/wave.h
292--- scummvm-20090303-orig/sound/wave.h 2009-01-27 07:05:10.000000000 +0000
293+++ scummvm-20090303/sound/wave.h 2009-03-03 20:42:07.000000000 +0000
294@@ -23,6 +23,17 @@
295 *
296 */
297
298+/**
299+ * Sound decoder used in engines:
300+ * - agos
301+ * - gob
302+ * - saga
303+ * - scumm
304+ * - sword1
305+ * - sword2
306+ * - tucker
307+ */
308+
309 #ifndef SOUND_WAVE_H
310 #define SOUND_WAVE_H
311