Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,20 @@ public ADMAudioMetadataSubDescriptorBO(KLVPacket.Header header, ByteProvider byt

/**
* Accessor for the riff_chunk_stream_id_link1 of this ADMAudioMetadataSubDescriptor
* @return a byte array representing the riff_chunk_stream_id_link1 for the ADMAudioMetadataSubDescriptor
* @return a Long value representing the riff_chunk_stream_id_link1 for the ADMAudioMetadataSubDescriptor
*/
public Long getRIFFChunkStreamID_link1(){
return this.riff_chunk_stream_id_link1;
}

/**
* Accessor for the adm_profile_level_batch of this ADMAudioMetadataSubDescriptor
* @return a collection representing the adm_profile_level_batch for the ADMAudioMetadataSubDescriptor
*/
public CompoundDataTypes.MXFCollections.MXFCollection<UL> getADMProfileLevelULBatch(){
return this.adm_profile_level_batch;
}

/**
* A method that returns a string representation of the object.
*
Expand Down
Loading