You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the specs only consider an AudioDecoderConfig as invalid if
1. If codec is empty after stripping leading and trailing ASCII whitespace, return false.
2. If description is [detached], return false.
3. Return true.
It should be:
1. If codec is empty after stripping leading and trailing ASCII whitespace, return false.
2. If description is [detached], return false.
3. If sampleRate or numberOfChannels are equal to zero, return false.
4. Return true.
The text was updated successfully, but these errors were encountered:
jyavenard
changed the title
AudioDecoderConfig.channels and AudioDecoderConfig.sampleRate should be explicitly forbidden to be 0
AudioDecoderConfig.numberOfChannels and AudioDecoderConfig.sampleRate should be explicitly forbidden to be 0
Feb 3, 2025
Similar to #860
Currently the specs only consider an AudioDecoderConfig as invalid if
It should be:
The text was updated successfully, but these errors were encountered: