Skip to content
Snippets Groups Projects
Commit ebd77cf1 authored by Pierre Lespagnol's avatar Pierre Lespagnol
Browse files

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
parent daa6effb
No related branches found
No related tags found
No related merge requests found
...@@ -61,12 +61,12 @@ SystemCodecContainer::initCodecConfig() ...@@ -61,12 +61,12 @@ SystemCodecContainer::initCodecConfig()
availableCodecList_ = { availableCodecList_ = {
#ifdef ENABLE_VIDEO #ifdef ENABLE_VIDEO
/* Define supported video codec*/ /* Define supported video codec*/
std::make_shared<SystemVideoCodecInfo>(AV_CODEC_ID_HEVC, // std::make_shared<SystemVideoCodecInfo>(AV_CODEC_ID_HEVC,
"H265", "", // "H265", "",
CODEC_ENCODER_DECODER, // CODEC_ENCODER_DECODER,
defaultBitrate, // defaultBitrate,
minH265, // minH265,
maxH265), // maxH265),
std::make_shared<SystemVideoCodecInfo>(AV_CODEC_ID_H264, std::make_shared<SystemVideoCodecInfo>(AV_CODEC_ID_H264,
"H264", "libx264", "H264", "libx264",
...@@ -131,7 +131,7 @@ SystemCodecContainer::initCodecConfig() ...@@ -131,7 +131,7 @@ SystemCodecContainer::initCodecConfig()
CODEC_ENCODER_DECODER, CODEC_ENCODER_DECODER,
64, 8000, 1, 0), 64, 8000, 1, 0),
}; };
setActiveH265(); // setActiveH265();
checkInstalledCodecs(); checkInstalledCodecs();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment