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.29.26 #3211

Merged
merged 1 commit into from
Mar 17, 2020
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.
Jump to
Jump to file
Failed to load files.
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.29.26 (2020-03-17)
===

### Service Client Updates
* `service/mediaconvert`: Updates service API and documentation
* AWS Elemental MediaConvert SDK has added support for: AV1 encoding in File Group MP4, DASH and CMAF DASH outputs; PCM/WAV audio output in MPEG2-TS containers; and Opus audio in Webm inputs.

Release v1.29.25 (2020-03-16)
===

Expand Down
180 changes: 169 additions & 11 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.29.25"
const SDKVersion = "1.29.26"
114 changes: 114 additions & 0 deletions models/apis/mediaconvert/2017-08-29/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1398,6 +1398,110 @@
"USE_CONFIGURED"
]
},
"Av1AdaptiveQuantization": {
"type": "string",
"enum": [
"OFF",
"LOW",
"MEDIUM",
"HIGH",
"HIGHER",
"MAX"
]
},
"Av1FramerateControl": {
"type": "string",
"enum": [
"INITIALIZE_FROM_SOURCE",
"SPECIFIED"
]
},
"Av1FramerateConversionAlgorithm": {
"type": "string",
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE"
]
},
"Av1QvbrSettings": {
"type": "structure",
"members": {
"QvbrQualityLevel": {
"shape": "__integerMin1Max10",
"locationName": "qvbrQualityLevel"
},
"QvbrQualityLevelFineTune": {
"shape": "__doubleMin0Max1",
"locationName": "qvbrQualityLevelFineTune"
}
}
},
"Av1RateControlMode": {
"type": "string",
"enum": [
"QVBR"
]
},
"Av1Settings": {
"type": "structure",
"members": {
"AdaptiveQuantization": {
"shape": "Av1AdaptiveQuantization",
"locationName": "adaptiveQuantization"
},
"FramerateControl": {
"shape": "Av1FramerateControl",
"locationName": "framerateControl"
},
"FramerateConversionAlgorithm": {
"shape": "Av1FramerateConversionAlgorithm",
"locationName": "framerateConversionAlgorithm"
},
"FramerateDenominator": {
"shape": "__integerMin1Max2147483647",
"locationName": "framerateDenominator"
},
"FramerateNumerator": {
"shape": "__integerMin1Max2147483647",
"locationName": "framerateNumerator"
},
"GopSize": {
"shape": "__doubleMin0",
"locationName": "gopSize"
},
"MaxBitrate": {
"shape": "__integerMin1000Max1152000000",
"locationName": "maxBitrate"
},
"NumberBFramesBetweenReferenceFrames": {
"shape": "__integerMin7Max15",
"locationName": "numberBFramesBetweenReferenceFrames"
},
"QvbrSettings": {
"shape": "Av1QvbrSettings",
"locationName": "qvbrSettings"
},
"RateControlMode": {
"shape": "Av1RateControlMode",
"locationName": "rateControlMode"
},
"Slices": {
"shape": "__integerMin1Max32",
"locationName": "slices"
},
"SpatialAdaptiveQuantization": {
"shape": "Av1SpatialAdaptiveQuantization",
"locationName": "spatialAdaptiveQuantization"
}
}
},
"Av1SpatialAdaptiveQuantization": {
"type": "string",
"enum": [
"DISABLED",
"ENABLED"
]
},
"AvailBlanking": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -7665,6 +7769,7 @@
"type": "string",
"enum": [
"FRAME_CAPTURE",
"AV1",
"H_264",
"H_265",
"MPEG2",
Expand All @@ -7674,6 +7779,10 @@
"VideoCodecSettings": {
"type": "structure",
"members": {
"Av1Settings": {
"shape": "Av1Settings",
"locationName": "av1Settings"
},
"Codec": {
"shape": "VideoCodec",
"locationName": "codec"
Expand Down Expand Up @@ -8220,6 +8329,11 @@
"min": 64000,
"max": 640000
},
"__integerMin7Max15": {
"type": "integer",
"min": 7,
"max": 15
},
"__integerMin8000Max192000": {
"type": "integer",
"min": 8000,
Expand Down