2024-11-10 22:11:29 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
int nothing;
|
2025-03-09 17:02:12 +01:00
|
|
|
} iron_video_impl_t;
|
2024-11-10 22:11:29 +01:00
|
|
|
|
2025-03-09 17:02:12 +01:00
|
|
|
typedef struct iron_internal_video_sound_stream {
|
2024-11-10 22:11:29 +01:00
|
|
|
int nothing;
|
2025-03-09 17:02:12 +01:00
|
|
|
} iron_internal_video_sound_stream_t;
|
2024-11-10 22:11:29 +01:00
|
|
|
|
2025-03-09 17:02:12 +01:00
|
|
|
void iron_internal_video_sound_stream_init(iron_internal_video_sound_stream_t *stream, int channel_count, int frequency);
|
2024-11-10 22:11:29 +01:00
|
|
|
|
2025-03-09 17:02:12 +01:00
|
|
|
void iron_internal_video_sound_stream_destroy(iron_internal_video_sound_stream_t *stream);
|
2024-11-10 22:11:29 +01:00
|
|
|
|
2025-03-09 17:02:12 +01:00
|
|
|
void iron_internal_video_sound_stream_insert_data(iron_internal_video_sound_stream_t *stream, float *data, int sample_count);
|
2024-11-10 22:11:29 +01:00
|
|
|
|
2025-03-09 17:02:12 +01:00
|
|
|
float *iron_internal_video_sound_stream_next_frame(iron_internal_video_sound_stream_t *stream);
|
2024-11-10 22:11:29 +01:00
|
|
|
|
2025-03-09 17:02:12 +01:00
|
|
|
bool iron_internal_video_sound_stream_ended(iron_internal_video_sound_stream_t *stream);
|