Commit b3ebb717 authored by Rocky Bernstein's avatar Rocky Bernstein

Correct up audio-control stop command.

parent 64716237
...@@ -771,6 +771,11 @@ CDDAClose (vlc_object_t *p_this ) ...@@ -771,6 +771,11 @@ CDDAClose (vlc_object_t *p_this )
cdda_data_t *p_cdda = (cdda_data_t *) p_access->p_sys; cdda_data_t *p_cdda = (cdda_data_t *) p_access->p_sys;
track_t i; track_t i;
#if LIBCDIO_VERSION_NUM >= 73
if (p_cdda->b_audio_ctl)
cdio_audio_stop(p_cdda->p_cdio);
#endif
dbg_print( (INPUT_DBG_CALL|INPUT_DBG_EXT), "" ); dbg_print( (INPUT_DBG_CALL|INPUT_DBG_EXT), "" );
/* Remove playlist titles */ /* Remove playlist titles */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment