audio_decoder_test_lib/
cvsd.rs1use fidl_fuchsia_media::*;
6use std::path::Path;
7use std::{fs, io};
8use stream_processor_test::*;
9
10pub struct CvsdStream {
12 data: Vec<u8>,
13 chunk_frames: usize,
14}
15
16impl CvsdStream {
17 pub fn from_file(filename: impl AsRef<Path>, chunk_frames: usize) -> io::Result<Self> {
19 Ok(CvsdStream { data: fs::read(filename)?, chunk_frames })
20 }
21 pub fn from_data(data: Vec<u8>, chunk_frames: usize) -> Self {
23 CvsdStream { data, chunk_frames }
24 }
25}
26
27impl ElementaryStream for CvsdStream {
28 fn format_details(&self, version_ordinal: u64) -> FormatDetails {
29 FormatDetails {
30 format_details_version_ordinal: Some(version_ordinal),
31 mime_type: Some(String::from("audio/cvsd")),
32 ..Default::default()
33 }
34 }
35
36 fn is_access_units(&self) -> bool {
37 false
38 }
39
40 fn stream<'a>(&'a self) -> Box<dyn Iterator<Item = ElementaryStreamChunk> + 'a> {
41 Box::new(self.data.chunks(self.chunk_frames).map(|frame| ElementaryStreamChunk {
42 start_access_unit: false,
43 known_end_access_unit: false,
44 data: frame.to_vec(),
45 significance: Significance::Audio(AudioSignificance::Encoded),
46 timestamp: None,
47 }))
48 }
49}