[fix] update obu parser

This commit is contained in:
dijunkun
2024-09-27 17:30:24 +08:00
parent 2740f31642
commit 7388a2c288
7 changed files with 501 additions and 237 deletions

View File

@@ -13,6 +13,7 @@
#include "obu.h"
namespace obu {
std::vector<Obu> ParseObus(uint8_t* payload, int payload_size);
const char* ObuTypeToString(OBU_TYPE type);
@@ -22,5 +23,6 @@ bool ObuHasExtension(uint8_t obu_header);
bool ObuHasSize(uint8_t obu_header);
int ObuType(uint8_t obu_header);
} // namespace obu
#endif