| 113 | } |
| 114 | |
| 115 | void ParserAVFormat::parseMetadata(const StringPairVec &metadata) |
| 116 | { |
| 117 | if (metadata.size() == 0 || !packetModel->rootItem) |
| 118 | return; |
| 119 | |
| 120 | // Log all entries in the metadata list |
| 121 | auto metadataRoot = packetModel->rootItem->createChildItem("Metadata"); |
| 122 | for (const auto &p : metadata) |
| 123 | metadataRoot->createChildItem(p.first, p.second); |
| 124 | } |
| 125 | |
| 126 | bool ParserAVFormat::parseExtradata_generic(ByteVector &extradata) |
| 127 | { |
no test coverage detected