All of lore.kernel.org
 help / color / mirror / Atom feed
* Edirol UA-25 dmix broken at 48 Khz
@ 2007-02-16 10:26 Jean-Michel Pouré
  2007-02-16 11:33 ` Clemens Ladisch
  0 siblings, 1 reply; 4+ messages in thread
From: Jean-Michel Pouré @ 2007-02-16 10:26 UTC (permalink / raw)
  To: Alsa Dev

Dear Friends,

Just a short note to notice that Edirol UA-25 dmix is broken at 48 Khz,
in advance mode.

aplay -D default -v  foobar.wav
ALSA lib pcm_direct.c:897:(snd_pcm_direct_initialize_slave) requested or
auto-format is not available
ALSA lib pcm_dmix.c:876:(snd_pcm_dmix_open) unable to initialize slave
aplay: main:550: audio open error: Argument invalide

Is this a bug?
Should I install Alsa CVS version for the dmix fix?

Kind regards,
Jean-Michel

**************************************************************

My .asoundrc file:
pcm.!default {
   type             plug
   slave.pcm       "softvol"
}
pcm.softvol {
   type            softvol
   slave {
       pcm         "pasymed"
   }
   control {
       name        "SoftMaster"
       card        0
   }
}
#This PCM combining the dmix and dsnoop slaves
pcm.asymed {
      type asym
      playback.pcm "dmix"
      capture.pcm "record_left"
}  
#This PCM should be able to convert recording rates automatically
pcm.pasymed {
      type plug
      slave.pcm "asymed"
}
pcm.record_left {
   type        dsnoop
   ipc_key 234884
   slave {
       pcm     "hw:0,0"
       channels 2
   }
   bindings.0  0
}
pcm.record_right {
   type        dsnoop
   ipc_key 2241234
   slave {
       pcm     "hw:0,0"
       channels 2
   }    
   bindings.0  1
} 



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Edirol UA-25 dmix broken at 48 Khz
  2007-02-16 10:26 Edirol UA-25 dmix broken at 48 Khz Jean-Michel Pouré
@ 2007-02-16 11:33 ` Clemens Ladisch
  2007-02-16 12:09   ` Jean-Michel Pouré
  0 siblings, 1 reply; 4+ messages in thread
From: Clemens Ladisch @ 2007-02-16 11:33 UTC (permalink / raw)
  To: Jean-Michel Pouré, Alsa Dev

Jean-Michel Pouré wrote:
> ALSA lib pcm_direct.c:897:(snd_pcm_direct_initialize_slave) requested or auto-format is not available

You're using an old version of the ALSA library that doesn't yet support
24-bit samples.  Install alsa-lib 1.0.11 or later.


HTH
Clemens

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Edirol UA-25 dmix broken at 48 Khz
  2007-02-16 11:33 ` Clemens Ladisch
@ 2007-02-16 12:09   ` Jean-Michel Pouré
  2007-02-16 13:19     ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Jean-Michel Pouré @ 2007-02-16 12:09 UTC (permalink / raw)
  To: Clemens Ladisch; +Cc: Alsa Dev

Le vendredi 16 février 2007 à 12:33 +0100, Clemens Ladisch a écrit :
> Jean-Michel Pouré wrote:
> ALSA lib pcm_direct.c:897:(snd_pcm_direct_initialize_slave) requested or auto-format is not available
> You're using an old version of the ALSA library that doesn't yet support
> 24-bit samples.  Install alsa-lib 1.0.11 or later.

I am using 1.0.14rc2 and switching to CVS asap.
Kind regards, Jean-Michel


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Alsa-devel mailing list
Alsa-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Edirol UA-25 dmix broken at 48 Khz
  2007-02-16 12:09   ` Jean-Michel Pouré
@ 2007-02-16 13:19     ` Takashi Iwai
  0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2007-02-16 13:19 UTC (permalink / raw)
  To: Jean-Michel Pouré; +Cc: Alsa Dev

At Fri, 16 Feb 2007 13:09:19 +0100,
Jean-Michel Pouré wrote:
> 
> Le vendredi 16 février 2007 à 12:33 +0100, Clemens Ladisch a écrit :
> > Jean-Michel Pouré wrote:
> > ALSA lib pcm_direct.c:897:(snd_pcm_direct_initialize_slave) requested or auto-format is not available
> > You're using an old version of the ALSA library that doesn't yet support
> > 24-bit samples.  Install alsa-lib 1.0.11 or later.
> 
> I am using 1.0.14rc2 and switching to CVS asap.

Use HG instead of CVS...  CVS repo is obsoleted.


Takashi

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-02-16 13:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-02-16 10:26 Edirol UA-25 dmix broken at 48 Khz Jean-Michel Pouré
2007-02-16 11:33 ` Clemens Ladisch
2007-02-16 12:09   ` Jean-Michel Pouré
2007-02-16 13:19     ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.