| 123456789101112131415161718192021 |
- #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 REQUEST_IDR = 7;
- constexpr auto SENDER_CONNECTED = 8;
- constexpr auto SENDER_SHOULD_STOP = 9;
- constexpr auto SENDER_CONFIG = 10;
- // global variable declaration
- #endif //REMOTEAR3_VARIABLE_DEFS_H
|