diff options
author | Max Kellermann <max@duempel.org> | 2009-07-19 18:18:32 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-07-19 18:18:32 +0200 |
commit | c9d43b4d713d508b6f5b67cfffba9296f9436934 (patch) | |
tree | 70100c28e365a244f5c6a361d2ecda332df2a756 /src/audio_parser.c | |
parent | c5ec035fb4a533ebd9f8c69b085604560d2a5487 (diff) | |
parent | 49ede85827c095d0a6ead0ecb63e83e000a76d4f (diff) | |
download | mpd-c9d43b4d713d508b6f5b67cfffba9296f9436934.tar.gz mpd-c9d43b4d713d508b6f5b67cfffba9296f9436934.tar.xz mpd-c9d43b4d713d508b6f5b67cfffba9296f9436934.zip |
Merge branch 'master' of git://git.infradead.org/users/dwmw2/mpd
Conflicts:
Makefile.am
Diffstat (limited to 'src/audio_parser.c')
-rw-r--r-- | src/audio_parser.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/audio_parser.c b/src/audio_parser.c index 906b0f819..d29f5f449 100644 --- a/src/audio_parser.c +++ b/src/audio_parser.c @@ -41,6 +41,8 @@ audio_format_parse(struct audio_format *dest, const char *src, GError **error) { char *endptr; unsigned long value; + uint32_t rate; + uint8_t bits, channels; audio_format_clear(dest); @@ -61,7 +63,7 @@ audio_format_parse(struct audio_format *dest, const char *src, GError **error) return false; } - dest->sample_rate = value; + rate = value; /* parse sample format */ @@ -81,7 +83,7 @@ audio_format_parse(struct audio_format *dest, const char *src, GError **error) return false; } - dest->bits = value; + bits = value; /* parse channel count */ @@ -93,7 +95,9 @@ audio_format_parse(struct audio_format *dest, const char *src, GError **error) return false; } - dest->channels = value; + channels = value; + + audio_format_init(dest, rate, bits, channels); return true; } |