New upstream version 18.0.1+dfsg1
This commit is contained in:
parent
6efda2859e
commit
f2cf6cce50
1337 changed files with 41178 additions and 84670 deletions
23
libobs/audio-monitoring/null/null-audio-monitoring.c
Normal file
23
libobs/audio-monitoring/null/null-audio-monitoring.c
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
#include "../../obs-internal.h"
|
||||
|
||||
void obs_enum_audio_monitoring_devices(obs_enum_audio_device_cb cb, void *data)
|
||||
{
|
||||
UNUSED_PARAMETER(cb);
|
||||
UNUSED_PARAMETER(data);
|
||||
}
|
||||
|
||||
struct audio_monitor *audio_monitor_create(obs_source_t *source)
|
||||
{
|
||||
UNUSED_PARAMETER(source);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void audio_monitor_reset(struct audio_monitor *monitor)
|
||||
{
|
||||
UNUSED_PARAMETER(monitor);
|
||||
}
|
||||
|
||||
void audio_monitor_destroy(struct audio_monitor *monitor)
|
||||
{
|
||||
UNUSED_PARAMETER(monitor);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue