From 5fc19d7bd808e8f207550e98eb3949bc53c7598d Mon Sep 17 00:00:00 2001 From: Brad Hards Date: Sun, 13 Jul 2025 11:41:04 +1000 Subject: [PATCH] feat: add text item reference type This is from ISO/IEC 23008-12:2025 (i.e. third edition), Section 6.10.1.1. --- src/boxes/iref.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/boxes/iref.ts b/src/boxes/iref.ts index ae8971f7..9c99c16b 100644 --- a/src/boxes/iref.ts +++ b/src/boxes/iref.ts @@ -21,6 +21,7 @@ const REFERENCE_TYPE_NAMES = { pred: 'Predictively coded item', prem: 'Pre-multiplied item', tbas: 'HEVC tile track base item', + text: 'Text item', thmb: 'Thumbnail image item', }; @@ -45,6 +46,7 @@ export class irefBox extends FullBox { 'pred', 'prem', 'tbas', + 'text', 'thmb', ] as const;