mirror of
https://github.com/mpv-player/mpv
synced 2025-03-05 21:57:39 +00:00
Fix missing cast.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@985 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
5bc44560d0
commit
9a63fa2ce3
@ -573,7 +573,7 @@ if(!filename){
|
||||
printf("Invalid audio output driver name: %s\nUse '-ao help' to get a list of available audio drivers.\n",audio_driver);
|
||||
return 0;
|
||||
}
|
||||
if(dsp) audio_out->control(AOCONTROL_SET_DEVICE,dsp);
|
||||
if(dsp) audio_out->control(AOCONTROL_SET_DEVICE,(int)dsp);
|
||||
|
||||
// check codec.conf
|
||||
if(!parse_codec_cfg(get_path("codecs.conf"))){
|
||||
|
Loading…
Reference in New Issue
Block a user