X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fcodec_utils%2Fcommon%2Fodu_common_codec.h;h=01e0d7a48bca05cdac0ab826648d573db1e49d9d;hb=d18338bde70b043c3dde28b7d88d128c0b138380;hp=36f5702cbadd32630fc042fbae5cf63f29cbdd2c;hpb=3a52fbb41a099e37ef072276055cf765828db299;p=o-du%2Fl2.git diff --git a/src/codec_utils/common/odu_common_codec.h b/src/codec_utils/common/odu_common_codec.h index 36f5702cb..01e0d7a48 100644 --- a/src/codec_utils/common/odu_common_codec.h +++ b/src/codec_utils/common/odu_common_codec.h @@ -19,38 +19,15 @@ #ifndef __ODU_COMMON_CODEC_H__ #define __ODU_COMMON_CODEC_H__ -#include "asn_codecs.h" - -#define ENC_BUF_MAX_LEN 200 +#define ENC_BUF_MAX_LEN 400 #define ENCODE_FAIL -1 char encBuf[ENC_BUF_MAX_LEN]; int encBufSize; - -/******************************************************************* - * - * @brief Writes the encoded chunks into a buffer - * - * @details - * - * Function : PrepFinalEncBuf - * - * Functionality:Fills the encoded buffer - * - * @params[in] void *buffer,initial encoded data - * @params[in] size_t size,size of buffer - * @params[in] void *encodedBuf,final buffer - * @return ROK - success - * RFAILED - failure - * - * ****************************************************************/ -static int PrepFinalEncBuf(const void *buffer, size_t size, void *encodedBuf) -{ - memcpy(encodedBuf + encBufSize, buffer, size); - encBufSize += size; - return 0; -} /* PrepFinalEncBuf */ +int PrepFinalEncBuf(const void *buffer, size_t size, void *encodedBuf); +uint8_t fillBitString(BIT_STRING_t *id, uint8_t unusedBits, uint8_t byteSize, uint8_t val); +uint8_t bitStringToInt(BIT_STRING_t *bitString, void *val); #endif