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/M2tsSegmentationMarkers.cpp

99 lines
3.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/mediaconvert/model/M2tsSegmentationMarkers.h>
#include <aws/core/utils/HashingUtils.h>
#include <aws/core/Globals.h>
#include <aws/core/utils/EnumParseOverflowContainer.h>
using namespace Aws::Utils;
namespace Aws
{
namespace MediaConvert
{
namespace Model
{
namespace M2tsSegmentationMarkersMapper
{
static const int NONE_HASH = HashingUtils::HashString("NONE");
static const int RAI_SEGSTART_HASH = HashingUtils::HashString("RAI_SEGSTART");
static const int RAI_ADAPT_HASH = HashingUtils::HashString("RAI_ADAPT");
static const int PSI_SEGSTART_HASH = HashingUtils::HashString("PSI_SEGSTART");
static const int EBP_HASH = HashingUtils::HashString("EBP");
static const int EBP_LEGACY_HASH = HashingUtils::HashString("EBP_LEGACY");
M2tsSegmentationMarkers GetM2tsSegmentationMarkersForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == NONE_HASH)
{
return M2tsSegmentationMarkers::NONE;
}
else if (hashCode == RAI_SEGSTART_HASH)
{
return M2tsSegmentationMarkers::RAI_SEGSTART;
}
else if (hashCode == RAI_ADAPT_HASH)
{
return M2tsSegmentationMarkers::RAI_ADAPT;
}
else if (hashCode == PSI_SEGSTART_HASH)
{
return M2tsSegmentationMarkers::PSI_SEGSTART;
}
else if (hashCode == EBP_HASH)
{
return M2tsSegmentationMarkers::EBP;
}
else if (hashCode == EBP_LEGACY_HASH)
{
return M2tsSegmentationMarkers::EBP_LEGACY;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<M2tsSegmentationMarkers>(hashCode);
}
return M2tsSegmentationMarkers::NOT_SET;
}
Aws::String GetNameForM2tsSegmentationMarkers(M2tsSegmentationMarkers enumValue)
{
switch(enumValue)
{
case M2tsSegmentationMarkers::NONE:
return "NONE";
case M2tsSegmentationMarkers::RAI_SEGSTART:
return "RAI_SEGSTART";
case M2tsSegmentationMarkers::RAI_ADAPT:
return "RAI_ADAPT";
case M2tsSegmentationMarkers::PSI_SEGSTART:
return "PSI_SEGSTART";
case M2tsSegmentationMarkers::EBP:
return "EBP";
case M2tsSegmentationMarkers::EBP_LEGACY:
return "EBP_LEGACY";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace M2tsSegmentationMarkersMapper
} // namespace Model
} // namespace MediaConvert
} // namespace Aws