/*
* Copyright 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.
*/
/*
* Do not modify this file. This file is generated from the mediaconvert-2017-08-29.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Text;
using System.Xml.Serialization;
using Amazon.MediaConvert.Model;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
using Amazon.Runtime.Internal.Transform;
using Amazon.Runtime.Internal.Util;
using ThirdParty.Json.LitJson;
namespace Amazon.MediaConvert.Model.Internal.MarshallTransformations
{
///
/// VideoDescription Marshaller
///
public class VideoDescriptionMarshaller : IRequestMarshaller
{
///
/// Unmarshaller the response from the service to the response class.
///
///
///
///
public void Marshall(VideoDescription requestObject, JsonMarshallerContext context)
{
if(requestObject.IsSetAfdSignaling())
{
context.Writer.WritePropertyName("afdSignaling");
context.Writer.Write(requestObject.AfdSignaling);
}
if(requestObject.IsSetAntiAlias())
{
context.Writer.WritePropertyName("antiAlias");
context.Writer.Write(requestObject.AntiAlias);
}
if(requestObject.IsSetCodecSettings())
{
context.Writer.WritePropertyName("codecSettings");
context.Writer.WriteObjectStart();
var marshaller = VideoCodecSettingsMarshaller.Instance;
marshaller.Marshall(requestObject.CodecSettings, context);
context.Writer.WriteObjectEnd();
}
if(requestObject.IsSetColorMetadata())
{
context.Writer.WritePropertyName("colorMetadata");
context.Writer.Write(requestObject.ColorMetadata);
}
if(requestObject.IsSetCrop())
{
context.Writer.WritePropertyName("crop");
context.Writer.WriteObjectStart();
var marshaller = RectangleMarshaller.Instance;
marshaller.Marshall(requestObject.Crop, context);
context.Writer.WriteObjectEnd();
}
if(requestObject.IsSetDropFrameTimecode())
{
context.Writer.WritePropertyName("dropFrameTimecode");
context.Writer.Write(requestObject.DropFrameTimecode);
}
if(requestObject.IsSetFixedAfd())
{
context.Writer.WritePropertyName("fixedAfd");
context.Writer.Write(requestObject.FixedAfd);
}
if(requestObject.IsSetHeight())
{
context.Writer.WritePropertyName("height");
context.Writer.Write(requestObject.Height);
}
if(requestObject.IsSetPosition())
{
context.Writer.WritePropertyName("position");
context.Writer.WriteObjectStart();
var marshaller = RectangleMarshaller.Instance;
marshaller.Marshall(requestObject.Position, context);
context.Writer.WriteObjectEnd();
}
if(requestObject.IsSetRespondToAfd())
{
context.Writer.WritePropertyName("respondToAfd");
context.Writer.Write(requestObject.RespondToAfd);
}
if(requestObject.IsSetScalingBehavior())
{
context.Writer.WritePropertyName("scalingBehavior");
context.Writer.Write(requestObject.ScalingBehavior);
}
if(requestObject.IsSetSharpness())
{
context.Writer.WritePropertyName("sharpness");
context.Writer.Write(requestObject.Sharpness);
}
if(requestObject.IsSetTimecodeInsertion())
{
context.Writer.WritePropertyName("timecodeInsertion");
context.Writer.Write(requestObject.TimecodeInsertion);
}
if(requestObject.IsSetVideoPreprocessors())
{
context.Writer.WritePropertyName("videoPreprocessors");
context.Writer.WriteObjectStart();
var marshaller = VideoPreprocessorMarshaller.Instance;
marshaller.Marshall(requestObject.VideoPreprocessors, context);
context.Writer.WriteObjectEnd();
}
if(requestObject.IsSetWidth())
{
context.Writer.WritePropertyName("width");
context.Writer.Write(requestObject.Width);
}
}
///
/// Singleton Marshaller.
///
public readonly static VideoDescriptionMarshaller Instance = new VideoDescriptionMarshaller();
}
}