aboutsummaryrefslogtreecommitdiff
path: root/utils/tinyplay.c
diff options
context:
space:
mode:
authordvdli <dvdli@google.com>2020-10-29 15:32:35 +0800
committerdvdli <dvdli@google.com>2020-10-29 15:32:35 +0800
commitc0c5e7534011a9a3d64b74e0f20a3417fbbbc290 (patch)
treef23f8de7ed8680d4922419c74bc340df2213703f /utils/tinyplay.c
parente43e85c1885d935e36c53fc04c4f1660c2b3fd3a (diff)
AOSP CL "tinyalsa: fix typos in tinyplay and asoundlib.h"
commit f451f433520fc154de6e371747f21d2f746da83b author Glenn Kasten <gkasten@google.com> tinyalsa: fix typos in tinyplay and asoundlib.h Test: run tinyplay and look for typos in the output Change-Id: Ieedcc1b7610700aa3d5ff913d5c01105db2c1601
Diffstat (limited to 'utils/tinyplay.c')
-rw-r--r--utils/tinyplay.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/utils/tinyplay.c b/utils/tinyplay.c
index 8b01a1d..c006acc 100644
--- a/utils/tinyplay.c
+++ b/utils/tinyplay.c
@@ -376,8 +376,10 @@ int sample_is_playable(const struct cmd *cmd)
can_play = check_param(params, PCM_PARAM_RATE, cmd->config.rate, "sample rate", "hz");
can_play &= check_param(params, PCM_PARAM_CHANNELS, cmd->config.channels, "sample", " channels");
can_play &= check_param(params, PCM_PARAM_SAMPLE_BITS, cmd->bits, "bits", " bits");
- can_play &= check_param(params, PCM_PARAM_PERIOD_SIZE, cmd->config.period_size, "period size", "");
- can_play &= check_param(params, PCM_PARAM_PERIODS, cmd->config.period_count, "period count", "");
+ can_play &= check_param(params, PCM_PARAM_PERIOD_SIZE, cmd->config.period_size, "period size",
+ " frames");
+ can_play &= check_param(params, PCM_PARAM_PERIODS, cmd->config.period_count, "period count",
+ " frames");
pcm_params_free(params);