made sure mode enums are defined

main
Patrick W3AXL 1 year ago
parent a9a2a17d23
commit fd712f4657

@ -62,9 +62,9 @@ namespace vocoder
/** /**
* @brief Vocoder Decoding Mode * @brief Vocoder Decoding Mode
*/ */
enum MBE_DECODER_MODE { enum MBE_DECODER_MODE : int {
DECODE_DMR_AMBE, //! DMR AMBE DECODE_DMR_AMBE = 0, //! DMR AMBE
DECODE_88BIT_IMBE //! 88-bit IMBE (P25) DECODE_88BIT_IMBE = 1 //! 88-bit IMBE (P25)
}; };
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------

@ -32,9 +32,9 @@ namespace vocoder
/** /**
* @brief Vocoder Encoding Mode * @brief Vocoder Encoding Mode
*/ */
enum MBE_ENCODER_MODE { enum MBE_ENCODER_MODE : int {
ENCODE_DMR_AMBE, //! DMR AMBE ENCODE_DMR_AMBE = 0, //! DMR AMBE
ENCODE_88BIT_IMBE, //! 88-bit IMBE (P25) ENCODE_88BIT_IMBE = 1, //! 88-bit IMBE (P25)
}; };
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------

Loading…
Cancel
Save

Powered by TurnKey Linux.