/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.mediaconvert.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** * Required when you set Codec to the value WAV. * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/WavSettings" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class WavSettings implements Serializable, Cloneable, StructuredPojo { /** Specify Bit depth, in bits per sample, to choose the encoding quality for this audio track. */ private Integer bitDepth; /** * Specify the number of channels in this output audio track. Valid values are 1 and even numbers up to 64. For * example, 1, 2, 4, 6, and so on, up to 64. */ private Integer channels; /** * The service defaults to using RIFF for WAV outputs. If your output audio is likely to exceed 4 GB in file size, * or if you otherwise need the extended support of the RF64 format, set your output WAV file format to RF64. */ private String format; /** Sample rate in Hz. */ private Integer sampleRate; /** * Specify Bit depth, in bits per sample, to choose the encoding quality for this audio track. * * @param bitDepth * Specify Bit depth, in bits per sample, to choose the encoding quality for this audio track. */ public void setBitDepth(Integer bitDepth) { this.bitDepth = bitDepth; } /** * Specify Bit depth, in bits per sample, to choose the encoding quality for this audio track. * * @return Specify Bit depth, in bits per sample, to choose the encoding quality for this audio track. */ public Integer getBitDepth() { return this.bitDepth; } /** * Specify Bit depth, in bits per sample, to choose the encoding quality for this audio track. * * @param bitDepth * Specify Bit depth, in bits per sample, to choose the encoding quality for this audio track. * @return Returns a reference to this object so that method calls can be chained together. */ public WavSettings withBitDepth(Integer bitDepth) { setBitDepth(bitDepth); return this; } /** * Specify the number of channels in this output audio track. Valid values are 1 and even numbers up to 64. For * example, 1, 2, 4, 6, and so on, up to 64. * * @param channels * Specify the number of channels in this output audio track. Valid values are 1 and even numbers up to 64. * For example, 1, 2, 4, 6, and so on, up to 64. */ public void setChannels(Integer channels) { this.channels = channels; } /** * Specify the number of channels in this output audio track. Valid values are 1 and even numbers up to 64. For * example, 1, 2, 4, 6, and so on, up to 64. * * @return Specify the number of channels in this output audio track. Valid values are 1 and even numbers up to 64. * For example, 1, 2, 4, 6, and so on, up to 64. */ public Integer getChannels() { return this.channels; } /** * Specify the number of channels in this output audio track. Valid values are 1 and even numbers up to 64. For * example, 1, 2, 4, 6, and so on, up to 64. * * @param channels * Specify the number of channels in this output audio track. Valid values are 1 and even numbers up to 64. * For example, 1, 2, 4, 6, and so on, up to 64. * @return Returns a reference to this object so that method calls can be chained together. */ public WavSettings withChannels(Integer channels) { setChannels(channels); return this; } /** * The service defaults to using RIFF for WAV outputs. If your output audio is likely to exceed 4 GB in file size, * or if you otherwise need the extended support of the RF64 format, set your output WAV file format to RF64. * * @param format * The service defaults to using RIFF for WAV outputs. If your output audio is likely to exceed 4 GB in file * size, or if you otherwise need the extended support of the RF64 format, set your output WAV file format to * RF64. * @see WavFormat */ public void setFormat(String format) { this.format = format; } /** * The service defaults to using RIFF for WAV outputs. If your output audio is likely to exceed 4 GB in file size, * or if you otherwise need the extended support of the RF64 format, set your output WAV file format to RF64. * * @return The service defaults to using RIFF for WAV outputs. If your output audio is likely to exceed 4 GB in file * size, or if you otherwise need the extended support of the RF64 format, set your output WAV file format * to RF64. * @see WavFormat */ public String getFormat() { return this.format; } /** * The service defaults to using RIFF for WAV outputs. If your output audio is likely to exceed 4 GB in file size, * or if you otherwise need the extended support of the RF64 format, set your output WAV file format to RF64. * * @param format * The service defaults to using RIFF for WAV outputs. If your output audio is likely to exceed 4 GB in file * size, or if you otherwise need the extended support of the RF64 format, set your output WAV file format to * RF64. * @return Returns a reference to this object so that method calls can be chained together. * @see WavFormat */ public WavSettings withFormat(String format) { setFormat(format); return this; } /** * The service defaults to using RIFF for WAV outputs. If your output audio is likely to exceed 4 GB in file size, * or if you otherwise need the extended support of the RF64 format, set your output WAV file format to RF64. * * @param format * The service defaults to using RIFF for WAV outputs. If your output audio is likely to exceed 4 GB in file * size, or if you otherwise need the extended support of the RF64 format, set your output WAV file format to * RF64. * @return Returns a reference to this object so that method calls can be chained together. * @see WavFormat */ public WavSettings withFormat(WavFormat format) { this.format = format.toString(); return this; } /** * Sample rate in Hz. * * @param sampleRate * Sample rate in Hz. */ public void setSampleRate(Integer sampleRate) { this.sampleRate = sampleRate; } /** * Sample rate in Hz. * * @return Sample rate in Hz. */ public Integer getSampleRate() { return this.sampleRate; } /** * Sample rate in Hz. * * @param sampleRate * Sample rate in Hz. * @return Returns a reference to this object so that method calls can be chained together. */ public WavSettings withSampleRate(Integer sampleRate) { setSampleRate(sampleRate); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getBitDepth() != null) sb.append("BitDepth: ").append(getBitDepth()).append(","); if (getChannels() != null) sb.append("Channels: ").append(getChannels()).append(","); if (getFormat() != null) sb.append("Format: ").append(getFormat()).append(","); if (getSampleRate() != null) sb.append("SampleRate: ").append(getSampleRate()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof WavSettings == false) return false; WavSettings other = (WavSettings) obj; if (other.getBitDepth() == null ^ this.getBitDepth() == null) return false; if (other.getBitDepth() != null && other.getBitDepth().equals(this.getBitDepth()) == false) return false; if (other.getChannels() == null ^ this.getChannels() == null) return false; if (other.getChannels() != null && other.getChannels().equals(this.getChannels()) == false) return false; if (other.getFormat() == null ^ this.getFormat() == null) return false; if (other.getFormat() != null && other.getFormat().equals(this.getFormat()) == false) return false; if (other.getSampleRate() == null ^ this.getSampleRate() == null) return false; if (other.getSampleRate() != null && other.getSampleRate().equals(this.getSampleRate()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getBitDepth() == null) ? 0 : getBitDepth().hashCode()); hashCode = prime * hashCode + ((getChannels() == null) ? 0 : getChannels().hashCode()); hashCode = prime * hashCode + ((getFormat() == null) ? 0 : getFormat().hashCode()); hashCode = prime * hashCode + ((getSampleRate() == null) ? 0 : getSampleRate().hashCode()); return hashCode; } @Override public WavSettings clone() { try { return (WavSettings) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.mediaconvert.model.transform.WavSettingsMarshaller.getInstance().marshall(this, protocolMarshaller); } }