diff -ru cdda-0.1.0-orig/audio_decoder.h cdda-0.1.0/audio_decoder.h --- cdda-0.1.0-orig/audio_decoder.h 2006-04-12 21:51:51.000000000 +0200 +++ cdda-0.1.0/audio_decoder.h 2006-04-12 21:52:55.000000000 +0200 @@ -11,7 +11,6 @@ #include #include -#include #include "audio_buffer.h" #ifdef DECODER_FAAD diff -ru cdda-0.1.0-orig/audio_player.c cdda-0.1.0/audio_player.c --- cdda-0.1.0-orig/audio_player.c 2006-04-12 21:51:51.000000000 +0200 +++ cdda-0.1.0/audio_player.c 2006-04-12 21:52:12.000000000 +0200 @@ -368,7 +368,11 @@ } cAudioControl::~cAudioControl() { +#if VDRVERSNUM >= 10338 + cStatus::MsgReplaying(this, "cdda", NULL, false); +#else cStatus::MsgReplaying(this, NULL); +#endif free(mp_replayDescription); delete player; @@ -469,7 +473,11 @@ mp_replayDescription = p_str; p_str = NULL; +#if VDRVERSNUM >= 10338 + cStatus::MsgReplaying(this, mp_replayDescription, NULL, true); +#else cStatus::MsgReplaying(this, mp_replayDescription); +#endif } else free(p_str); diff -ru cdda-0.1.0-orig/cdda_menu.h cdda-0.1.0/cdda_menu.h --- cdda-0.1.0-orig/cdda_menu.h 2006-04-12 21:51:51.000000000 +0200 +++ cdda-0.1.0/cdda_menu.h 2006-04-12 21:52:12.000000000 +0200 @@ -60,7 +60,7 @@ char *mp_newCddbServerFqdn; int m_newCddbServerPort; int m_newInfoView; - const char *m_cddbPrioTxt[3]; + const char *m_cddbPrioTxt[4]; protected: void Store(void); public: