media/codec: disable temporarily HEVC/H265

Add a new codec in the codec container creates an offset in the list of active codecs in config.yml file

Change-Id: I8148b921947317761ffd5840392f8f11d3696797
This commit is contained in:
Pierre Lespagnol
2020-02-06 12:53:56 -05:00
parent daa6effb81
commit ebd77cf1fb

View File

@ -61,12 +61,12 @@ SystemCodecContainer::initCodecConfig()
availableCodecList_ = {
#ifdef ENABLE_VIDEO
/* Define supported video codec*/
std::make_shared<SystemVideoCodecInfo>(AV_CODEC_ID_HEVC,
"H265", "",
CODEC_ENCODER_DECODER,
defaultBitrate,
minH265,
maxH265),
// std::make_shared<SystemVideoCodecInfo>(AV_CODEC_ID_HEVC,
// "H265", "",
// CODEC_ENCODER_DECODER,
// defaultBitrate,
// minH265,
// maxH265),
std::make_shared<SystemVideoCodecInfo>(AV_CODEC_ID_H264,
"H264", "libx264",
@ -131,7 +131,7 @@ SystemCodecContainer::initCodecConfig()
CODEC_ENCODER_DECODER,
64, 8000, 1, 0),
};
setActiveH265();
// setActiveH265();
checkInstalledCodecs();
}