Changeset 1aac6d6516e507bc0230ebf9ee85d9890ead7565

Show
Ignore:
Timestamp:
02/19/08 01:08:03 (5 months ago)
Author:
Christophe Mutricy <xtophe@videolan.org>
git-committer:
Christophe Mutricy <xtophe@videolan.org> 1203379683 +0000
git-parent:

[48fb0a1d8885e72fa0175edfae3cb3ad121a83bc]

git-author:
Christophe Mutricy <xtophe@videolan.org> 1203379683 +0000
Message:

PulseAudio? output module. Thanks to Martin Hamrle. Closes #1215

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • THANKS

    r48ef60c r1aac6d6  
    145145Markus Kern <markus-kern at gmx dot net> - video output window fixes (win32) 
    146146Markus Kuespert <ltlBeBoy at beosmail.com> - BeOS CSS support 
     147Martin Hamrle <hamrle 47 post d0t cz> - PulseAudio output module 
    147148Martin Kahr <martin --at-- martinkahr dot com> - Apple Remote support 
    148149Matej Urbančič <matej.urban at gmail.com> - Slovenian translation 
  • configure.ac

    r3efac18 r1aac6d6  
    46494649     fi 
    46504650   fi]) 
     4651 
     4652dnl 
     4653dnl  Pulseaudio module 
     4654dnl 
     4655AC_ARG_ENABLE(pulse, 
     4656  [  --enable-pulse          Pulseaudio support (default enabled)]) 
     4657  if test "${enable_pulse}" != "no" 
     4658   then 
     4659     PKG_CHECK_MODULES(PULSE, libpulse, 
     4660       [ VLC_ADD_PLUGINS([pulse]) 
     4661        VLC_ADD_CFLAGS([pulse],[${PULSE_CFLAGS}]) 
     4662        VLC_ADD_LDFLAGS([pulse],[${PULSE_LIBS}])]:, 
     4663       [AC_MSG_WARN(pulsaudio library not found)]) 
     4664   fi 
    46514665 
    46524666dnl 
  • modules/audio_output/Modules.am

    r4074989 r1aac6d6  
    1111SOURCES_auhal = auhal.c 
    1212SOURCES_jack = jack.c 
     13SOURCES_pulse = pulse.c