* aja: Use inline const for header initializations Avoids duplicating across compilation units. Detected by PVS Studio. * aja: Avoid unnecessary type conversions Detected by PVS Studio. * aja: Remove duplicate assignments Detected by PVS Studio. * aja: Fix return value of aja_output_create Detected by PVS Studio. * aja: Remove unused variable Detected by PVS Studio. * aja: Fix compiler warning * aja: Remove unreachable if branch in aja routing * aja; Cleanup return in card manager Co-authored-by: Colin Edwards <colin@recursivepenguin.com>
23 lines
422 B
C++
23 lines
422 B
C++
#pragma once
|
|
|
|
#include "../aja-routing.hpp"
|
|
|
|
static inline const std::map<HDMIWireFormat, RoutingConfig>
|
|
kHDMIRGBCaptureConfigs = {{HDMIWireFormat::HD_RGB_LFR,
|
|
{
|
|
NTV2_MODE_CAPTURE,
|
|
1,
|
|
1,
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
"hdmi[{ch1}][0]->fb[{ch1}][0];",
|
|
}}};
|