| 12345678910111213141516171819202122 |
- #ifndef REMOTEAR3_VARIABLE_DEFS_H
- #define REMOTEAR3_VARIABLE_DEFS_H
- constexpr auto IMG_RAW_HOST_LEFT = 0;
- constexpr auto IMG_RAW_HOST_RIGHT = 1;
- constexpr auto ENCODER_BUSY = 2;
- constexpr auto ENCODER_CONFIG = 3;
- constexpr auto OUTPUT_FRAME = 4;
- constexpr auto ENCODER_SHOULD_STOP = 5;
- constexpr auto CUDA_CONTEXT = 6;
- constexpr auto CUDA_STREAM_OUTPUT = 16;
- constexpr auto REQUEST_IDR = 7;
- constexpr auto SENDER_CONNECTED = 8;
- constexpr auto SENDER_SHOULD_STOP = 9;
- constexpr auto SENDER_ENABLE_LOG = 10;
- // global variable declaration
- #endif //REMOTEAR3_VARIABLE_DEFS_H
|