Commit a199a57b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

wasapi: audio capture client module (fixes #7205)

parent 5c2fc028
...@@ -18,6 +18,7 @@ Access: ...@@ -18,6 +18,7 @@ Access:
* Support depayloading Opus from RTP * Support depayloading Opus from RTP
* Support sftp username and passwords options and URL * Support sftp username and passwords options and URL
* New UPnP access module, to list directories without infinite recursions * New UPnP access module, to list directories without infinite recursions
* New WASAPI audio capture module on Windows
Decoder: Decoder:
* OMX GPU-zerocopy support for decoding and display on Android using OpenMax IL * OMX GPU-zerocopy support for decoding and display on Android using OpenMax IL
......
...@@ -19,6 +19,7 @@ $Id$ ...@@ -19,6 +19,7 @@ $Id$
* access_output_shout: Shoutcast access output * access_output_shout: Shoutcast access output
* access_output_udp: UDP Network access_output module * access_output_udp: UDP Network access_output module
* access_realrtsp: Real RTSP access * access_realrtsp: Real RTSP access
* access_wasapi: WASAPI audio input
* addonsfsstorage: Local storage extensions repository * addonsfsstorage: Local storage extensions repository
* addonsvorepository: Videolan extensions repository * addonsvorepository: Videolan extensions repository
* adjust: Contrast/Hue/saturation/Brightness adjust module * adjust: Contrast/Hue/saturation/Brightness adjust module
......
...@@ -105,6 +105,14 @@ if HAVE_QTKIT ...@@ -105,6 +105,14 @@ if HAVE_QTKIT
access_LTLIBRARIES += libqtsound_plugin.la access_LTLIBRARIES += libqtsound_plugin.la
endif endif
libaccess_wasapi_plugin_la_SOURCES = access/wasapi.c
libaccess_wasapi_plugin_la_LIBADD = -lole32 -lksuser
if HAVE_WASAPI
if !HAVE_WINSTORE
access_LTLIBRARIES += libaccess_wasapi_plugin.la
endif
endif
### Video capture ### ### Video capture ###
......
This diff is collapsed.
...@@ -278,6 +278,7 @@ modules/access/vcdx/vcdplayer.c ...@@ -278,6 +278,7 @@ modules/access/vcdx/vcdplayer.c
modules/access/vcdx/vcdplayer.h modules/access/vcdx/vcdplayer.h
modules/access/vdr.c modules/access/vdr.c
modules/access/vnc.c modules/access/vnc.c
modules/access/wasapi.c
modules/access/zip/zipstream.c modules/access/zip/zipstream.c
modules/arm_neon/chroma_yuv.c modules/arm_neon/chroma_yuv.c
modules/arm_neon/simple_channel_mixer.c modules/arm_neon/simple_channel_mixer.c
......
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