fix: config map empty

This commit is contained in:
langhuihui
2024-11-26 13:11:21 +08:00
parent f0d2d8a502
commit 201c779e90
4 changed files with 721 additions and 636 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -348,13 +348,19 @@ message AudioTrackInfo {
uint32 channels =7;
}
message TrackSnapShotResponse {
message TrackSnapShotData {
repeated TrackSnapShot ring = 1;
uint32 ringDataSize = 2;
map<uint32, uint32> reader = 3;
repeated MemoryBlockGroup memory = 4;
}
message TrackSnapShotResponse {
int32 code = 1;
string message = 2;
TrackSnapShotData data = 3;
}
message VideoTrackInfo {
string codec = 1;
string delta = 2;