mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
19 lines
360 B
C
19 lines
360 B
C
|
|
#pragma once
|
||
|
|
//#define BUILD_LIVE
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
#include <map>
|
||
|
|
|
||
|
|
namespace live
|
||
|
|
{
|
||
|
|
#ifdef BUILD_LIVE
|
||
|
|
void initLiveProcessingMenu();
|
||
|
|
void renderLiveProcessingMenu();
|
||
|
|
|
||
|
|
extern std::string downlink_pipeline;
|
||
|
|
extern std::string output_level;
|
||
|
|
extern std::string output_file;
|
||
|
|
extern std::map<std::string, std::string> parameters;
|
||
|
|
#endif
|
||
|
|
};
|