Home
last modified time | relevance | path

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

/openbmc/linux/sound/usb/usx2y/
H A Dusx2yhwdeppcm.c115 shm->playback_iso_head = shm->playback_iso_start; in usx2y_hwdep_urb_play_prepare()
121 counts = shm->captured_iso[shm->playback_iso_head].length / usx2y->stride; in usx2y_hwdep_urb_play_prepare()
127 urb->iso_frame_desc[pack].offset = shm->captured_iso[shm->playback_iso_head].offset; in usx2y_hwdep_urb_play_prepare()
128 urb->iso_frame_desc[pack].length = shm->captured_iso[shm->playback_iso_head].length; in usx2y_hwdep_urb_play_prepare()
132 if (++shm->playback_iso_head >= ARRAY_SIZE(shm->captured_iso)) in usx2y_hwdep_urb_play_prepare()
133 shm->playback_iso_head = 0; in usx2y_hwdep_urb_play_prepare()
H A Dusx2yhwdeppcm.h11 volatile int playback_iso_head; member