Skip to content

Commit

Permalink
fix(HLS): Fix playback of raw AAC (#7641)
Browse files Browse the repository at this point in the history
  • Loading branch information
avelad authored Nov 21, 2024
1 parent 09cfac2 commit 1d9ac65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/media/media_source_engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ shaka.media.MediaSourceEngine = class {
return frame.description ===
'com.apple.streaming.transportStreamTimestamp';
});
if (metadataTimestamp && metadataTimestamp.data) {
if (metadataTimestamp) {
timestamp = Math.round(metadataTimestamp.data) / 1000;
}
/** @private {shaka.extern.ID3Metadata} */
Expand Down

0 comments on commit 1d9ac65

Please sign in to comment.