:14: error: union member ‘RTMP::RtmpStream::NalData::nal_data::StapA’ with non-trivial ‘RTMP::RtmpStream::StapA::~StapA()’
stStapA StapA;
^~~~~
../include/RTMP/RtmpStream.hpp:159:10: error: use of deleted function ‘RTMP::RtmpStream::NalData::~NalData()’
struct StorageItem
报这个错误是 因为在结构体里使用 vector,换成数组。
typedef struct StapA{
//std::vector<uint16_t> vecNaluLen;
uint16_t vecNaluLen[10];
}stStapA;