Home
last modified time | relevance | path

Searched refs:dstbuff (Results 1 – 1 of 1) sorted by relevance

/hardware/intel/audio_media/hdmi/
Dtinyaudio_hw.c569 int32_t* dstbuff = NULL; in out_write() local
599 dstbuff = (int32_t*)malloc(bytes* 2); in out_write()
600 if (!dstbuff) { in out_write()
607 memset(dstbuff,0,bytes * 2); in out_write()
609 outbytes = make_sinkcompliant_buffers((void*)buffer, (void*)dstbuff,bytes); in out_write()
612 if(dstbuff){ in out_write()
613 ret = pcm_write(out->pcm, (void *)dstbuff, outbytes); in out_write()
620 free(dstbuff); in out_write()