pub struct AlternativeStartupEntryNums {
pub num_output_samples: u16,
pub num_total_samples: u16,
}Expand description
Number of samples in an AlternativeStartupEntry.
Indicates the sample output rate within the
alternative startup sequence. The alternative startup sequence is divided into k consecutive pieces,
where each piece has a constant sample output rate which is unequal to that of the adjacent pieces.
The first piece starts from the sample indicated by first_output_sample. num_output_samples[j]
indicates the number of the output samples of the j-th piece of the alternative startup sequence.
num_total_samples[j] indicates the total number of samples, including those that are not in the
alternative startup sequence, from the first sample in the j-th piece that is output to the earlier one
(in composition order) of the sample that ends the alternative startup sequence and the sample
that immediately precedes the first output sample of the (j+1)th piece.
Fields§
§num_output_samples: u16num_output_samples[j]
num_total_samples: u16num_total_samples[j]