You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -207,6 +258,11 @@ public function getSpecification(): ?string
207
258
return$this->specification;
208
259
}
209
260
261
+
publicfunctiongetTargetLoudnessRange(): ?int
262
+
{
263
+
return$this->targetLoudnessRange;
264
+
}
265
+
210
266
/**
211
267
* @return AacVbrQuality::*|null
212
268
*/
@@ -242,6 +298,15 @@ public function requestBody(): array
242
298
}
243
299
$payload['codingMode'] = $v;
244
300
}
301
+
if (null !== $v = $this->loudnessMeasurementMode) {
302
+
if (!AacLoudnessMeasurementMode::exists($v)) {
303
+
thrownewInvalidArgument(\sprintf('Invalid parameter "loudnessMeasurementMode" for "%s". The value "%s" is not a valid "AacLoudnessMeasurementMode".', __CLASS__, $v));
304
+
}
305
+
$payload['loudnessMeasurementMode'] = $v;
306
+
}
307
+
if (null !== $v = $this->rapInterval) {
308
+
$payload['rapInterval'] = $v;
309
+
}
245
310
if (null !== $v = $this->rateControlMode) {
246
311
if (!AacRateControlMode::exists($v)) {
247
312
thrownewInvalidArgument(\sprintf('Invalid parameter "rateControlMode" for "%s". The value "%s" is not a valid "AacRateControlMode".', __CLASS__, $v));
@@ -263,6 +328,9 @@ public function requestBody(): array
263
328
}
264
329
$payload['specification'] = $v;
265
330
}
331
+
if (null !== $v = $this->targetLoudnessRange) {
332
+
$payload['targetLoudnessRange'] = $v;
333
+
}
266
334
if (null !== $v = $this->vbrQuality) {
267
335
if (!AacVbrQuality::exists($v)) {
268
336
thrownewInvalidArgument(\sprintf('Invalid parameter "vbrQuality" for "%s". The value "%s" is not a valid "AacVbrQuality".', __CLASS__, $v));
0 commit comments