diff options
author | Alexander Tsoy <alexander@tsoy.me> | 2020-06-29 05:59:34 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-06-30 20:47:02 +0300 |
commit | b9fd2007c97413154e16bda01a6d5d5fc0c3bd44 (patch) | |
tree | f96eccc7cf104440bf7427433f2922ff67064041 /sound/usb/card.h | |
parent | 695cf5ab401c1a368fed228ee4a624784cd17fc5 (diff) | |
download | linux-b9fd2007c97413154e16bda01a6d5d5fc0c3bd44.tar.xz |
ALSA: usb-audio: Replace s/frame/packet/ where appropriate
Replace several occurences of "frame" with a "packet" where appropriate.
Signed-off-by: Alexander Tsoy <alexander@tsoy.me>
Link: https://lore.kernel.org/r/20200629025934.154288-2-alexander@tsoy.me
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/card.h')
-rw-r--r-- | sound/usb/card.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/usb/card.h b/sound/usb/card.h index d6219fba9699..de43267b9c8a 100644 --- a/sound/usb/card.h +++ b/sound/usb/card.h @@ -84,10 +84,10 @@ struct snd_usb_endpoint { dma_addr_t sync_dma; /* DMA address of syncbuf */ unsigned int pipe; /* the data i/o pipe */ - unsigned int framesize[2]; /* small/large frame sizes in samples */ - unsigned int sample_rem; /* remainder from division fs/fps */ + unsigned int packsize[2]; /* small/large packet sizes in samples */ + unsigned int sample_rem; /* remainder from division fs/pps */ unsigned int sample_accum; /* sample accumulator */ - unsigned int fps; /* frames per second */ + unsigned int pps; /* packets per second */ unsigned int freqn; /* nominal sampling rate in fs/fps in Q16.16 format */ unsigned int freqm; /* momentary sampling rate in fs/fps in Q16.16 format */ int freqshift; /* how much to shift the feedback value to get Q16.16 */ |