/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include 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(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(enumValue)); } return {}; } } } // namespace M2tsSegmentationMarkersMapper } // namespace Model } // namespace MediaConvert } // namespace Aws