Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions src/main/data/audioconfigs.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,17 +184,25 @@
"dcncCode": "ATMOS",
"dcncSortOrder": 11,
"description": "Dolby ATMOS Immersive Audio",
"note": "Deprecated. The IAB code should be used instead."
"note": "Deprecated. The IAB code should be used instead.",
"obsolete": true,
"obsoletedBy": [
"IAB"
]
},
{
"dcncCode": "AURO",
"dcncSortOrder": 12,
"description": "Barco AURO Immersive Audio"
"description": "Barco AURO Immersive Audio",
"note": "Deprecated label and bitstream.",
"obsolete": true
},
{
"dcncCode": "DTSX",
"dcncSortOrder": 13,
"description": "DTS:X Immersive Audio"
"description": "DTS:X Immersive Audio",
"note": "Deprecated label and bitstream.",
"obsolete": true
},
{
"cplMetadata": {
Expand Down
12 changes: 11 additions & 1 deletion src/main/schemas/audioconfigs.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/schema#",
"$id": "http://isdcf.com/ns/json-schemas/registries/audioconfigs/1.0.0-beta.1",
"$id": "http://isdcf.com/ns/json-schemas/registries/audioconfigs/1.0.1",
"$comment": "Copyright, ISDCF <info@isdcf.com>",
"title": "Schema for the Audio Configurations Registry of the ISDCF",
"definitions": {
Expand Down Expand Up @@ -72,6 +72,16 @@
"description": {
"type": "string"
},
"obsolete": {
"type": "boolean",
"const": true
},
"obsoletedBy": {
"type": "array",
"uniqueItems" : true,
"minItems": 1,
"items": { "$ref": "#/definitions/dcncCode" }
},
"cplMetadata": {
"$ref": "#/definitions/cplMetadata"
},
Expand Down