diff --git a/src/add-ons/media/media-add-ons/mixer/AudioMixer.cpp b/src/add-ons/media/media-add-ons/mixer/AudioMixer.cpp index 30135336ca..e4e0c7c749 100644 --- a/src/add-ons/media/media-add-ons/mixer/AudioMixer.cpp +++ b/src/add-ons/media/media-add-ons/mixer/AudioMixer.cpp @@ -475,10 +475,13 @@ AudioMixer::FormatChanged(const media_source &producer, if (fCore->Settings()->RefuseInputFormatChange()) { TRACE("AudioMixer::FormatChanged: input format change refused\n"); - return B_ERROR; + return B_NOT_ALLOWED; } - // XXX we should not apply the format change at this point + // TODO: We should not apply the format change at this point + // TODO: At the moment, this is not implemented at the moment and will just + // crash the media_server. + return B_NOT_SUPPORTED; // tell core about format change fCore->Lock();