Add support cn-shenzhen region.

This commit is contained in:
sdk-team
2020-06-22 16:56:25 +08:00
parent fbf5bf0457
commit 6e880496ba
4 changed files with 7 additions and 1 deletions

View File

@@ -154,6 +154,8 @@ void GetMezzanineInfoResult::parse(const std::string &payload)
videoStreamObject.lang = mezzanineNodeVideoStreamListVideoStream["Lang"].asString();
if(!mezzanineNodeVideoStreamListVideoStream["Rotate"].isNull())
videoStreamObject.rotate = mezzanineNodeVideoStreamListVideoStream["Rotate"].asString();
if(!mezzanineNodeVideoStreamListVideoStream["Bitrate"].isNull())
videoStreamObject.bitrate = mezzanineNodeVideoStreamListVideoStream["Bitrate"].asString();
mezzanine_.videoStreamList.push_back(videoStreamObject);
}