mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 851530: Part 2 - Added test cases for uLaw and aLaw wave files. r=jya
This commit is contained in:
parent
54c44bcf54
commit
bd8ac92be4
@ -11,6 +11,8 @@ function check_wave(v, enabled) {
|
||||
|
||||
// Supported Wave codecs
|
||||
check("audio/wave; codecs=1", "probably");
|
||||
check("audio/wave; codecs=6", "probably");
|
||||
check("audio/wave; codecs=7", "probably");
|
||||
// "no codecs" should be supported, I guess
|
||||
check("audio/wave; codecs=", "probably");
|
||||
check("audio/wave; codecs=\"\"", "probably");
|
||||
|
@ -158,6 +158,10 @@ var gPlayTests = [
|
||||
{ name:"16bit_wave_extrametadata.wav", type:"audio/x-wav", duration:1.108 },
|
||||
// 24-bit samples
|
||||
{ name:"wavedata_s24.wav", type:"audio/x-wav", duration:1.0 },
|
||||
// aLaw compressed wave file
|
||||
{ name:"wavedata_alaw.wav", type:"audio/x-wav", duration:1.0 },
|
||||
// uLaw compressed wave file
|
||||
{ name:"wavedata_ulaw.wav", type:"audio/x-wav", duration:1.0 },
|
||||
|
||||
// Ogg stream without eof marker
|
||||
{ name:"bug461281.ogg", type:"application/ogg", duration:2.208 },
|
||||
|
@ -557,12 +557,16 @@ support-files =
|
||||
wave_metadata_unknown_tag.wav^headers^
|
||||
wave_metadata_utf8.wav
|
||||
wave_metadata_utf8.wav^headers^
|
||||
wavedata_alaw.wav
|
||||
wavedata_alaw.wav^headers^
|
||||
wavedata_s24.wav
|
||||
wavedata_s24.wav^headers^
|
||||
wavedata_s16.wav
|
||||
wavedata_s16.wav^headers^
|
||||
wavedata_u8.wav
|
||||
wavedata_u8.wav^headers^
|
||||
wavedata_ulaw.wav
|
||||
wavedata_ulaw.wav^headers^
|
||||
|
||||
[test_access_control.html]
|
||||
skip-if = buildapp == 'b2g' && toolkit != 'gonk' # bug 1082984
|
||||
|
BIN
dom/media/test/wavedata_alaw.wav
Normal file
BIN
dom/media/test/wavedata_alaw.wav
Normal file
Binary file not shown.
1
dom/media/test/wavedata_alaw.wav^headers^
Normal file
1
dom/media/test/wavedata_alaw.wav^headers^
Normal file
@ -0,0 +1 @@
|
||||
Cache-Control: no-store
|
BIN
dom/media/test/wavedata_ulaw.wav
Normal file
BIN
dom/media/test/wavedata_ulaw.wav
Normal file
Binary file not shown.
1
dom/media/test/wavedata_ulaw.wav^headers^
Normal file
1
dom/media/test/wavedata_ulaw.wav^headers^
Normal file
@ -0,0 +1 @@
|
||||
Cache-Control: no-store
|
Loading…
Reference in New Issue
Block a user