Constructor that reads samples from a reader
| 19 | |
| 20 | // Constructor that reads samples from a reader |
| 21 | AudioReaderSource::AudioReaderSource(ReaderBase *audio_reader, int64_t starting_frame_number) |
| 22 | : reader(audio_reader), frame_position(starting_frame_number), videoCache(NULL), frame(NULL), |
| 23 | sample_position(0), speed(1), stream_position(0) { |
| 24 | } |
| 25 | |
| 26 | // Destructor |
| 27 | AudioReaderSource::~AudioReaderSource() |
nothing calls this directly
no outgoing calls
no test coverage detected