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

@@ -1,3 +1,6 @@
2020-06-22 Version: 1.36.471
- Add support cn-shenzhen region.
2020-06-22 Version: 1.36.470
- Add GetMultipleTrace api.
- Add SearchTracesByPage api.

View File

@@ -1 +1 @@
1.36.470
1.36.471

View File

@@ -66,6 +66,7 @@ namespace AlibabaCloud
std::string lang;
std::string pixFmt;
std::string codecName;
std::string bitrate;
std::string profile;
std::string avgFPS;
std::string timebase;

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);
}