Commit 024fa1c4 authored by Clément Stenac's avatar Clément Stenac

* DAAP (iTunes shares) services discovery and access module using libopendaap

http://crazney.net/programs/itunes/libopendaap.html

Problems : 
   - At the moment, the file is downloaded entirely in memory before being
     played.
     The library offers another possibility : download the file on
     demand to a pipe, but I don't think it would be a very good idea
     (portability issues ? where to download to ?).
     I hope a "download on demand to memory" feature will be added
   - Sometimes, it looses connection to the peers.

* Increased wx playlist font size
parent 31ca77ef
......@@ -1224,7 +1224,6 @@ dnl
AC_ARG_WITH(,[Input plugins:])
dnl
dnl live.com input
dnl
AC_ARG_ENABLE(livedotcom,
......@@ -3754,6 +3753,20 @@ then
fi
fi
dnl
dnl DAAP access plugin and services discovery
dnl
AC_ARG_ENABLE(daap,
[ --enable-daap DAAP shares services discovery support (default enabled)])
if test "$enable_daap" != "no"
then
PKG_CHECK_MODULES(DAAP, opendaap >= 0.3.0,
[ VLC_ADD_PLUGINS([daap])
VLC_ADD_LDFLAGS([daap],[$DAAP_LIBS])
VLC_ADD_CFLAGS([daap],[$DAAP_CFLAGS])]:,
[AC_MSG_WARN(DAAP library not found)])
fi
dnl
dnl Lirc plugin
dnl
......
......@@ -351,7 +351,7 @@ Playlist::Playlist( intf_thread_t *_p_intf, wxWindow *p_parent ):
/* Reduce font size */
wxFont font= treectrl->GetFont();
font.SetPointSize(8);
font.SetPointSize(9);
treectrl->SetFont( font );
wxBoxSizer *panel_sizer = new wxBoxSizer( wxVERTICAL );
......
SOURCES_sap = sap.c
SOURCES_hal = hal.c
SOURCES_daap = daap.c
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment