Mercurial > mplayer.hg
annotate libmpcodecs/ad_qtaudio.c @ 30993:d3143f6ec4b3
typo fix found by ubitux
author | compn |
---|---|
date | Tue, 13 Apr 2010 01:26:20 +0000 |
parents | ed516abd6137 |
children | 5beb6c13ac7b |
rev | line source |
---|---|
30421
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
1 /* |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
2 * This file is part of MPlayer. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
3 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
7 * (at your option) any later version. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
8 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
12 * GNU General Public License for more details. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
13 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
17 */ |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
18 |
8008 | 19 #include <stdio.h> |
20 #include <stdlib.h> | |
21 #include <unistd.h> | |
22 #include <inttypes.h> | |
23 | |
21260
cc732ceece60
Shouldn't move "#ifdef MACOSX" before #include config.h of course...
uau
parents:
21258
diff
changeset
|
24 #include "config.h" |
28197
45ca1763a540
Reorder #includes and #ifdefs to avoid excessive #ifdeffery.
diego
parents:
27388
diff
changeset
|
25 #include "mp_msg.h" |
45ca1763a540
Reorder #includes and #ifdefs to avoid excessive #ifdeffery.
diego
parents:
27388
diff
changeset
|
26 #include "mpbswap.h" |
45ca1763a540
Reorder #includes and #ifdefs to avoid excessive #ifdeffery.
diego
parents:
27388
diff
changeset
|
27 #include "ad_internal.h" |
21260
cc732ceece60
Shouldn't move "#ifdef MACOSX" before #include config.h of course...
uau
parents:
21258
diff
changeset
|
28 |
27388
ac03760f7fcc
Rename all preprocessor directives related to Apple / Mac OS X.
diego
parents:
26542
diff
changeset
|
29 #ifdef CONFIG_QUICKTIME |
21258
ed01090d1192
Move #include <QuickTime/QuickTimeComponents.h> before internal headers.
uau
parents:
18771
diff
changeset
|
30 #include <QuickTime/QuickTimeComponents.h> |
28197
45ca1763a540
Reorder #includes and #ifdefs to avoid excessive #ifdeffery.
diego
parents:
27388
diff
changeset
|
31 #else |
45ca1763a540
Reorder #includes and #ifdefs to avoid excessive #ifdeffery.
diego
parents:
27388
diff
changeset
|
32 #include "loader/ldt_keeper.h" |
22577
a033e5519802
Include loader/ prefix in #include path everywhere.
diego
parents:
21260
diff
changeset
|
33 #include "loader/wine/windef.h" |
8451 | 34 #endif |
35 | |
30504
cc27da5d7286
Mark all ad_info_t/vd_info_t structure declarations as const.
diego
parents:
30421
diff
changeset
|
36 static const ad_info_t info = { |
8008 | 37 "QuickTime Audio Decoder", |
38 "qtaudio", | |
39 "A'rpi", | |
40 "Sascha Sommer", | |
41 "uses win32 quicktime DLLs" | |
42 }; | |
43 | |
44 LIBAD_EXTERN(qtaudio) | |
45 | |
27388
ac03760f7fcc
Rename all preprocessor directives related to Apple / Mac OS X.
diego
parents:
26542
diff
changeset
|
46 #ifndef CONFIG_QUICKTIME |
8008 | 47 typedef struct OpaqueSoundConverter* SoundConverter; |
48 typedef unsigned long OSType; | |
49 typedef unsigned long UnsignedFixed; | |
50 typedef uint8_t Byte; | |
51 typedef struct SoundComponentData { | |
52 long flags; | |
53 OSType format; | |
54 short numChannels; | |
55 short sampleSize; | |
56 UnsignedFixed sampleRate; | |
57 long sampleCount; | |
58 Byte * buffer; | |
59 long reserved; | |
60 }SoundComponentData; | |
61 | |
62 typedef int (__cdecl* LPFUNC1)(long flag); | |
63 typedef int (__cdecl* LPFUNC2)(const SoundComponentData *, const SoundComponentData *,SoundConverter *); | |
64 typedef int (__cdecl* LPFUNC3)(SoundConverter sc); | |
65 typedef int (__cdecl* LPFUNC4)(void); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29212
diff
changeset
|
66 typedef int (__cdecl* LPFUNC5)(SoundConverter sc, OSType selector,void * infoPtr); |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29212
diff
changeset
|
67 typedef int (__cdecl* LPFUNC6)(SoundConverter sc, |
8008 | 68 unsigned long inputBytesTarget, |
69 unsigned long *inputFrames, | |
70 unsigned long *inputBytes, | |
71 unsigned long *outputBytes ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29212
diff
changeset
|
72 typedef int (__cdecl* LPFUNC7)(SoundConverter sc, |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29212
diff
changeset
|
73 const void *inputPtr, |
8008 | 74 unsigned long inputFrames, |
75 void *outputPtr, | |
76 unsigned long *outputFrames, | |
77 unsigned long *outputBytes ); | |
78 typedef int (__cdecl* LPFUNC8)(SoundConverter sc, | |
79 void *outputPtr, | |
80 unsigned long *outputFrames, | |
81 unsigned long *outputBytes); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29212
diff
changeset
|
82 typedef int (__cdecl* LPFUNC9)(SoundConverter sc) ; |
8008 | 83 |
14528
860f06087aac
preload quicktime.qts, this allows us to ignore the hardcoded path inside the dlls so that quicktime.qts doesn't need to be in the windows system dir, patch by Gianluigi Tiesi <mplayer at netfarm.it>, comments by myself
faust3
parents:
13606
diff
changeset
|
84 static HINSTANCE qtime_qts; // handle to the preloaded quicktime.qts |
8008 | 85 static HINSTANCE qtml_dll; |
86 static LPFUNC1 InitializeQTML; | |
87 static LPFUNC2 SoundConverterOpen; | |
88 static LPFUNC3 SoundConverterClose; | |
89 static LPFUNC4 TerminateQTML; | |
90 static LPFUNC5 SoundConverterSetInfo; | |
91 static LPFUNC6 SoundConverterGetBufferSizes; | |
92 static LPFUNC7 SoundConverterConvertBuffer; | |
93 static LPFUNC8 SoundConverterEndConversion; | |
94 static LPFUNC9 SoundConverterBeginConversion; | |
95 | |
96 #define siDecompressionParams 2002876005 // siDecompressionParams = FOUR_CHAR_CODE('wave') | |
97 | |
98 HMODULE WINAPI LoadLibraryA(LPCSTR); | |
99 FARPROC WINAPI GetProcAddress(HMODULE,LPCSTR); | |
100 int WINAPI FreeLibrary(HMODULE); | |
101 | |
29212
eda346733b8c
Add missing 'void' to parameterless function declarations.
diego
parents:
28197
diff
changeset
|
102 static int loader_init(void) |
8008 | 103 { |
104 | |
9405
a4444e7ee56a
real cygwin support by Sascha Sommer <saschasommer@freenet.de>
alex
parents:
8632
diff
changeset
|
105 #ifdef WIN32_LOADER |
8270 | 106 Setup_LDT_Keeper(); |
107 #endif | |
14528
860f06087aac
preload quicktime.qts, this allows us to ignore the hardcoded path inside the dlls so that quicktime.qts doesn't need to be in the windows system dir, patch by Gianluigi Tiesi <mplayer at netfarm.it>, comments by myself
faust3
parents:
13606
diff
changeset
|
108 //preload quicktime.qts to avoid the problems caused by the hardcoded path inside the dll |
860f06087aac
preload quicktime.qts, this allows us to ignore the hardcoded path inside the dlls so that quicktime.qts doesn't need to be in the windows system dir, patch by Gianluigi Tiesi <mplayer at netfarm.it>, comments by myself
faust3
parents:
13606
diff
changeset
|
109 qtime_qts = LoadLibraryA("QuickTime.qts"); |
860f06087aac
preload quicktime.qts, this allows us to ignore the hardcoded path inside the dlls so that quicktime.qts doesn't need to be in the windows system dir, patch by Gianluigi Tiesi <mplayer at netfarm.it>, comments by myself
faust3
parents:
13606
diff
changeset
|
110 if( qtime_qts == (HMODULE)NULL ) |
860f06087aac
preload quicktime.qts, this allows us to ignore the hardcoded path inside the dlls so that quicktime.qts doesn't need to be in the windows system dir, patch by Gianluigi Tiesi <mplayer at netfarm.it>, comments by myself
faust3
parents:
13606
diff
changeset
|
111 { |
860f06087aac
preload quicktime.qts, this allows us to ignore the hardcoded path inside the dlls so that quicktime.qts doesn't need to be in the windows system dir, patch by Gianluigi Tiesi <mplayer at netfarm.it>, comments by myself
faust3
parents:
13606
diff
changeset
|
112 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"failed loading QuickTime.qts\n" ); |
860f06087aac
preload quicktime.qts, this allows us to ignore the hardcoded path inside the dlls so that quicktime.qts doesn't need to be in the windows system dir, patch by Gianluigi Tiesi <mplayer at netfarm.it>, comments by myself
faust3
parents:
13606
diff
changeset
|
113 return 1; |
860f06087aac
preload quicktime.qts, this allows us to ignore the hardcoded path inside the dlls so that quicktime.qts doesn't need to be in the windows system dir, patch by Gianluigi Tiesi <mplayer at netfarm.it>, comments by myself
faust3
parents:
13606
diff
changeset
|
114 } |
8008 | 115 qtml_dll = LoadLibraryA("qtmlClient.dll"); |
13188 | 116 if( qtml_dll == (HMODULE)NULL ) |
8008 | 117 { |
14528
860f06087aac
preload quicktime.qts, this allows us to ignore the hardcoded path inside the dlls so that quicktime.qts doesn't need to be in the windows system dir, patch by Gianluigi Tiesi <mplayer at netfarm.it>, comments by myself
faust3
parents:
13606
diff
changeset
|
118 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"failed loading qtmlClient.dll\n" ); |
8008 | 119 return 1; |
120 } | |
121 InitializeQTML = (LPFUNC1)GetProcAddress(qtml_dll,"InitializeQTML"); | |
122 if ( InitializeQTML == NULL ) | |
123 { | |
12193 | 124 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"failed geting proc address InitializeQTML\n"); |
8008 | 125 return 1; |
126 } | |
127 SoundConverterOpen = (LPFUNC2)GetProcAddress(qtml_dll,"SoundConverterOpen"); | |
128 if ( SoundConverterOpen == NULL ) | |
129 { | |
12193 | 130 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"failed getting proc address SoundConverterOpen\n"); |
8008 | 131 return 1; |
132 } | |
133 SoundConverterClose = (LPFUNC3)GetProcAddress(qtml_dll,"SoundConverterClose"); | |
134 if ( SoundConverterClose == NULL ) | |
135 { | |
12193 | 136 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"failed getting proc address SoundConverterClose\n"); |
8008 | 137 return 1; |
138 } | |
139 TerminateQTML = (LPFUNC4)GetProcAddress(qtml_dll,"TerminateQTML"); | |
140 if ( TerminateQTML == NULL ) | |
141 { | |
12193 | 142 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"failed getting proc address TerminateQTML\n"); |
8008 | 143 return 1; |
144 } | |
145 SoundConverterSetInfo = (LPFUNC5)GetProcAddress(qtml_dll,"SoundConverterSetInfo"); | |
146 if ( SoundConverterSetInfo == NULL ) | |
147 { | |
12193 | 148 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"failed getting proc address SoundConverterSetInfo\n"); |
8008 | 149 return 1; |
150 } | |
151 SoundConverterGetBufferSizes = (LPFUNC6)GetProcAddress(qtml_dll,"SoundConverterGetBufferSizes"); | |
152 if ( SoundConverterGetBufferSizes == NULL ) | |
153 { | |
12193 | 154 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"failed getting proc address SoundConverterGetBufferSizes\n"); |
8008 | 155 return 1; |
156 } | |
157 SoundConverterConvertBuffer = (LPFUNC7)GetProcAddress(qtml_dll,"SoundConverterConvertBuffer"); | |
158 if ( SoundConverterConvertBuffer == NULL ) | |
159 { | |
12193 | 160 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"failed getting proc address SoundConverterConvertBuffer1\n"); |
8008 | 161 return 1; |
162 } | |
163 SoundConverterEndConversion = (LPFUNC8)GetProcAddress(qtml_dll,"SoundConverterEndConversion"); | |
164 if ( SoundConverterEndConversion == NULL ) | |
165 { | |
12193 | 166 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"failed getting proc address SoundConverterEndConversion\n"); |
8008 | 167 return 1; |
168 } | |
169 SoundConverterBeginConversion = (LPFUNC9)GetProcAddress(qtml_dll,"SoundConverterBeginConversion"); | |
170 if ( SoundConverterBeginConversion == NULL ) | |
171 { | |
12193 | 172 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"failed getting proc address SoundConverterBeginConversion\n"); |
8008 | 173 return 1; |
174 } | |
12193 | 175 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"loader_init DONE???\n"); |
8008 | 176 return 0; |
177 } | |
27388
ac03760f7fcc
Rename all preprocessor directives related to Apple / Mac OS X.
diego
parents:
26542
diff
changeset
|
178 #endif /* #ifndef CONFIG_QUICKTIME */ |
8008 | 179 |
180 static SoundConverter myConverter = NULL; | |
181 static SoundComponentData InputFormatInfo,OutputFormatInfo; | |
182 | |
183 static int InFrameSize; | |
184 static int OutFrameSize; | |
185 | |
186 static int preinit(sh_audio_t *sh){ | |
187 int error; | |
188 unsigned long FramesToGet=0; //how many frames the demuxer has to get | |
189 unsigned long InputBufferSize=0; //size of the input buffer | |
190 unsigned long OutputBufferSize=0; //size of the output buffer | |
191 unsigned long WantedBufferSize=0; //the size you want your buffers to be | |
192 | |
193 | |
27388
ac03760f7fcc
Rename all preprocessor directives related to Apple / Mac OS X.
diego
parents:
26542
diff
changeset
|
194 #ifdef CONFIG_QUICKTIME |
9502
241bba8f60e8
MACOSX support patch, based on Dan Christiansens work
alex
parents:
9405
diff
changeset
|
195 EnterMovies(); |
241bba8f60e8
MACOSX support patch, based on Dan Christiansens work
alex
parents:
9405
diff
changeset
|
196 #else |
8008 | 197 if(loader_init()) return 0; // failed to load DLL |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29212
diff
changeset
|
198 |
12193 | 199 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"loader_init DONE!\n"); |
8008 | 200 |
8159 | 201 error = InitializeQTML(6+16); |
13008 | 202 if(error){ |
203 mp_msg(MSGT_DECAUDIO,MSGL_ERR,"InitializeQTML:%i\n",error); | |
204 return 0; | |
205 } | |
9694 | 206 #endif |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29212
diff
changeset
|
207 |
8008 | 208 OutputFormatInfo.flags = InputFormatInfo.flags = 0; |
209 OutputFormatInfo.sampleCount = InputFormatInfo.sampleCount = 0; | |
210 OutputFormatInfo.buffer = InputFormatInfo.buffer = NULL; | |
211 OutputFormatInfo.reserved = InputFormatInfo.reserved = 0; | |
212 OutputFormatInfo.numChannels = InputFormatInfo.numChannels = sh->wf->nChannels; | |
8159 | 213 InputFormatInfo.sampleSize = sh->wf->wBitsPerSample; |
214 OutputFormatInfo.sampleSize = 16; | |
8008 | 215 OutputFormatInfo.sampleRate = InputFormatInfo.sampleRate = sh->wf->nSamplesPerSec; |
216 InputFormatInfo.format = bswap_32(sh->format); //1363430706;///*1768775988;//*/1902406962;//qdm2//1768775988;//FOUR_CHAR_CODE('ima4'); | |
217 OutputFormatInfo.format = 1313820229;// FOUR_CHAR_CODE('NONE'); | |
218 | |
219 error = SoundConverterOpen(&InputFormatInfo, &OutputFormatInfo, &myConverter); | |
12193 | 220 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"SoundConverterOpen:%i\n",error); |
8008 | 221 if(error) return 0; |
222 | |
223 if(sh->codecdata){ | |
224 error = SoundConverterSetInfo(myConverter,siDecompressionParams,sh->codecdata); | |
12193 | 225 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"SoundConverterSetInfo:%i\n",error); |
8632
9cecfb883d85
don't abort if setparams failed - fixes some Qclp files
arpi
parents:
8451
diff
changeset
|
226 // if(error) return 0; |
8008 | 227 } |
228 | |
229 WantedBufferSize=OutputFormatInfo.numChannels*OutputFormatInfo.sampleRate*2; | |
230 error = SoundConverterGetBufferSizes(myConverter, | |
231 WantedBufferSize,&FramesToGet,&InputBufferSize,&OutputBufferSize); | |
12193 | 232 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"SoundConverterGetBufferSizes:%i\n",error); |
233 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"WantedBufferSize = %li\n",WantedBufferSize); | |
234 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"InputBufferSize = %li\n",InputBufferSize); | |
235 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"OutputBufferSize = %li\n",OutputBufferSize); | |
236 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"FramesToGet = %li\n",FramesToGet); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29212
diff
changeset
|
237 |
8389
e8c51ec86340
fixed in/out framesize rounding bug (causing low-rate QCLP hangup/looping)
arpi
parents:
8270
diff
changeset
|
238 InFrameSize=(InputBufferSize+FramesToGet-1)/FramesToGet; |
8008 | 239 OutFrameSize=OutputBufferSize/FramesToGet; |
240 | |
12193 | 241 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"FrameSize: %i -> %i\n",InFrameSize,OutFrameSize); |
8008 | 242 |
243 error = SoundConverterBeginConversion(myConverter); | |
12193 | 244 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"SoundConverterBeginConversion:%i\n",error); |
8008 | 245 if(error) return 0; |
246 | |
247 sh->audio_out_minsize=OutputBufferSize; | |
248 sh->audio_in_minsize=InputBufferSize; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29212
diff
changeset
|
249 |
8008 | 250 sh->channels=sh->wf->nChannels; |
251 sh->samplerate=sh->wf->nSamplesPerSec; | |
8159 | 252 sh->samplesize=2; //(sh->wf->wBitsPerSample+7)/8; |
8008 | 253 |
254 sh->i_bps=sh->wf->nAvgBytesPerSec; | |
255 //InputBufferSize*WantedBufferSize/OutputBufferSize; | |
256 | |
8159 | 257 if(sh->format==0x3343414D){ |
258 // MACE 3:1 | |
259 sh->ds->ss_div = 2*3; // 1 samples/packet | |
260 sh->ds->ss_mul = sh->channels*2*1; // 1 bytes/packet | |
261 } else | |
262 if(sh->format==0x3643414D){ | |
263 // MACE 6:1 | |
264 sh->ds->ss_div = 2*6; // 1 samples/packet | |
265 sh->ds->ss_mul = sh->channels*2*1; // 1 bytes/packet | |
266 } | |
267 | |
8008 | 268 return 1; // return values: 1=OK 0=ERROR |
269 } | |
270 | |
271 static int init(sh_audio_t *sh_audio){ | |
272 | |
273 return 1; // return values: 1=OK 0=ERROR | |
274 } | |
275 | |
276 static void uninit(sh_audio_t *sh){ | |
277 int error; | |
278 unsigned long ConvertedFrames=0; | |
279 unsigned long ConvertedBytes=0; | |
30614
ed516abd6137
Fix the stack crash(SYS3171) on OS/2 when playing qtaudio/qtvideo.
komh
parents:
30566
diff
changeset
|
280 |
ed516abd6137
Fix the stack crash(SYS3171) on OS/2 when playing qtaudio/qtvideo.
komh
parents:
30566
diff
changeset
|
281 #ifdef WIN32_LOADER |
ed516abd6137
Fix the stack crash(SYS3171) on OS/2 when playing qtaudio/qtvideo.
komh
parents:
30566
diff
changeset
|
282 Setup_FS_Segment(); |
ed516abd6137
Fix the stack crash(SYS3171) on OS/2 when playing qtaudio/qtvideo.
komh
parents:
30566
diff
changeset
|
283 #endif |
ed516abd6137
Fix the stack crash(SYS3171) on OS/2 when playing qtaudio/qtvideo.
komh
parents:
30566
diff
changeset
|
284 |
8008 | 285 error=SoundConverterEndConversion(myConverter,NULL,&ConvertedFrames,&ConvertedBytes); |
12193 | 286 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"SoundConverterEndConversion:%i\n",error); |
8008 | 287 error = SoundConverterClose(myConverter); |
12193 | 288 mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"SoundConverterClose:%i\n",error); |
8389
e8c51ec86340
fixed in/out framesize rounding bug (causing low-rate QCLP hangup/looping)
arpi
parents:
8270
diff
changeset
|
289 // error = TerminateQTML(); |
e8c51ec86340
fixed in/out framesize rounding bug (causing low-rate QCLP hangup/looping)
arpi
parents:
8270
diff
changeset
|
290 // printf("TerminateQTML:%i\n",error); |
e8c51ec86340
fixed in/out framesize rounding bug (causing low-rate QCLP hangup/looping)
arpi
parents:
8270
diff
changeset
|
291 // FreeLibrary( qtml_dll ); |
e8c51ec86340
fixed in/out framesize rounding bug (causing low-rate QCLP hangup/looping)
arpi
parents:
8270
diff
changeset
|
292 // qtml_dll = NULL; |
14528
860f06087aac
preload quicktime.qts, this allows us to ignore the hardcoded path inside the dlls so that quicktime.qts doesn't need to be in the windows system dir, patch by Gianluigi Tiesi <mplayer at netfarm.it>, comments by myself
faust3
parents:
13606
diff
changeset
|
293 // FreeLibrary( qtime_qts ); |
860f06087aac
preload quicktime.qts, this allows us to ignore the hardcoded path inside the dlls so that quicktime.qts doesn't need to be in the windows system dir, patch by Gianluigi Tiesi <mplayer at netfarm.it>, comments by myself
faust3
parents:
13606
diff
changeset
|
294 // qtime_qts = NULL; |
8389
e8c51ec86340
fixed in/out framesize rounding bug (causing low-rate QCLP hangup/looping)
arpi
parents:
8270
diff
changeset
|
295 // printf("qt dll loader uninit done\n"); |
27388
ac03760f7fcc
Rename all preprocessor directives related to Apple / Mac OS X.
diego
parents:
26542
diff
changeset
|
296 #ifdef CONFIG_QUICKTIME |
9502
241bba8f60e8
MACOSX support patch, based on Dan Christiansens work
alex
parents:
9405
diff
changeset
|
297 ExitMovies(); |
241bba8f60e8
MACOSX support patch, based on Dan Christiansens work
alex
parents:
9405
diff
changeset
|
298 #endif |
8008 | 299 } |
300 | |
301 static int decode_audio(sh_audio_t *sh,unsigned char *buf,int minlen,int maxlen){ | |
302 int error; | |
303 unsigned long FramesToGet=0; //how many frames the demuxer has to get | |
304 unsigned long InputBufferSize=0; //size of the input buffer | |
305 unsigned long ConvertedFrames=0; | |
306 unsigned long ConvertedBytes=0; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29212
diff
changeset
|
307 |
30614
ed516abd6137
Fix the stack crash(SYS3171) on OS/2 when playing qtaudio/qtvideo.
komh
parents:
30566
diff
changeset
|
308 #ifdef WIN32_LOADER |
ed516abd6137
Fix the stack crash(SYS3171) on OS/2 when playing qtaudio/qtvideo.
komh
parents:
30566
diff
changeset
|
309 Setup_FS_Segment(); |
ed516abd6137
Fix the stack crash(SYS3171) on OS/2 when playing qtaudio/qtvideo.
komh
parents:
30566
diff
changeset
|
310 #endif |
ed516abd6137
Fix the stack crash(SYS3171) on OS/2 when playing qtaudio/qtvideo.
komh
parents:
30566
diff
changeset
|
311 |
8008 | 312 FramesToGet=minlen/OutFrameSize; |
313 if(FramesToGet*OutFrameSize<minlen && | |
314 (FramesToGet+1)*OutFrameSize<=maxlen) ++FramesToGet; | |
315 if(FramesToGet*InFrameSize>sh->a_in_buffer_size) | |
316 FramesToGet=sh->a_in_buffer_size/InFrameSize; | |
317 | |
318 InputBufferSize=FramesToGet*InFrameSize; | |
319 | |
8159 | 320 // printf("FramesToGet = %li (%li -> %li bytes)\n",FramesToGet, |
321 // InputBufferSize, FramesToGet*OutFrameSize); | |
8008 | 322 |
323 if(InputBufferSize>sh->a_in_buffer_len){ | |
324 int x=demux_read_data(sh->ds,&sh->a_in_buffer[sh->a_in_buffer_len], | |
325 InputBufferSize-sh->a_in_buffer_len); | |
326 if(x>0) sh->a_in_buffer_len+=x; | |
327 if(InputBufferSize>sh->a_in_buffer_len) | |
328 FramesToGet=sh->a_in_buffer_len/InFrameSize; // not enough data! | |
329 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29212
diff
changeset
|
330 |
8159 | 331 // printf("\nSoundConverterConvertBuffer(myConv=%p,inbuf=%p,frames=%d,outbuf=%p,&convframes=%p,&convbytes=%p)\n", |
332 // myConverter,sh->a_in_buffer,FramesToGet,buf,&ConvertedFrames,&ConvertedBytes); | |
8008 | 333 error = SoundConverterConvertBuffer(myConverter,sh->a_in_buffer, |
334 FramesToGet,buf,&ConvertedFrames,&ConvertedBytes); | |
8159 | 335 // printf("SoundConverterConvertBuffer:%i\n",error); |
336 // printf("ConvertedFrames = %li\n",ConvertedFrames); | |
337 // printf("ConvertedBytes = %li\n",ConvertedBytes); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29212
diff
changeset
|
338 |
8389
e8c51ec86340
fixed in/out framesize rounding bug (causing low-rate QCLP hangup/looping)
arpi
parents:
8270
diff
changeset
|
339 // InputBufferSize=(ConvertedBytes/OutFrameSize)*InFrameSize; // FIXME!! |
e8c51ec86340
fixed in/out framesize rounding bug (causing low-rate QCLP hangup/looping)
arpi
parents:
8270
diff
changeset
|
340 InputBufferSize=FramesToGet*InFrameSize; |
8008 | 341 sh->a_in_buffer_len-=InputBufferSize; |
342 if(sh->a_in_buffer_len<0) sh->a_in_buffer_len=0; // should not happen... | |
343 else if(sh->a_in_buffer_len>0){ | |
344 memcpy(sh->a_in_buffer,&sh->a_in_buffer[InputBufferSize],sh->a_in_buffer_len); | |
345 } | |
346 | |
347 return ConvertedBytes; | |
348 } | |
349 | |
350 static int control(sh_audio_t *sh,int cmd,void* arg, ...){ | |
351 // various optional functions you MAY implement: | |
352 return CONTROL_UNKNOWN; | |
353 } |