Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.44.116 #4587

Merged
merged 1 commit into from
Oct 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Release v1.44.116 (2022-10-14)
===

### Service Client Updates
* `service/mediaconvert`: Updates service API and documentation
* MediaConvert now supports specifying the minimum percentage of the HRD buffer available at the end of each encoded video segment.

Release v1.44.115 (2022-10-13)
===

Expand Down
9 changes: 9 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.115"
const SDKVersion = "1.44.116"
12 changes: 12 additions & 0 deletions models/apis/mediaconvert/2017-08-29/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4740,6 +4740,10 @@
"shape": "H264GopSizeUnits",
"locationName": "gopSizeUnits"
},
"HrdBufferFinalFillPercentage": {
"shape": "__integerMin0Max100",
"locationName": "hrdBufferFinalFillPercentage"
},
"HrdBufferInitialFillPercentage": {
"shape": "__integerMin0Max100",
"locationName": "hrdBufferInitialFillPercentage"
Expand Down Expand Up @@ -5112,6 +5116,10 @@
"shape": "H265GopSizeUnits",
"locationName": "gopSizeUnits"
},
"HrdBufferFinalFillPercentage": {
"shape": "__integerMin0Max100",
"locationName": "hrdBufferFinalFillPercentage"
},
"HrdBufferInitialFillPercentage": {
"shape": "__integerMin0Max100",
"locationName": "hrdBufferInitialFillPercentage"
Expand Down Expand Up @@ -7860,6 +7868,10 @@
"shape": "Mpeg2GopSizeUnits",
"locationName": "gopSizeUnits"
},
"HrdBufferFinalFillPercentage": {
"shape": "__integerMin0Max100",
"locationName": "hrdBufferFinalFillPercentage"
},
"HrdBufferInitialFillPercentage": {
"shape": "__integerMin0Max100",
"locationName": "hrdBufferInitialFillPercentage"
Expand Down
5 changes: 4 additions & 1 deletion models/apis/mediaconvert/2017-08-29/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1855,7 +1855,7 @@
}
},
"HlsAdMarkers": {
"base": null,
"base": "Ad marker for Apple HLS manifest.",
"refs": {
"__listOfHlsAdMarkers$member": null
}
Expand Down Expand Up @@ -3916,9 +3916,12 @@
"base": null,
"refs": {
"Eac3AtmosSettings$SpeechThreshold": "Specify the percentage of audio content, from 0% to 100%, that must be speech in order for the encoder to use the measured speech loudness as the overall program loudness. Default value: 15%",
"H264Settings$HrdBufferFinalFillPercentage": "If your downstream systems have strict buffer requirements: Specify the minimum percentage of the HRD buffer that's available at the end of each encoded video segment. For the best video quality: Set to 0 or leave blank to automatically determine the final buffer fill percentage.",
"H264Settings$HrdBufferInitialFillPercentage": "Percentage of the buffer that should initially be filled (HRD buffer model).",
"H265Settings$HrdBufferFinalFillPercentage": "If your downstream systems have strict buffer requirements: Specify the minimum percentage of the HRD buffer that's available at the end of each encoded video segment. For the best video quality: Set to 0 or leave blank to automatically determine the final buffer fill percentage.",
"H265Settings$HrdBufferInitialFillPercentage": "Percentage of the buffer that should initially be filled (HRD buffer model).",
"InsertableImage$Opacity": "Use Opacity (Opacity) to specify how much of the underlying video shows through the inserted image. 0 is transparent and 100 is fully opaque. Default is 50.",
"Mpeg2Settings$HrdBufferFinalFillPercentage": "If your downstream systems have strict buffer requirements: Specify the minimum percentage of the HRD buffer that's available at the end of each encoded video segment. For the best video quality: Set to 0 or leave blank to automatically determine the final buffer fill percentage.",
"Mpeg2Settings$HrdBufferInitialFillPercentage": "Percentage of the buffer that should initially be filled (HRD buffer model).",
"VideoDescription$Sharpness": "Use Sharpness (Sharpness) setting to specify the strength of anti-aliasing. This setting changes the width of the anti-alias filter kernel used for scaling. Sharpness only applies if your output resolution is different from your input resolution. 0 is the softest setting, 100 the sharpest, and 50 recommended for most content."
}
Expand Down
3 changes: 3 additions & 0 deletions models/endpoints/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -1661,13 +1661,15 @@
},
"appsync" : {
"endpoints" : {
"af-south-1" : { },
"ap-east-1" : { },
"ap-northeast-1" : { },
"ap-northeast-2" : { },
"ap-northeast-3" : { },
"ap-south-1" : { },
"ap-southeast-1" : { },
"ap-southeast-2" : { },
"ap-southeast-3" : { },
"ca-central-1" : { },
"eu-central-1" : { },
"eu-north-1" : { },
Expand Down Expand Up @@ -12475,6 +12477,7 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
"me-central-1" : { },
"me-south-1" : { },
"sa-east-1" : { },
"servicediscovery" : {
Expand Down
37 changes: 37 additions & 0 deletions service/mediaconvert/api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.