for (int i = 0; i < frameCount; ++i) {
const mkvparser::Block::Frame& theFrame = pBlock->GetFrame(i);
const long size = theFrame.len;
const long long offset = theFrame.pos;
theFrame.Read(&reader, data);
// here
printf("\t\t\t %15ld,%15llx\n", size, offset);
}
However I've tried to feed the 'data' directly into Opus Decoder, and it generated garbage.