Skip to content

Commit

Permalink
Information about Dolby Atmos Master ADM Profile checks, part 1 update
Browse files Browse the repository at this point in the history
  • Loading branch information
JeromeMartinez committed Jan 31, 2024
1 parent a6d75a2 commit e938af1
Show file tree
Hide file tree
Showing 2 changed files with 213 additions and 196 deletions.
30 changes: 29 additions & 1 deletion src/MediaConchBundle/Lib/Checks/Checks.php
Original file line number Diff line number Diff line change
Expand Up @@ -2238,7 +2238,7 @@ public function __construct($specId = null, $elementId = null, $fieldId = null,
[ 'General_compliance']
),
new Check(
'<code>(element name)</code> value <code>(element value)</code> shall match the <code>(target attribue name)</code> attribute of an <code>(target element name)</code> element',
'<code>(element name)</code> value <code>(element value)</code> shall match the <code>(target attribue name)</code> attribute of a<code>(target element name)</code> element',
'Error',
[
new Reference(
Expand Down Expand Up @@ -2920,6 +2920,34 @@ public function __construct($specId = null, $elementId = null, $fieldId = null,
),
]
),
new Check(
'<code>(element names)</code> elements are not all present<code> (extra spec name if needed)</code>',
'Error',
[
new Reference(
'Dolby_Atmos_Master_ADM_Profile',
'audioChannelFormat/audioBlockFormat',
null,
'"If any size sub-elements [width, depth, height] are present, then all three sub-elements must be present and set to the same value"',
'Configure the encoder to write a same values, then reencode the content.'
),
new Reference(
'Dolby_Atmos_Master_ADM_Profile',
'audioChannelFormat/audioBlockFormat',
'width'
),
new Reference(
'Dolby_Atmos_Master_ADM_Profile',
'audioChannelFormat/audioBlockFormat',
'height'
),
new Reference(
'Dolby_Atmos_Master_ADM_Profile',
'audioChannelFormat/audioBlockFormat',
'depth'
),
]
),
new Check(
'<code>(element names)</code> element values are not same<code> (extra spec name if needed)</code>',
'Error',
Expand Down
Loading

0 comments on commit e938af1

Please sign in to comment.