summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webcodecs/audio-encoder-config.https.any.js
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/webcodecs/audio-encoder-config.https.any.js')
-rw-r--r--testing/web-platform/tests/webcodecs/audio-encoder-config.https.any.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/testing/web-platform/tests/webcodecs/audio-encoder-config.https.any.js b/testing/web-platform/tests/webcodecs/audio-encoder-config.https.any.js
index 3be8eb3f6d..559ff3203b 100644
--- a/testing/web-platform/tests/webcodecs/audio-encoder-config.https.any.js
+++ b/testing/web-platform/tests/webcodecs/audio-encoder-config.https.any.js
@@ -111,6 +111,15 @@ const invalidConfigs = [
},
},
},
+ {
+ comment: 'Bitrate is too low for Opus',
+ config: {
+ codec: 'opus',
+ sampleRate: 48000,
+ numberOfChannels: 2,
+ bitrate: 1,
+ },
+ },
];
invalidConfigs.forEach(entry => {
@@ -138,15 +147,6 @@ invalidConfigs.forEach(entry => {
const validButUnsupportedConfigs = [
{
- comment: 'Bitrate is too low',
- config: {
- codec: 'opus',
- sampleRate: 48000,
- numberOfChannels: 2,
- bitrate: 1,
- },
- },
- {
comment: 'Unrecognized codec',
config: {
codec: 'bogus',