diff options
Diffstat (limited to 'src/smpte_subtitle_asset.cc')
| -rw-r--r-- | src/smpte_subtitle_asset.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/smpte_subtitle_asset.cc b/src/smpte_subtitle_asset.cc index a55b91ae..9ff194f8 100644 --- a/src/smpte_subtitle_asset.cc +++ b/src/smpte_subtitle_asset.cc @@ -253,6 +253,13 @@ SMPTESubtitleAsset::read_mxf_descriptor (shared_ptr<ASDCP::TimedText::MXFReader> } _intrinsic_duration = descriptor.ContainerDuration; + /* The thing which is called AssetID in the descriptor is also known as the + * ResourceID of the MXF. We store that, at present just for verification + * purposes. + */ + char id[64]; + Kumu::bin2UUIDhex (descriptor.AssetID, ASDCP::UUIDlen, id, sizeof(id)); + _resource_id = id; } |
