comparison src/audacious/output.c @ 4755:c6f352d25d27

makeing possible to reinitialize the output plugin from outher plugins
author Paula Stanciu <paula.stanciu@gmail.com>
date Thu, 07 Aug 2008 12:16:46 +0300
parents b3e4f5c31546
children f084f639e962
comparison
equal deleted inserted replaced
4749:b86e9f9663f4 4755:c6f352d25d27
682 AUDDBG("* album gain: %+f dB\n", info.album_gain); 682 AUDDBG("* album gain: %+f dB\n", info.album_gain);
683 AUDDBG("* album peak: %f\n", info.album_peak); 683 AUDDBG("* album peak: %f\n", info.album_peak);
684 684
685 SAD_dither_apply_replaygain(sad_state_from_float, &info, &mode); 685 SAD_dither_apply_replaygain(sad_state_from_float, &info, &mode);
686 } 686 }
687
688 void output_plugin_cleanup(void)
689 {
690 OutputPlugin *op = get_current_output_plugin();
691 op->init();
692 output_close_audio();
693 printf("output plugin cleanupn\n");
694 }
695 void output_plugin_reinit(void)
696 {
697
698 printf("output plugin reinit \n");
699 }