libobs: Store circular audio buffer on source itself (skip)

(Note: This commit breaks libobs compilation.  Skip if bisecting)

Removes audio lines and stores the circular buffer for the audio on the
source itself.
This commit is contained in:
jp9000
2015-12-17 04:28:35 -08:00
parent f73bbe6746
commit bc0b85cb79
4 changed files with 140 additions and 16 deletions

View File

@@ -986,6 +986,10 @@ EXPORT uint32_t obs_source_get_base_width(obs_source_t *source);
/** Gets the base height for a source (not taking in to account filtering) */
EXPORT uint32_t obs_source_get_base_height(obs_source_t *source);
EXPORT uint64_t obs_source_get_audio_timestamp(const obs_source_t *source);
EXPORT void obs_source_get_audio_mix(const obs_source_t *source,
struct obs_source_audio_mix *audio);
/* ------------------------------------------------------------------------- */
/* Scenes */