Skip to content

Commit

Permalink
Don't use double namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Phencys committed Apr 15, 2024
1 parent 05852bc commit 2f63ffb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions WaveHLSInterop/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function hookRepresentation()
$thisRepresentation,
$this,
'addressableMediaObject',
DASHIF\ValidatorFlags::PreservesOrder
ValidatorFlags::PreservesOrder
);
$validatorWrapper->analyzeSingle(
$thisRepresentation,
Expand All @@ -69,31 +69,31 @@ public function hookRepresentation()
$thisRepresentation,
$this,
'encryptionScheme',
DASHIF\ValidatorFlags::CanExtractEncryption
ValidatorFlags::CanExtractEncryption
);

//Section 4.4 - Presentation Splicing
$validatorWrapper->analyzeSingle(
$thisRepresentation,
$this,
'splicingPoints',
DASHIF\ValidatorFlags::PreservesOrder
ValidatorFlags::PreservesOrder
);

//Section 4.5 - Carriage of Timed EventData
$validatorWrapper->analyzeSingle(
$thisRepresentation,
$this,
'timedEventData',
DASHIF\ValidatorFlags::PreservesOrder
ValidatorFlags::PreservesOrder
);

//Section 4.6 - Rotation of Encryption Keys
$validatorWrapper->analyzeSingle(
$thisRepresentation,
$this,
'keyRotation',
DASHIF\ValidatorFlags::CanExtractEncryption
ValidatorFlags::CanExtractEncryption
);

//Section 4.7 - Carriage of Track Roles
Expand Down

0 comments on commit 2f63ffb

Please sign in to comment.