aboutsummaryrefslogtreecommitdiff
path: root/src/audio_check.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-11-10 17:11:34 +0100
committerMax Kellermann <max@duempel.org>2009-12-02 22:29:50 +0100
commitc412d6251e9cd3abe735b7622af4003502e54f72 (patch)
tree7344c13f62e4cc788c830c05d21bb7b5b47f5866 /src/audio_check.c
parent68c2cfbb4067b2292e1ff1d4e7716ff370903f84 (diff)
audio_format: changed "bits" to "enum sample_format"
This patch prepares support for floating point samples (and probably other formats). It changes the meaning of the "bits" attribute from a bit count to a symbolic value.
Diffstat (limited to 'src/audio_check.c')
-rw-r--r--src/audio_check.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_check.c b/src/audio_check.c
index 4046e886..a843975f 100644
--- a/src/audio_check.c
+++ b/src/audio_check.c
@@ -35,7 +35,7 @@ audio_check_sample_rate(unsigned long sample_rate, GError **error_r)
}
bool
-audio_check_sample_format(unsigned sample_format, GError **error_r)
+audio_check_sample_format(enum sample_format sample_format, GError **error_r)
{
if (!audio_valid_sample_format(sample_format)) {
g_set_error(error_r, audio_format_quark(), 0,
@@ -60,7 +60,7 @@ audio_check_channel_count(unsigned channels, GError **error_r)
bool
audio_format_init_checked(struct audio_format *af, unsigned long sample_rate,
- unsigned sample_format, unsigned channels,
+ enum sample_format sample_format, unsigned channels,
GError **error_r)
{
if (audio_check_sample_rate(sample_rate, error_r) &&