mirror of
https://github.com/Lorenzooone/cc3dsfs.git
synced 2026-04-18 19:07:26 -05:00
20 lines
630 B
C++
Executable File
20 lines
630 B
C++
Executable File
#ifndef __DSCAPTURE_FTD2_HPP
|
|
#define __DSCAPTURE_FTD2_HPP
|
|
|
|
#include <vector>
|
|
#include "utils.hpp"
|
|
#include "hw_defs.hpp"
|
|
#include "capture_structs.hpp"
|
|
#include "display_structs.hpp"
|
|
|
|
#define USE_FTD2
|
|
|
|
void list_devices_ftd2(std::vector<CaptureDevice> &devices_list);
|
|
bool connect_ftd2(bool print_failed, CaptureData* capture_data, CaptureDevice* device);
|
|
void ftd2_capture_main_loop(CaptureData* capture_data);
|
|
void ftd2_capture_cleanup(CaptureData* capture_data);
|
|
void ftd2_convertVideoToOutput(CaptureReceived *p_in, VideoOutputData *p_out, bool enabled_3d);
|
|
uint64_t ftd2_get_video_in_size(CaptureData* capture_data);
|
|
|
|
#endif
|