Searched defs:generic_stream_out (Results 1 – 4 of 4) sorted by relevance
44 struct generic_stream_out { struct45 struct audio_stream_out stream; // Constant after init46 pthread_mutex_t lock;47 struct generic_audio_device *dev; // Constant after init48 audio_devices_t device; // Protected by this->lock49 struct audio_config req_config; // Constant after init50 struct pcm_config pcm_config; // Constant after init51 audio_vbuffer_t buffer; // Constant after init52 const char *bus_address; // Extended field. Constant after init53 struct audio_gain gain_stage; // Constant after init[all …]
174 struct generic_stream_out { struct175 struct audio_stream_out stream; // Constant after init176 pthread_mutex_t lock;177 struct generic_audio_device *dev; // Constant after init178 audio_devices_t device; // Protected by this->lock179 struct audio_config req_config; // Constant after init180 struct pcm_config pcm_config; // Constant after init181 audio_vbuffer_t buffer; // Constant after init184 bool standby; // Protected by this->lock185 uint64_t underrun_position; // Protected by this->lock[all …]
171 struct generic_stream_out { struct172 struct audio_stream_out stream; // Constant after init173 pthread_mutex_t lock;174 struct generic_audio_device *dev; // Constant after init175 audio_devices_t device; // Protected by this->lock176 struct audio_config req_config; // Constant after init177 struct pcm_config pcm_config; // Constant after init178 audio_vbuffer_t buffer; // Constant after init181 bool standby; // Protected by this->lock182 uint64_t underrun_position; // Protected by this->lock[all …]
53 struct generic_stream_out { struct69 struct generic_stream_out *out = (struct generic_stream_out *)stream; in out_get_sample_rate() argument