1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-12 13:44:56 +02:00

aom: allow low bitdepth path for decoder

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
(cherry picked from commit 2119712aec)
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
This commit is contained in:
Tristan Matthews 2017-12-18 10:10:50 -05:00 committed by Jean-Baptiste Kempf
parent 6b2e61dcc9
commit 3a6c787c06

View File

@ -264,7 +264,8 @@ static int OpenDecoder(vlc_object_t *p_this)
dec->p_sys = sys;
struct aom_codec_dec_cfg deccfg = {
.threads = __MIN(vlc_GetCPUCount(), 16)
.threads = __MIN(vlc_GetCPUCount(), 16),
.allow_lowbitdepth = 1
};
msg_Dbg(p_this, "AV%d: using libaom version %s (build options %s)",