5f06e8e8f6
xine-lib (1.2.10) 2019-12-13 * Add first Android support. * Add (xcb)xv yuy2 emulation. * Add libavcodec v58 compatibility. * Add avio seek support. * Make libpostproc optional. * Add libdav1d, libaom and lavc AV1 video decoders. * Add libvpx multithreading. * Add libpng decoder. * Add a52 double and fixed point modes. * Add Opus audio support to ogg demuxer. * Add AV1 video support to matroska demuxer. * Add ivf demuxer. * Add mpeg-ts split payload support. * Add TLS support using gnutls or OpenSSL. * Add ftp input plugin (ftp://) with TLS support (ftpes://) * Add tls:// input plugin (raw TLS over TCP). * Add libnfs NFS input plugin. * Add ftp/http seek support. * Add scp forward seek support. * Add mp4 http streaming support (plain and fragment modes). * Add HLS streaming support. * Add HTTP 1.1 support. * Add OpenGL EGL and Wayland support. * Add generic bitrate estimation. * Add side stream feature. * Optimize demux_qt. * Optimize OSD. * Optimize output layers. * Optimize decoder threads. * Optimize event handling. * Optimize stream info. * Optimize TCP/TLS/HTTP network input. * Optimize network buffering control. * Alsa/oss startup optimization. * Optimize input_stdin_fifo. * Optimize internal liba52. * Optimize user seek. * Build optimizations. * Simply user config. * Better support for audio out drivers that cannot resume after pause. * Better support for mpeg pts jumps. * Better bluray seek. * XML parser fixes. * Fix midstream audio mode switch. * Fix FLAC audio playback via ffmpeg. * Fix ffmpeg mpeg1/2 video. * Fix C++ build. * Fix build on clang only systems. * Fix/optimize mpeg, mpeg-ts, qt, flv, matroska, real and asf demuxers. * Fix network seek. * Fix/optimize audio CD. * Fix DVD (occasional crashes, damaged video after a DVD had been played). * Fix opengl2 freeze after X server failure. * Fix tvtime deinterlacer crash. * Fix/optimize overlay. * Fix/optimize old VDR plugin. * Fix xine-ui freeze when opening a playlist while paused. * Security fixes. * Build fixes (C99 mode, vaapi, ImageMagick, libmvec, less warnings). * Many small fixes. * More error handling instead of aborting. * Update german translation.
26 lines
785 B
Makefile
26 lines
785 B
Makefile
# $NetBSD: Makefile,v 1.46 2020/04/02 15:52:47 nia Exp $
|
|
|
|
.include "../../multimedia/xine-lib/Makefile.common"
|
|
|
|
PKGNAME= ${XINE_PKGNAME:S/lib/pulse/}
|
|
CATEGORIES= audio
|
|
COMMENT= The PulseAudio output plugin for xine-lib
|
|
|
|
DEPENDS+= xine-lib>=1rc3a:../../multimedia/xine-lib
|
|
|
|
BUILD_DIRS= src/audio_out
|
|
CONFIGURE_ARGS+= --without-x --disable-xinerama
|
|
CONFIGURE_ARGS+= --disable-vcd
|
|
CONFIGURE_ARGS+= --with-pulseaudio
|
|
|
|
INSTALLATION_DIRS= lib/xine/plugins/${XINE_MOD_DIR_VER}
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/src/audio_out && \
|
|
${LIBTOOL} --mode=install ${INSTALL_DATA} \
|
|
xineplug_ao_out_pulseaudio.la \
|
|
${DESTDIR}${PREFIX}/lib/xine/plugins/${XINE_MOD_DIR_VER}
|
|
|
|
.include "../../audio/pulseaudio/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|