mirror of
https://github.com/Lorenzooone/cc3dsfs.git
synced 2026-03-29 13:44:50 -05:00
11 lines
325 B
C++
Executable File
11 lines
325 B
C++
Executable File
#ifndef __CONVERSIONS_HPP
|
|
#define __CONVERSIONS_HPP
|
|
|
|
#include <SFML/Audio.hpp>
|
|
#include "3dscapture.hpp"
|
|
#include "frontend.hpp"
|
|
|
|
void convertVideoToOutput(VideoInputData *p_in, VideoOutputData *p_out);
|
|
void convertAudioToOutput(CaptureReceived *p_in, sf::Int16 *p_out, const int n_samples, const bool is_big_endian);
|
|
#endif
|