Skip to content

Commit 4c4f7bf

Browse files
aveladjoeyparrish
authored andcommitted
fix(MSS): Fix playback of some MSS streams (#7517)
With this change, no default flags are used. It seems that when a sample has to use the default flags, in Safari, it can cause problems with MSS. With HLS this does not happen. Fixes #7509
1 parent fffe2ce commit 4c4f7bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/util/mp4_generator.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ shaka.util.Mp4Generator = class {
765765
0x00, 0x00, 0x00, 0x01, // default_sample_description_index
766766
0x00, 0x00, 0x00, 0x00, // default_sample_duration
767767
0x00, 0x00, 0x00, 0x00, // default_sample_size
768-
0x00, 0x01, 0x00, 0x01, // default_sample_flags
768+
0x00, 0x00, 0x00, 0x00, // default_sample_flags
769769
]);
770770
return Mp4Generator.box('trex', bytes);
771771
}

0 commit comments

Comments
 (0)