Skip to content

Commit

Permalink
ALSA: usb-audio: Unify the code for the next packet size calculation
Browse files Browse the repository at this point in the history
There are two places calculating the next packet size for the playback
stream in the exactly same way.  Provide the single helper for this
purpose and use it from both places gracefully.

Tested-by: Keith Milner <[email protected]>
Tested-by: Dylan Robinson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
tiwai committed Nov 23, 2020
1 parent 6aa719d commit 3d58760
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 25 deletions.
40 changes: 24 additions & 16 deletions sound/usb/endpoint.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,13 @@ int snd_usb_endpoint_implicit_feedback_sink(struct snd_usb_endpoint *ep)
}

/*
* For streaming based on information derived from sync endpoints,
* prepare_outbound_urb_sizes() will call slave_next_packet_size() to
* determine the number of samples to be sent in the next packet.
* Return the number of samples to be sent in the next packet
* for streaming based on information derived from sync endpoints
*
* For implicit feedback, slave_next_packet_size() is unused.
* This won't be used for implicit feedback which takes the packet size
* returned from the sync source
*/
int snd_usb_endpoint_slave_next_packet_size(struct snd_usb_endpoint *ep)
static int slave_next_packet_size(struct snd_usb_endpoint *ep)
{
unsigned long flags;
int ret;
Expand All @@ -145,11 +145,10 @@ int snd_usb_endpoint_slave_next_packet_size(struct snd_usb_endpoint *ep)
}

/*
* For adaptive and synchronous endpoints, prepare_outbound_urb_sizes()
* will call next_packet_size() to determine the number of samples to be
* sent in the next packet.
* Return the number of samples to be sent in the next packet
* for adaptive and synchronous endpoints
*/
int snd_usb_endpoint_next_packet_size(struct snd_usb_endpoint *ep)
static int next_packet_size(struct snd_usb_endpoint *ep)
{
int ret;

Expand All @@ -167,6 +166,21 @@ int snd_usb_endpoint_next_packet_size(struct snd_usb_endpoint *ep)
return ret;
}

/*
* snd_usb_endpoint_next_packet_size: Return the number of samples to be sent
* in the next packet
*/
int snd_usb_endpoint_next_packet_size(struct snd_usb_endpoint *ep,
struct snd_urb_ctx *ctx, int idx)
{
if (ctx->packet_size[idx])
return ctx->packet_size[idx];
else if (ep->sync_master)
return slave_next_packet_size(ep);
else
return next_packet_size(ep);
}

static void call_retire_callback(struct snd_usb_endpoint *ep,
struct urb *urb)
{
Expand Down Expand Up @@ -223,13 +237,7 @@ static void prepare_silent_urb(struct snd_usb_endpoint *ep,
unsigned int length;
int counts;

if (ctx->packet_size[i])
counts = ctx->packet_size[i];
else if (ep->sync_master)
counts = snd_usb_endpoint_slave_next_packet_size(ep);
else
counts = snd_usb_endpoint_next_packet_size(ep);

counts = snd_usb_endpoint_next_packet_size(ep, ctx, i);
length = counts * ep->stride; /* number of silent bytes */
offset = offs * ep->stride + extra * i;
urb->iso_frame_desc[i].offset = offset;
Expand Down
4 changes: 2 additions & 2 deletions sound/usb/endpoint.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void snd_usb_endpoint_release(struct snd_usb_endpoint *ep);
void snd_usb_endpoint_free(struct snd_usb_endpoint *ep);

int snd_usb_endpoint_implicit_feedback_sink(struct snd_usb_endpoint *ep);
int snd_usb_endpoint_slave_next_packet_size(struct snd_usb_endpoint *ep);
int snd_usb_endpoint_next_packet_size(struct snd_usb_endpoint *ep);
int snd_usb_endpoint_next_packet_size(struct snd_usb_endpoint *ep,
struct snd_urb_ctx *ctx, int idx);

#endif /* __USBAUDIO_ENDPOINT_H */
8 changes: 1 addition & 7 deletions sound/usb/pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1512,13 +1512,7 @@ static void prepare_playback_urb(struct snd_usb_substream *subs,
spin_lock_irqsave(&subs->lock, flags);
subs->frame_limit += ep->max_urb_frames;
for (i = 0; i < ctx->packets; i++) {
if (ctx->packet_size[i])
counts = ctx->packet_size[i];
else if (ep->sync_master)
counts = snd_usb_endpoint_slave_next_packet_size(ep);
else
counts = snd_usb_endpoint_next_packet_size(ep);

counts = snd_usb_endpoint_next_packet_size(ep, ctx, i);
/* set up descriptor */
urb->iso_frame_desc[i].offset = frames * ep->stride;
urb->iso_frame_desc[i].length = counts * ep->stride;
Expand Down

0 comments on commit 3d58760

Please sign in to comment.