91 lines
2.9 KiB
C
91 lines
2.9 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/mediaconvert/MediaConvert_EXPORTS.h>
|
|||
|
|
#include <aws/mediaconvert/model/F4vMoovPlacement.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace MediaConvert
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* Settings for F4v container<p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/F4vSettings">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_MEDIACONVERT_API F4vSettings
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
F4vSettings();
|
|||
|
|
F4vSettings(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
F4vSettings& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of
|
|||
|
|
* the archive as required for progressive downloading. Otherwise it is placed
|
|||
|
|
* normally at the end.
|
|||
|
|
*/
|
|||
|
|
inline const F4vMoovPlacement& GetMoovPlacement() const{ return m_moovPlacement; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of
|
|||
|
|
* the archive as required for progressive downloading. Otherwise it is placed
|
|||
|
|
* normally at the end.
|
|||
|
|
*/
|
|||
|
|
inline bool MoovPlacementHasBeenSet() const { return m_moovPlacementHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of
|
|||
|
|
* the archive as required for progressive downloading. Otherwise it is placed
|
|||
|
|
* normally at the end.
|
|||
|
|
*/
|
|||
|
|
inline void SetMoovPlacement(const F4vMoovPlacement& value) { m_moovPlacementHasBeenSet = true; m_moovPlacement = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of
|
|||
|
|
* the archive as required for progressive downloading. Otherwise it is placed
|
|||
|
|
* normally at the end.
|
|||
|
|
*/
|
|||
|
|
inline void SetMoovPlacement(F4vMoovPlacement&& value) { m_moovPlacementHasBeenSet = true; m_moovPlacement = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of
|
|||
|
|
* the archive as required for progressive downloading. Otherwise it is placed
|
|||
|
|
* normally at the end.
|
|||
|
|
*/
|
|||
|
|
inline F4vSettings& WithMoovPlacement(const F4vMoovPlacement& value) { SetMoovPlacement(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of
|
|||
|
|
* the archive as required for progressive downloading. Otherwise it is placed
|
|||
|
|
* normally at the end.
|
|||
|
|
*/
|
|||
|
|
inline F4vSettings& WithMoovPlacement(F4vMoovPlacement&& value) { SetMoovPlacement(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
F4vMoovPlacement m_moovPlacement;
|
|||
|
|
bool m_moovPlacementHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace MediaConvert
|
|||
|
|
} // namespace Aws
|