This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-mediaconvert/source/model/AiffSettings.cpp

96 lines
1.7 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/mediaconvert/model/AiffSettings.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace MediaConvert
{
namespace Model
{
AiffSettings::AiffSettings() :
m_bitDepth(0),
m_bitDepthHasBeenSet(false),
m_channels(0),
m_channelsHasBeenSet(false),
m_sampleRate(0),
m_sampleRateHasBeenSet(false)
{
}
AiffSettings::AiffSettings(JsonView jsonValue) :
m_bitDepth(0),
m_bitDepthHasBeenSet(false),
m_channels(0),
m_channelsHasBeenSet(false),
m_sampleRate(0),
m_sampleRateHasBeenSet(false)
{
*this = jsonValue;
}
AiffSettings& AiffSettings::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("bitDepth"))
{
m_bitDepth = jsonValue.GetInteger("bitDepth");
m_bitDepthHasBeenSet = true;
}
if(jsonValue.ValueExists("channels"))
{
m_channels = jsonValue.GetInteger("channels");
m_channelsHasBeenSet = true;
}
if(jsonValue.ValueExists("sampleRate"))
{
m_sampleRate = jsonValue.GetInteger("sampleRate");
m_sampleRateHasBeenSet = true;
}
return *this;
}
JsonValue AiffSettings::Jsonize() const
{
JsonValue payload;
if(m_bitDepthHasBeenSet)
{
payload.WithInteger("bitDepth", m_bitDepth);
}
if(m_channelsHasBeenSet)
{
payload.WithInteger("channels", m_channels);
}
if(m_sampleRateHasBeenSet)
{
payload.WithInteger("sampleRate", m_sampleRate);
}
return payload;
}
} // namespace Model
} // namespace MediaConvert
} // namespace Aws