New commits:
http://git.directfb.org/?p=core/FusionSound.git;a=commit;h=b17cd4bd7812ab70576ee3cafd449d0c3de4f2c6
commit b17cd4bd7812ab70576ee3cafd449d0c3de4f2c6
Author: Ville Syrjala <[EMAIL PROTECTED]>
Date:   Fri May 18 18:33:15 2007 +0300

    Make it build when $(top_builddir) != $(top_srcdir).

 src/core/Makefile.am |    1 +
 src/misc/Makefile.am |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

http://git.directfb.org/?p=core/FusionSound.git;a=commit;h=06122e78c87fd56edbf0f1dc94c043a5876bd864
commit 06122e78c87fd56edbf0f1dc94c043a5876bd864
Author: Ben Combee <[EMAIL PROTECTED]>
Date:   Thu May 17 05:05:42 2007 +0200

    memset argument order was backwards, so never cleared context structure
    
    
    via git-CVS emulator

 src/media/ifusionsoundmusicprovider.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.directfb.org/?p=core/FusionSound.git;a=commit;h=b893060128eea3953a8b036c8e9f1d68e3ff0d93
commit b893060128eea3953a8b036c8e9f1d68e3ff0d93
Author: Claudio Ciccani <[EMAIL PROTECTED]>
Date:   Wed May 16 10:45:40 2007 +0200

    When waiting on conditions, install a cleanup handler that automatically 
unlocks the mutex. This way calls can be safely canceled.

 src/ifusionsoundplayback.c |    5 ++++-
 src/ifusionsoundstream.c   |    9 ++++++++-
 2 files changed, 12 insertions(+), 2 deletions(-)

http://git.directfb.org/?p=core/FusionSound.git;a=commit;h=a9f77eccfae9a551a16297c167aefa783af741b4
commit a9f77eccfae9a551a16297c167aefa783af741b4
Author: Claudio Ciccani <[EMAIL PROTECTED]>
Date:   Tue May 15 21:33:03 2007 +0200

    By default, if the master must exit and there are still slaves playing,
    the master forks and waits until all playbacks are finished before quitting
    (yes, this was the original behaviour but it didn't work previously).
    
    Added option [no-]wait to specify whether or not the master must wait the 
slaves (in the latter case, slaves will be terminated).
    
    Require DirectFB 1.1.0.

 configure.in            |    2 +-
 docs/fusionsoundrc.5.in |    6 +++
 src/core/core_sound.c   |   89 +++++++++++++++++++++++++++++++++++++---------
 src/misc/sound_conf.c   |   14 ++++++-
 src/misc/sound_conf.h   |    1 +
 5 files changed, 91 insertions(+), 21 deletions(-)

http://git.directfb.org/?p=core/FusionSound.git;a=commit;h=d283867aa57c941e9a66caacb063941254814b57
commit d283867aa57c941e9a66caacb063941254814b57
Author: Claudio Ciccani <[EMAIL PROTECTED]>
Date:   Sat May 12 18:02:42 2007 +0200

    Added missing files/extensions.

 .gitignore          |   10 +++++++++-
 examples/.gitignore |    1 +
 include/.gitignore  |    1 +
 tools/.gitignore    |    1 +
 4 files changed, 12 insertions(+), 1 deletions(-)

http://git.directfb.org/?p=core/FusionSound.git;a=commit;h=869938111ddc0a9c427a7c9db3c10af58a45e661
commit 869938111ddc0a9c427a7c9db3c10af58a45e661
Author: Claudio Ciccani <[EMAIL PROTECTED]>
Date:   Sat May 12 18:00:37 2007 +0200

    Updated man page.

 docs/fusionsoundrc.5.in |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

http://git.directfb.org/?p=core/FusionSound.git;a=commit;h=a14fefd2983fce15b81e9fb15bcd22ee86f22418
commit a14fefd2983fce15b81e9fb15bcd22ee86f22418
Author: Claudio Ciccani <[EMAIL PROTECTED]>
Date:   Sat May 12 18:00:00 2007 +0200

    Provided a way to define the channels configuration.
    
    Introduced a field in stream and buffer descriptions that define the 
channels
    configuration (see FSChannelMode). When set, this field overrides the 
'channels' field.
    
    Replaced internal references to generic channels by appropriate 
FSChannelMode(s).
    
    Added options "channelmode" to define the channels configuration of the 
output device.
    
    Moved downmixing levels stuff to CorePlayback (set via 
fs_playback_set_downmix()).

 drivers/alsa.c                                     |    2 +-
 drivers/oss.c                                      |    7 +-
 drivers/wave.c                                     |   13 +-
 include/fusionsound.h                              |  102 +++++++++--
 .../ifusionsoundmusicprovider_vorbis.c             |  144 ++++++++++-----
 .../ifusionsoundmusicprovider_wave.c               |  174 +++++++++++------
 src/core/core_sound.c                              |   99 ++++++----
 src/core/playback.c                                |   90 ++++++++-
 src/core/playback.h                                |   24 +--
 src/core/sound_buffer.c                            |   50 ++---
 src/core/sound_buffer.h                            |    4 +-
 src/core/sound_device.c                            |    4 +-
 src/core/sound_device.h                            |    4 +-
 src/core/sound_mix.h                               |  204 +++++++++++++-------
 src/ifusionsound.c                                 |   85 +++++++--
 src/ifusionsoundbuffer.c                           |   29 ++--
 src/ifusionsoundbuffer.h                           |    2 +-
 src/ifusionsoundplayback.c                         |   45 +----
 src/ifusionsoundstream.c                           |   12 +-
 src/ifusionsoundstream.h                           |    4 +-
 src/misc/Makefile.am                               |   10 +-
 src/misc/sound_conf.c                              |   71 ++++++-
 src/misc/sound_conf.h                              |    2 +-
 src/misc/sound_util.c                              |   56 ++++++
 src/misc/sound_util.h                              |   35 ++++
 tools/fsdump.c                                     |    2 +-
 26 files changed, 890 insertions(+), 384 deletions(-)


_______________________________________________
directfb-cvs mailing list
[email protected]
http://mail.directfb.org/cgi-bin/mailman/listinfo/directfb-cvs

Reply via email to