Unify namespaces

This commit is contained in:
luboslenco
2025-03-09 17:02:12 +01:00
parent 73977a0c38
commit 9c7960f8f8
200 changed files with 7132 additions and 7132 deletions
+18 -18
View File
@@ -1,57 +1,57 @@
// #include <iron_video.h>
// void kinc_video_init(kinc_video_t *video, const char *filename) {}
// void iron_video_init(iron_video_t *video, const char *filename) {}
// void kinc_video_destroy(kinc_video_t *video) {}
// void iron_video_destroy(iron_video_t *video) {}
// void kinc_video_play(kinc_video_t *video, bool loop) {}
// void iron_video_play(iron_video_t *video, bool loop) {}
// void kinc_video_pause(kinc_video_t *video) {}
// void iron_video_pause(iron_video_t *video) {}
// void kinc_video_stop(kinc_video_t *video) {}
// void iron_video_stop(iron_video_t *video) {}
// int kinc_video_width(kinc_video_t *video) {
// int iron_video_width(iron_video_t *video) {
// return 256;
// }
// int kinc_video_height(kinc_video_t *video) {
// int iron_video_height(iron_video_t *video) {
// return 256;
// }
// kinc_g5_texture_t *kinc_video_current_image(kinc_video_t *video) {
// iron_g5_texture_t *iron_video_current_image(iron_video_t *video) {
// return NULL;
// }
// double kinc_video_duration(kinc_video_t *video) {
// double iron_video_duration(iron_video_t *video) {
// return 0.0;
// }
// double kinc_video_position(kinc_video_t *video) {
// double iron_video_position(iron_video_t *video) {
// return 0.0;
// }
// bool kinc_video_finished(kinc_video_t *video) {
// bool iron_video_finished(iron_video_t *video) {
// return false;
// }
// bool kinc_video_paused(kinc_video_t *video) {
// bool iron_video_paused(iron_video_t *video) {
// return false;
// }
// void kinc_video_update(kinc_video_t *video, double time) {}
// void iron_video_update(iron_video_t *video, double time) {}
// void kinc_internal_video_sound_stream_init(kinc_internal_video_sound_stream_t *stream, int channel_count, int frequency) {}
// void iron_internal_video_sound_stream_init(iron_internal_video_sound_stream_t *stream, int channel_count, int frequency) {}
// void kinc_internal_video_sound_stream_destroy(kinc_internal_video_sound_stream_t *stream) {}
// void iron_internal_video_sound_stream_destroy(iron_internal_video_sound_stream_t *stream) {}
// void kinc_internal_video_sound_stream_insert_data(kinc_internal_video_sound_stream_t *stream, float *data, int sample_count) {}
// void iron_internal_video_sound_stream_insert_data(iron_internal_video_sound_stream_t *stream, float *data, int sample_count) {}
// static float samples[2] = {0};
// float *kinc_internal_video_sound_stream_next_frame(kinc_internal_video_sound_stream_t *stream) {
// float *iron_internal_video_sound_stream_next_frame(iron_internal_video_sound_stream_t *stream) {
// return samples;
// }
// bool kinc_internal_video_sound_stream_ended(kinc_internal_video_sound_stream_t *stream) {
// bool iron_internal_video_sound_stream_ended(iron_internal_video_sound_stream_t *stream) {
// return true;
// }