Home
last modified time | relevance | path

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

/hal_espressif-latest/components/driver/deprecated/
Di2s_legacy.c1672 int aim_bytes; in i2s_write_expand() local
1697 aim_bytes = aim_bits / 8; in i2s_write_expand()
1698 zero_bytes = aim_bytes - src_bytes; in i2s_write_expand()
1700 size = size * aim_bytes / src_bytes; in i2s_write_expand()
1701 ESP_LOGD(TAG, "aim_bytes %d src_bytes %d size %d", aim_bytes, src_bytes, size); in i2s_write_expand()
1715 tail = bytes_can_write % aim_bytes; in i2s_write_expand()
1719 for (int j = 0; j < bytes_can_write; j += (aim_bytes - zero_bytes)) { in i2s_write_expand()
1721 memcpy(&data_ptr[j], (const char *)(src + *bytes_written), aim_bytes - zero_bytes); in i2s_write_expand()
1722 (*bytes_written) += (aim_bytes - zero_bytes); in i2s_write_expand()