HomeSort by relevance Sort by last modified time
    Searched full:audio_vbuffer (Results 1 - 1 of 1) sorted by null

  /device/generic/goldfish/audio/
audio_hw.c 64 typedef struct audio_vbuffer { struct
74 static int audio_vbuffer_init (audio_vbuffer_t * audio_vbuffer, size_t frame_count,
76 if (!audio_vbuffer) {
79 audio_vbuffer->frame_size = frame_size;
80 audio_vbuffer->frame_count = frame_count;
82 audio_vbuffer->data = calloc(bytes, 1);
83 if (!audio_vbuffer->data) {
86 audio_vbuffer->head = 0;
87 audio_vbuffer->tail = 0;
88 audio_vbuffer->live = 0
    [all...]

Completed in 83 milliseconds