mirror of
https://github.com/arcodange-org/mediabunny.git
synced 2026-09-27 19:03:46 +02:00
Fix atTimestamps iterator
This commit is contained in:
@@ -42,6 +42,15 @@ export class EncodedVideoSample {
|
||||
});
|
||||
}
|
||||
|
||||
is(otherSample: EncodedVideoSample) {
|
||||
return (
|
||||
this.type === otherSample.type
|
||||
&& this.timestamp === otherSample.timestamp
|
||||
&& this.duration === otherSample.duration
|
||||
&& this.byteLength === otherSample.byteLength
|
||||
);
|
||||
}
|
||||
|
||||
static fromEncodedVideoChunk(chunk: EncodedVideoChunk) {
|
||||
if (typeof EncodedVideoChunk === 'undefined') {
|
||||
throw new Error('Your browser does not support EncodedVideoChunk.');
|
||||
@@ -98,6 +107,15 @@ export class EncodedAudioSample {
|
||||
});
|
||||
}
|
||||
|
||||
is(otherSample: EncodedAudioSample) {
|
||||
return (
|
||||
this.type === otherSample.type
|
||||
&& this.timestamp === otherSample.timestamp
|
||||
&& this.duration === otherSample.duration
|
||||
&& this.byteLength === otherSample.byteLength
|
||||
);
|
||||
}
|
||||
|
||||
static fromEncodedAudioChunk(chunk: EncodedAudioChunk) {
|
||||
if (typeof EncodedAudioChunk === 'undefined') {
|
||||
throw new Error('Your browser does not support EncodedAudioChunk.');
|
||||
|
||||
Reference in New Issue
Block a user