summaryrefslogtreecommitdiff
path: root/src/audio_out
AgeCommit message (Collapse)Author
2004-12-22rename clashing snd_mixer_waitDaniel Caujolle-Bert
CVS patchset: 7293 CVS date: 2004/12/22 17:51:38
2004-12-20remove all local names beginning with double underscore, because C99Michael Roitzsch
reserves these names for use by the C implementation CVS patchset: 7288 CVS date: 2004/12/20 21:22:18
2004-12-19trying to properly close the polyaudio connectionMiguel Freitas
CVS patchset: 7283 CVS date: 2004/12/19 20:39:06
2004-12-12huge patch ahead: reorganizing config entries with automatic conversionMichael Roitzsch
and backwards compatible translation Sorry, I got a litte tired proof-reading the patch, so their might be bugs lurking around. I will give it some further examination and (as necessary) fixing tomorrow. CVS patchset: 7233 CVS date: 2004/12/12 22:00:47
2004-11-30Fix two errors in the volume <-> %age conversion functions:Darren Salt
- always round to nearest (one did so, but the other rounded down); - %age to volume: add the minimum value afterwards, don't subtract it from the value to be converted (else only min==0 works). CVS patchset: 7169 CVS date: 2004/11/30 19:47:03
2004-11-23do not close the mixer prematurelyMichael Roitzsch
CVS patchset: 7149 CVS date: 2004/11/23 14:40:23
2004-11-22reenables prebuffering when resuming (patch from Lennart)Miguel Freitas
CVS patchset: 7147 CVS date: 2004/11/22 20:26:42
2004-11-19improvements from LennartMiguel Freitas
CVS patchset: 7139 CVS date: 2004/11/19 21:52:33
2004-11-17mind the volume :)Miguel Freitas
CVS patchset: 7129 CVS date: 2004/11/17 01:03:28
2004-11-15polypaudio supportMiguel Freitas
CVS patchset: 7125 CVS date: 2004/11/15 03:58:46
2004-10-29use monotonic clock when availableMiguel Freitas
CVS patchset: 7087 CVS date: 2004/10/29 23:11:37
2004-10-08open and close the mixer device together with the PCM deviceMichael Roitzsch
the DXR3's mixer device sometimes takes too long to open, this will keep the dirver_lock in audio out loop occupied and thus stalls playback; since xine-ui regularly polls the mixer setting, this results in rare but annoying audio dropouts CVS patchset: 7020 CVS date: 2004/10/08 20:32:03
2004-09-06Updates:František Dvořák
- usability MSVC for frontends - remove unistd.h from public headers - add configure option "--with-dxheaders" - install .def file under WIN32 - MSVC port update (some people might want it) CVS patchset: 6944 CVS date: 2004/09/06 18:34:37
2004-09-02Warnings on WIN32.František Dvořák
Compilation fix for CygWin. CVS patchset: 6932 CVS date: 2004/09/02 19:56:40
2004-07-15- I shouldn't blindly commit...Bastien Nocera
plug:front: doesn't work for stereo, but plug:front:default does revert the changes for 4.0 and 5.1 surround as I don't know whether they work correctly with ":default" CVS patchset: 6799 CVS date: 2004/07/15 21:46:51
2004-07-15- remove the "default" keyword for default sound devices, as this keywordBastien Nocera
can break surround systems. It still allows for the default soundcard to be selected via /etc/asound.conf CVS patchset: 6797 CVS date: 2004/07/15 18:16:09
2004-07-14- change the default output device for stereo and surrounds to be "default"Bastien Nocera
rather than "0", so that the default sound output can be overriden easily using /etc/asound.conf CVS patchset: 6795 CVS date: 2004/07/14 23:29:09
2004-07-11- add a work-around for aRts bug:Bastien Nocera
http://bugs.kde.org/show_bug.cgi?id=62603 and filed against Totem bug: http://bugzilla.gnome.org/show_bug.cgi?id=138830 CVS patchset: 6787 CVS date: 2004/07/11 11:23:48
2004-07-05Change "MacOSX" -> "Mac OS X" for human-readable strings (still use MacOSXAndre Pang
internally) CVS patchset: 6771 CVS date: 2004/07/05 01:24:16
2004-06-25- removed a printf() which causes the cause of the printf() to occur moreDaniel Mack
often which then again causes the printf() again... - destroy the mutex in ..._close(); CVS patchset: 6746 CVS date: 2004/06/25 16:19:08
2004-06-22higher output gainDaniel Mack
CVS patchset: 6734 CVS date: 2004/06/22 22:01:25
2004-06-21CoreAudio output: Should call CloseComponent() on the component instances, notAndre Pang
the component itself CVS patchset: 6725 CVS date: 2004/06/21 16:13:10
2004-06-21CoreAudio output driver: build fix for libtool 1.5Andre Pang
CVS patchset: 6724 CVS date: 2004/06/21 15:09:53
2004-06-21CoreAudio output driver: renamed 'CloseAComponent' function to 'CloseComponent'Andre Pang
CVS patchset: 6723 CVS date: 2004/06/21 15:09:24
2004-06-20this is supposedly a booleanMichael Roitzsch
CVS patchset: 6715 CVS date: 2004/06/20 15:04:19
2004-06-12- removed evil exit() lines, they were meant for debugging purposes only,Daniel Mack
of course. - replaced some hard coded values to make coreaudio work with other input formats than 48000/16/2 - coding style and comment cleanups CVS patchset: 6678 CVS date: 2004/06/12 23:13:56
2004-06-12Try to get smaller A/V delayDaniel Mack
CVS patchset: 6675 CVS date: 2004/06/12 19:03:00
2004-06-10Added CoreAudio support for native sound output on MacOSX.Daniel Mack
It makes use of Apple's brand new AudioUnit and is coded in plain C, not Objective-C, so it should not break anything. See http://developer.apple.com/technotes/tn2002/tn2091.html and http://developer.apple.com/documentation/MusicAudio/Reference/CoreAudio/index.html for conceptual documentation about this framework. There is a new configure-flag now called '--enable-coreaudio' which enables the built of this module, the default is not to build it on any platform. So far, only stereo output on the default device is supported, but this might change in future updates. I did my best to keep to xine's coding style, please let me know if I did something wrong. CVS patchset: 6666 CVS date: 2004/06/10 18:33:31
2004-06-03close ↵Miguel Freitas
http://sourceforge.net/tracker/index.php?func=detail&aid=916089&group_id=9655&atid=109655 try to fix http://sourceforge.net/tracker/index.php?func=detail&aid=925723&group_id=9655&atid=109655 CVS patchset: 6634 CVS date: 2004/06/03 13:40:12
2004-06-03this include is obsolete, becauseMichael Roitzsch
1. for current systems, including this is a noop 2. it was used a some time ago to check for CONFIG_DEVFS_FS, but we do not check for this any more, but autodetect devfs at runtime and it is reported by John Nielsen to break builds on some systems CVS patchset: 6633 CVS date: 2004/06/03 12:56:25
2004-05-23rename from AO_CAP_32BITS to AO_CAP_FLOAT32Michael Roitzsch
CVS patchset: 6581 CVS date: 2004/05/23 16:20:56
2004-05-15Some more updates for 24bit sound.James Courtier-Dutton
CVS patchset: 6545 CVS date: 2004/05/15 23:44:25
2004-05-15Minor adjustments to start adding 24bit and 32bit-Float audio sample support.James Courtier-Dutton
CVS patchset: 6544 CVS date: 2004/05/15 20:27:50
2004-05-07extend help string for speaker arrangementMichael Roitzsch
CVS patchset: 6494 CVS date: 2004/05/07 13:37:00
2004-04-30Add "Speaker arrangement" config item support to oss as well.James Courtier-Dutton
Only oss and alsa used the old multi channel config items. CVS patchset: 6467 CVS date: 2004/04/30 12:57:47
2004-04-30Implement a more user friendly "Speaker arrangement" config item.James Courtier-Dutton
CVS patchset: 6463 CVS date: 2004/04/30 03:07:33
2004-04-26Ooops, no debugging and moreMichael Roitzsch
CVS patchset: 6444 CVS date: 2004/04/26 18:01:06
2004-04-26it is now possible to select a different mixer numberMichael Roitzsch
CVS patchset: 6443 CVS date: 2004/04/26 17:57:08
2004-04-23- big endian fix, and delay fixes for the file (wave) audio output pluginBastien Nocera
patch from David Woodhouse <dwmw2@infradead.org> CVS patchset: 6427 CVS date: 2004/04/23 12:41:30
2004-04-14don't give up at first mixer init failure.patch from Ronald Wahl <patchman ↵Daniel Caujolle-Bert
at users.sourceforge.net> CVS patchset: 6403 CVS date: 2004/04/14 21:30:32
2004-04-11typo fixes from FrantisekMichael Roitzsch
CVS patchset: 6395 CVS date: 2004/04/11 15:27:19
2004-04-11thanks to Frantisek for finding the multiline string, but the space should ↵Michael Roitzsch
be there CVS patchset: 6391 CVS date: 2004/04/11 14:41:09
2004-04-10Make xgettext and gcc happy. :-)František Dvořák
CVS patchset: 6386 CVS date: 2004/04/10 18:51:32
2004-04-10improving config help stringsMichael Roitzsch
* for alsa: do not register config entries multiple times just to get the value, use lookup_entry() * for directx: get rid of unused device_name * for OSS: remove mixer config, derive mixer name from device name CVS patchset: 6379 CVS date: 2004/04/10 14:53:42
2004-04-09made GCC happyDaniel Caujolle-Bert
CVS patchset: 6358 CVS date: 2004/04/09 11:48:13
2004-03-21Fix longstanding problem when using xine with alsa's dmix audio out plugin.James Courtier-Dutton
CVS patchset: 6292 CVS date: 2004/03/21 03:29:43
2004-03-20add a boolean "audio.alsa_hw_mixer" entry, on by default, to allow front-endsBastien Nocera
to disable the ALSA event thread CVS patchset: 6291 CVS date: 2004/03/20 20:45:18
2004-03-20Correct device names.James Courtier-Dutton
CVS patchset: 6290 CVS date: 2004/03/20 01:32:29
2004-03-19another try to fix mixer thread deadlock. Don't destroy mixer mutex too ↵Daniel Caujolle-Bert
early (thanks Thibaut!) CVS patchset: 6289 CVS date: 2004/03/19 13:17:47
2004-03-18Fix more messagesPhilipp Hahn
CVS patchset: 6287 CVS date: 2004/03/18 09:07:00