mirror of
https://github.com/mpv-player/mpv
synced 2025-03-23 20:00:56 +00:00
ad_qtaudio: fix use with the libavformat mov demuxer
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32863 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
f04d70ace1
commit
676d5401f3
@ -186,7 +186,11 @@ static int preinit(sh_audio_t *sh){
|
|||||||
unsigned long InputBufferSize=0; //size of the input buffer
|
unsigned long InputBufferSize=0; //size of the input buffer
|
||||||
unsigned long OutputBufferSize=0; //size of the output buffer
|
unsigned long OutputBufferSize=0; //size of the output buffer
|
||||||
unsigned long WantedBufferSize=0; //the size you want your buffers to be
|
unsigned long WantedBufferSize=0; //the size you want your buffers to be
|
||||||
|
void* codecdata = sh->codecdata;
|
||||||
|
|
||||||
|
if (!sh->codecdata_len && sh->wf && sh->wf->cbSize){
|
||||||
|
codecdata = sh->wf + 1;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_QUICKTIME
|
#ifdef CONFIG_QUICKTIME
|
||||||
EnterMovies();
|
EnterMovies();
|
||||||
@ -217,8 +221,8 @@ static int preinit(sh_audio_t *sh){
|
|||||||
mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"SoundConverterOpen:%i\n",error);
|
mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"SoundConverterOpen:%i\n",error);
|
||||||
if(error) return 0;
|
if(error) return 0;
|
||||||
|
|
||||||
if(sh->codecdata){
|
if(codecdata){
|
||||||
error = SoundConverterSetInfo(myConverter,siDecompressionParams,sh->codecdata);
|
error = SoundConverterSetInfo(myConverter,siDecompressionParams,codecdata);
|
||||||
mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"SoundConverterSetInfo:%i\n",error);
|
mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"SoundConverterSetInfo:%i\n",error);
|
||||||
// if(error) return 0;
|
// if(error) return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user