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
Branches
No related tags found
No related merge requests found
......@@ -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();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment