Commit e9074e22 authored by Francois Cartegnie's avatar Francois Cartegnie

access: add Remote Desktop viewer module

parent d0d3f1d3
...@@ -39,6 +39,7 @@ Access: ...@@ -39,6 +39,7 @@ Access:
* Microsoft Smooth Streaming support (H264 and VC1) developed by Viotech.net * Microsoft Smooth Streaming support (H264 and VC1) developed by Viotech.net
* NTSC EIA-608 closed caption input support via V4L2 VBI devices * NTSC EIA-608 closed caption input support via V4L2 VBI devices
* Add support for VNC/rfb in view only mode * Add support for VNC/rfb in view only mode
* Add support for Remote Desktop/RDP in view only mode
Demuxers: Demuxers:
* MP4: partial support for fragmented MP4 * MP4: partial support for fragmented MP4
......
...@@ -1905,6 +1905,10 @@ dnl VNC/RFB access module ...@@ -1905,6 +1905,10 @@ dnl VNC/RFB access module
dnl dnl
PKG_ENABLE_MODULES_VLC([LIBVNC], [libvnc], [libvncclient >= 0.9.9], (VNC/rfb client support), [auto]) PKG_ENABLE_MODULES_VLC([LIBVNC], [libvnc], [libvncclient >= 0.9.9], (VNC/rfb client support), [auto])
dnl RDP/Remote Desktop access module
dnl
PKG_ENABLE_MODULES_VLC([LIBFREERDP], [rdp], [freerdp >= 1.0.1], (RDP/Remote Desktop client support) )
dnl dnl
dnl Real RTSP plugin dnl Real RTSP plugin
dnl dnl
......
...@@ -271,6 +271,7 @@ $Id$ ...@@ -271,6 +271,7 @@ $Id$
* rawdv: Raw DV demuxer * rawdv: Raw DV demuxer
* rawvid: raw video input module for vlc * rawvid: raw video input module for vlc
* rawvideo: Pseudo audio-decoder for raw video * rawvideo: Pseudo audio-decoder for raw video
* rdp: Remote Desktop view only access
* real: partial Real audio/video demuxer * real: partial Real audio/video demuxer
* record: record any stream instantly * record: record any stream instantly
* remap: audio channel remapping filter * remap: audio channel remapping filter
......
...@@ -193,6 +193,9 @@ endif ...@@ -193,6 +193,9 @@ endif
### VNC ### ### VNC ###
SOURCES_libvnc = vnc.c SOURCES_libvnc = vnc.c
### RDP / Remote Desktop ###
SOURCES_rdp = rdp.c
### Optical media ### ### Optical media ###
SOURCES_cdda = \ SOURCES_cdda = \
......
This diff is collapsed.
...@@ -234,6 +234,7 @@ modules/access/rar/access.c ...@@ -234,6 +234,7 @@ modules/access/rar/access.c
modules/access/rar/rar.c modules/access/rar/rar.c
modules/access/rar/rar.h modules/access/rar/rar.h
modules/access/rar/stream.c modules/access/rar/stream.c
modules/access/rdp.c
modules/access/rtp/input.c modules/access/rtp/input.c
modules/access/rtp/rtp.c modules/access/rtp/rtp.c
modules/access/rtp/rtp.h modules/access/rtp/rtp.h
......
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