sndio-input.h 296 B

123456789101112131415161718
  1. #ifndef OBS_SNDIO_INPUT_H
  2. #define OBS_SNDIO_INPUT_H
  3. struct sndio_thr_data {
  4. obs_source_t *source;
  5. struct obs_source_audio out;
  6. struct sio_hdl *hdl;
  7. struct sio_par par;
  8. int sock;
  9. };
  10. struct sndio_data {
  11. obs_source_t *source;
  12. pthread_attr_t attr;
  13. int sock;
  14. };
  15. #endif // OBS_SNDIO_INPUT_H