From 5f827ac126ef98847bf7b3da5068d1046ef14dc3 Mon Sep 17 00:00:00 2001 From: "J. Alexander Treuman" Date: Mon, 7 Aug 2006 20:00:00 +0000 Subject: Ok, don't use memcmp for comparing audio formats! git-svn-id: https://svn.musicpd.org/mpd/trunk@4591 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/audio.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/audio.c b/src/audio.c index 30d9277e6..ca36cb126 100644 --- a/src/audio.c +++ b/src/audio.c @@ -84,7 +84,8 @@ void copyAudioFormat(AudioFormat * dest, AudioFormat * src) int cmpAudioFormat(AudioFormat * f1, AudioFormat * f2) { - if (f1 && f2 && (0 == memcmp(f1, f2, sizeof(AudioFormat)))) + if (f1 && f2 && (f1->sampleRate == f2->sampleRate) && + (f1->bits == f2->bits) && (f1->channels == f2->channels)) return 0; return 1; } -- cgit v1.2.3