obs-studio/plugins/sndio/sndio-input.h
Vadim Zhukov 12719816fc
Add sndio support (#3715)
Add sndio support
2020-11-14 11:58:55 -08:00

19 lines
296 B
C

#ifndef OBS_SNDIO_INPUT_H
#define OBS_SNDIO_INPUT_H
struct sndio_thr_data {
obs_source_t *source;
struct obs_source_audio out;
struct sio_hdl *hdl;
struct sio_par par;
int sock;
};
struct sndio_data {
obs_source_t *source;
pthread_attr_t attr;
int sock;
};
#endif // OBS_SNDIO_INPUT_H