stdex
Additional custom or not Standard C++ covered algorithms
|
Extended cue. More...
#include <stdex/wav.hpp>
Public Attributes | |
uint32_t | duration = 0 |
How many samples from the cue point the region or section spans. | |
id_t | purpose_id = 0 |
What the text is used for. For example a value of "scrp" means script text, and "capt" means close-caption. There are several more purpose IDs, but they are meant to be used with other types of RIFF files (not usually found in WAVE files). | |
uint16_t | country = 0 |
Country code used by texts. | |
uint16_t | language = 0 |
Language code used by texts. | |
uint16_t | dialect = 0 |
Dialect code used by texts. | |
uint16_t | charset = 0 |
Charset used by texts. | |
std::string | description |
Description text. | |
std::string | title |
Title text. | |
std::string | note |
Note text. | |
![]() | |
uint32_t | id = 0 |
Each cue point has a unique identification value used to associate cue points with information in other chunks. For example, a Label chunk contains text that describes a point in the wave file by referencing the associated cue point. | |
uint32_t | position = 0 |
The sample offset associated with the cue point in terms of the sample's position in the final stream of samples generated by the play list. Said in another way, if a play list chunk is specified, the position value is equal to the sample number at which this cue point will occur during playback of the entire play list as defined by the play list's order. If no play list chunk is specified this value should be 0. | |
uint32_t | chunk_id = 0 |
The four byte ID used by the chunk containing the sample that corresponds to this cue point. A Wave file with no play list is always "data". A Wave file with a play list containing both sample data and silence may be either "data" or "slnt". | |
uint32_t | chunk_offset = 0 |
The byte offset into the Wave List Chunk of the chunk containing the sample that corresponds to this cue point. This is the same chunk described by the Data Chunk ID value. If no Wave List Chunk exists in the Wave file, this value is 0. If a Wave List Chunk exists, this is the offset into the "wavl" chunk. The first chunk in the Wave List Chunk would be specified with a value of 0. | |
uint32_t | block_start = 0 |
The byte offset into the "data" or "slnt" Chunk to the start of the block containing the sample. The start of a block is defined as the first byte in uncompressed PCM wave data or the last byte in compressed wave data where decompression can begin to find the value of the corresponding sample value. | |
uint32_t | block_offset = 0 |
An offset into the block (specified by Block Start) for the sample that corresponds to the cue point. In uncompressed PCM waveform data, this is simply the byte offset into the "data" chunk. In compressed waveform data, this value is equal to the number of samples (may or may not be bytes) from the Block Start to the sample that corresponds to the cue point. | |
Extended cue.