* An alsa lib, that works over OSS drivers ?
@ 2004-04-19 13:32 David Balazic
2004-04-19 13:39 ` Prakash K. Cheemplavam
2004-04-19 13:55 ` Jaroslav Kysela
0 siblings, 2 replies; 7+ messages in thread
From: David Balazic @ 2004-04-19 13:32 UTC (permalink / raw)
To: 'alsa-devel@lists.sourceforge.net'
Hi!
I have this idea that migh accelerate the adoption of ALSA.
It is a library ( dynamic ) that implements the ALSA API ( so to
applications it looks like
normal ALSA ), but accesses the hardware over OSS drivers. Like this :
app <--ALSA-API--> this_library <-- OSS-API--> OSS driver <---> sound
hardware
This means that application writers can write to ALSA API and be assured
that their
code will work on both ALSA and OSS systems.
The only thing needed is to install this new library on the OSS system ( the
ALSA systems
will off course work as they are ).
This new library would have the same name and API as the existing alsa
library.
How does this sound ? Feasible ?
Thanks for any reply,
David Balazic
----------------------------------------------------------------------------
-----------
David Balazic mailto:david.balazic@hermes.si
HERMES Softlab http://www.hermes-softlab.com
Zagrebska cesta 104 Phone: +386 2 450 8851
SI-2000 Maribor
Slovenija
----------------------------------------------------------------------------
-----------
"Be excellent to each other." -
Bill S. Preston, Esq. & "Ted" Theodore Logan
----------------------------------------------------------------------------
-----------
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: An alsa lib, that works over OSS drivers ?
2004-04-19 13:32 An alsa lib, that works over OSS drivers ? David Balazic
@ 2004-04-19 13:39 ` Prakash K. Cheemplavam
2004-04-19 13:55 ` Jaroslav Kysela
1 sibling, 0 replies; 7+ messages in thread
From: Prakash K. Cheemplavam @ 2004-04-19 13:39 UTC (permalink / raw)
To: David Balazic; +Cc: 'alsa-devel@lists.sourceforge.net'
David Balazic wrote:
> Hi!
>
> I have this idea that migh accelerate the adoption of ALSA.
>
> It is a library ( dynamic ) that implements the ALSA API ( so to
> applications it looks like
> normal ALSA ), but accesses the hardware over OSS drivers. Like this :
[snip]
AFAIK, such a project already exists. I don't have the url at hand. A
google search should help.
Prakash
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: An alsa lib, that works over OSS drivers ?
2004-04-19 13:32 An alsa lib, that works over OSS drivers ? David Balazic
2004-04-19 13:39 ` Prakash K. Cheemplavam
@ 2004-04-19 13:55 ` Jaroslav Kysela
2004-04-19 16:08 ` Måns Rullgård
1 sibling, 1 reply; 7+ messages in thread
From: Jaroslav Kysela @ 2004-04-19 13:55 UTC (permalink / raw)
To: David Balazic; +Cc: 'alsa-devel@lists.sourceforge.net'
On Mon, 19 Apr 2004, David Balazic wrote:
> This new library would have the same name and API as the existing alsa
> library.
>
> How does this sound ? Feasible ?
It's enough to write OSS plugin to alsa-lib.
Jaroslav
-----
Jaroslav Kysela <perex@suse.cz>
Linux Kernel Sound Maintainer
ALSA Project, SuSE Labs
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: An alsa lib, that works over OSS drivers ?
2004-04-19 13:55 ` Jaroslav Kysela
@ 2004-04-19 16:08 ` Måns Rullgård
0 siblings, 0 replies; 7+ messages in thread
From: Måns Rullgård @ 2004-04-19 16:08 UTC (permalink / raw)
To: alsa-devel
Jaroslav Kysela <perex@suse.cz> writes:
> On Mon, 19 Apr 2004, David Balazic wrote:
>
>> This new library would have the same name and API as the existing alsa
>> library.
>>
>> How does this sound ? Feasible ?
>
> It's enough to write OSS plugin to alsa-lib.
Has it been done?
--
Måns Rullgård
mru@kth.se
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
^ permalink raw reply [flat|nested] 7+ messages in thread
* An alsa lib, that works over OSS drivers ?
@ 2004-04-19 18:01 Me Eby
2004-04-19 18:54 ` Måns Rullgård
0 siblings, 1 reply; 7+ messages in thread
From: Me Eby @ 2004-04-19 18:01 UTC (permalink / raw)
To: Alsa-devel
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=us-ascii, Size: 1736 bytes --]
Can't be done that way. That is why there is an OSS
wrapper for alsa. The OSS drivers do not support
all of the capabilities that ALSA drivers do.
>
> Hi!
>
> I have this idea that migh accelerate the adoption
> of
> ALSA.
>
> It is a library ( dynamic ) that implements the ALSA
> API ( so to
> applications it looks like
> normal ALSA ), but accesses the hardware over OSS
> drivers. Like this :
>
> app <--ALSA-API--> this_library <-- OSS-API--> OSS
> driver <---> sound
> hardware
>
> This means that application writers can write to
> ALSA
> API and be
> assured
> that their
> code will work on both ALSA and OSS systems.
>
> The only thing needed is to install this new library
> on the OSS system
> ( the
> ALSA systems
> will off course work as they are ).
>
> This new library would have the same name and API as
> the existing alsa
> library.
>
> How does this sound ? Feasible ?
>
> Thanks for any reply,
> David Balazic
>
----------------------------------------------------------------------------
> -----------
> David Balazic
> mailto:david.balazic@hermes.si
> HERMES Softlab
> http://www.hermes-softlab.com
> Zagrebska cesta 104 Phone: +386 2 450
> 8851
> SI-2000 Maribor
> Slovenija
__________________________________
Do you Yahoo!?
Yahoo! Photos: High-quality 4x6 digital prints for 25¢
http://photos.yahoo.com/ph/print_splash
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: An alsa lib, that works over OSS drivers ?
2004-04-19 18:01 Me Eby
@ 2004-04-19 18:54 ` Måns Rullgård
2004-04-19 19:11 ` Jaroslav Kysela
0 siblings, 1 reply; 7+ messages in thread
From: Måns Rullgård @ 2004-04-19 18:54 UTC (permalink / raw)
To: alsa-devel
Me Eby <meeby@yahoo.com> writes:
> Can't be done that way. That is why there is an OSS
> wrapper for alsa. The OSS drivers do not support
> all of the capabilities that ALSA drivers do.
So now there's one person saying it can't be done, and another saying
it has been done. There seems to be slight contradiction here.
--
Måns Rullgård
mru@kth.se
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: An alsa lib, that works over OSS drivers ?
2004-04-19 19:11 ` Jaroslav Kysela
@ 2004-04-19 19:24 ` Måns Rullgård
0 siblings, 0 replies; 7+ messages in thread
From: Måns Rullgård @ 2004-04-19 19:24 UTC (permalink / raw)
To: alsa-devel
Jaroslav Kysela <perex@suse.cz> writes:
> On Mon, 19 Apr 2004, M?ns Rullg?rd wrote:
>
>> Me Eby <meeby@yahoo.com> writes:
>>
>> > Can't be done that way. That is why there is an OSS
>> > wrapper for alsa. The OSS drivers do not support
>> > all of the capabilities that ALSA drivers do.
>>
>> So now there's one person saying it can't be done, and another saying
>> it has been done. There seems to be slight contradiction here.
>
> Not really. This comment is for the OSS API->ALSA driver conversion, but
> the former question was for the ALSA API->OSS driver conversion.
They were both replying to the same message, so I assumed they were
referring to the same idea. I must have missed something.
--
Måns Rullgård
mru@kth.se
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2004-04-19 19:24 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-19 13:32 An alsa lib, that works over OSS drivers ? David Balazic
2004-04-19 13:39 ` Prakash K. Cheemplavam
2004-04-19 13:55 ` Jaroslav Kysela
2004-04-19 16:08 ` Måns Rullgård
-- strict thread matches above, loose matches on Subject: below --
2004-04-19 18:01 Me Eby
2004-04-19 18:54 ` Måns Rullgård
2004-04-19 19:11 ` Jaroslav Kysela
2004-04-19 19:24 ` Måns Rullgård
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.