1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-22 19:34:14 +00:00

Whitespace cosmetics: reindent reinit_audio_chain function

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29843 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-11-06 16:16:22 +00:00
parent 89c9b3b769
commit b963af59f1

View File

@ -1637,7 +1637,7 @@ void reinit_audio_chain(void) {
0, // plugin flag 0, // plugin flag
ao_data.samplerate, ao_data.samplerate,
ao_data.channels, ao_data.channels,
ao_data.format,0); ao_data.format, 0);
if(!mpctx->audio_out){ if(!mpctx->audio_out){
mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotInitAO); mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotInitAO);
goto init_error; goto init_error;
@ -1662,7 +1662,7 @@ void reinit_audio_chain(void) {
#endif #endif
mpctx->mixer.audio_out = mpctx->audio_out; mpctx->mixer.audio_out = mpctx->audio_out;
mpctx->mixer.volstep = volstep; mpctx->mixer.volstep = volstep;
return; return;
init_error: init_error:
uninit_player(INITIALIZED_ACODEC|INITIALIZED_AO); // close codec and possibly AO uninit_player(INITIALIZED_ACODEC|INITIALIZED_AO); // close codec and possibly AO