diff mbox

audio/alsa: fix comparison between requested and obtained formats

Message ID 20100421082010.GA22649@ftrvxmtrx
State New
Headers show

Commit Message

Serge Ziryukin April 21, 2010, 8:20 a.m. UTC
Trivial patch which uses aud_to_alsafmt to fix comparison
between alsa and internal audio pcm format enum.
---
 audio/alsaaudio.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Aurelien Jarno May 18, 2010, 6:40 p.m. UTC | #1
On Wed, Apr 21, 2010 at 11:20:10AM +0300, Serge Ziryukin wrote:
> Trivial patch which uses aud_to_alsafmt to fix comparison
> between alsa and internal audio pcm format enum.
> ---
>  audio/alsaaudio.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Acked-by: Aurelien Jarno <aurelien@aurel32.net>

> diff --git a/audio/alsaaudio.c b/audio/alsaaudio.c
> index 88344ff..d784476 100644
> --- a/audio/alsaaudio.c
> +++ b/audio/alsaaudio.c
> @@ -666,7 +666,7 @@ static int alsa_open (int in, struct alsa_params_req *req,
>      *handlep = handle;
>  
>      if (conf.verbose &&
> -        (obt->fmt != req->fmt ||
> +        (aud_to_alsafmt(obt->fmt) != req->fmt ||
>           obt->nchannels != req->nchannels ||
>           obt->freq != req->freq)) {
>          dolog ("Audio parameters for %s\n", typ);
> -- 
> 1.7.0.5
>
diff mbox

Patch

diff --git a/audio/alsaaudio.c b/audio/alsaaudio.c
index 88344ff..d784476 100644
--- a/audio/alsaaudio.c
+++ b/audio/alsaaudio.c
@@ -666,7 +666,7 @@  static int alsa_open (int in, struct alsa_params_req *req,
     *handlep = handle;
 
     if (conf.verbose &&
-        (obt->fmt != req->fmt ||
+        (aud_to_alsafmt(obt->fmt) != req->fmt ||
          obt->nchannels != req->nchannels ||
          obt->freq != req->freq)) {
         dolog ("Audio parameters for %s\n", typ);