Convert the Web Audio DynamicsCompressorNode fatal assertion to a warning, because it should not be a fatal assertion (no bug)

This commit is contained in:
Ehsan Akhgari 2013-09-30 18:20:03 -04:00
parent 3e28c1b760
commit 40824c7e13

View File

@ -154,7 +154,7 @@ void DynamicsCompressor::process(const AudioChunk* sourceChunk, AudioChunk* dest
break;
default:
// FIXME : support other number of channels.
NS_NOTREACHED("Support other number of channels");
NS_WARNING("Support other number of channels");
destinationChunk->SetNull(WEBAUDIO_BLOCK_SIZE);
return;
}