feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放

This commit is contained in:
彭宣正
2020-12-14 17:24:58 +08:00
parent 505d529c32
commit 10b370e486
55976 changed files with 8544395 additions and 2 deletions

View File

@@ -0,0 +1,133 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/mediaconvert/model/AudioCodec.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 AudioCodecMapper
{
static const int AAC_HASH = HashingUtils::HashString("AAC");
static const int MP2_HASH = HashingUtils::HashString("MP2");
static const int MP3_HASH = HashingUtils::HashString("MP3");
static const int WAV_HASH = HashingUtils::HashString("WAV");
static const int AIFF_HASH = HashingUtils::HashString("AIFF");
static const int AC3_HASH = HashingUtils::HashString("AC3");
static const int EAC3_HASH = HashingUtils::HashString("EAC3");
static const int EAC3_ATMOS_HASH = HashingUtils::HashString("EAC3_ATMOS");
static const int VORBIS_HASH = HashingUtils::HashString("VORBIS");
static const int OPUS_HASH = HashingUtils::HashString("OPUS");
static const int PASSTHROUGH_HASH = HashingUtils::HashString("PASSTHROUGH");
AudioCodec GetAudioCodecForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == AAC_HASH)
{
return AudioCodec::AAC;
}
else if (hashCode == MP2_HASH)
{
return AudioCodec::MP2;
}
else if (hashCode == MP3_HASH)
{
return AudioCodec::MP3;
}
else if (hashCode == WAV_HASH)
{
return AudioCodec::WAV;
}
else if (hashCode == AIFF_HASH)
{
return AudioCodec::AIFF;
}
else if (hashCode == AC3_HASH)
{
return AudioCodec::AC3;
}
else if (hashCode == EAC3_HASH)
{
return AudioCodec::EAC3;
}
else if (hashCode == EAC3_ATMOS_HASH)
{
return AudioCodec::EAC3_ATMOS;
}
else if (hashCode == VORBIS_HASH)
{
return AudioCodec::VORBIS;
}
else if (hashCode == OPUS_HASH)
{
return AudioCodec::OPUS;
}
else if (hashCode == PASSTHROUGH_HASH)
{
return AudioCodec::PASSTHROUGH;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<AudioCodec>(hashCode);
}
return AudioCodec::NOT_SET;
}
Aws::String GetNameForAudioCodec(AudioCodec enumValue)
{
switch(enumValue)
{
case AudioCodec::AAC:
return "AAC";
case AudioCodec::MP2:
return "MP2";
case AudioCodec::MP3:
return "MP3";
case AudioCodec::WAV:
return "WAV";
case AudioCodec::AIFF:
return "AIFF";
case AudioCodec::AC3:
return "AC3";
case AudioCodec::EAC3:
return "EAC3";
case AudioCodec::EAC3_ATMOS:
return "EAC3_ATMOS";
case AudioCodec::VORBIS:
return "VORBIS";
case AudioCodec::OPUS:
return "OPUS";
case AudioCodec::PASSTHROUGH:
return "PASSTHROUGH";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace AudioCodecMapper
} // namespace Model
} // namespace MediaConvert
} // namespace Aws