summaryrefslogtreecommitdiff
path: root/mm-core/src/registry_table.c
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2019-07-19 02:22:01 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2019-07-19 02:22:01 -0700
commit5c55196bbb41cb6900d463d48e7f901b99755c12 (patch)
tree103d63793c9eb0fa3ea1e0f522f33b44adfb70a1 /mm-core/src/registry_table.c
parentdfe9af577348487b9405e32e6d9e6ef518c92c27 (diff)
parent1109e68cd69c04f3eb78928bc81b7a3f31a5c129 (diff)
Merge "atoll: disable vc1 decoder for atoll" into video-userspace.lnx.4.2
Diffstat (limited to 'mm-core/src/registry_table.c')
-rw-r--r--mm-core/src/registry_table.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/mm-core/src/registry_table.c b/mm-core/src/registry_table.c
index 5837a0c2..1e7cca07 100644
--- a/mm-core/src/registry_table.c
+++ b/mm-core/src/registry_table.c
@@ -1,5 +1,5 @@
/*--------------------------------------------------------------------------
-Copyright (c) 2018, The Linux Foundation. All rights reserved.
+Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
@@ -42,8 +42,6 @@ omx_core_cb_type core[] =
//Common entries
OMX_REGISTRY_ENTRY("OMX.qcom.video.decoder.avc", "libOmxVdec.so", "video_decoder.avc"),
OMX_REGISTRY_ENTRY("OMX.qcom.video.decoder.avc.dsmode", "libOmxVideoDSMode.so", "video_decoder.avc"),
- OMX_REGISTRY_ENTRY("OMX.qti.video.decoder.vc1sw", "libOmxSwVdec.so", "video_decoder.vc1"),
- OMX_REGISTRY_ENTRY("OMX.qti.video.decoder.wmvsw", "libOmxSwVdec.so", "video_decoder.vc1"),
OMX_REGISTRY_ENTRY("OMX.qcom.file.muxer", "libOmxMux.so", "container_muxer.mp2"),
OMX_REGISTRY_ENTRY("OMX.qcom.video.decoder.hevc", "libOmxVdec.so", "video_decoder.hevc"),
OMX_REGISTRY_ENTRY("OMX.qcom.video.decoder.vp8", "libOmxVdec.so", "video_decoder.vp8"),
@@ -78,11 +76,16 @@ omx_core_cb_type core[] =
//Entries specific to msmnile
#endif //_NILE_
-#ifdef _STEPPE_
+#if defined(_STEPPE_) || defined(_ATOLL_)
//Entries specific to msmsteppe
OMX_REGISTRY_ENTRY("OMX.qcom.video.encoder.tme", "libOmxVenc.so", "video_encoder.tme"),
OMX_REGISTRY_ENTRY("OMX.qcom.video.encoder.tme.secure", "libOmxVenc.so", "video_encoder.tme"),
-#endif //_STEPPE_
+#endif //_STEPPE_ || _ATOLL_
+
+#ifndef _ATOLL_
+ OMX_REGISTRY_ENTRY("OMX.qti.video.decoder.vc1sw", "libOmxSwVdec.so", "video_decoder.vc1"),
+ OMX_REGISTRY_ENTRY("OMX.qti.video.decoder.wmvsw", "libOmxSwVdec.so", "video_decoder.vc1"),
+#endif //_ATOLL_
};
const unsigned int SIZE_OF_CORE = sizeof(core) / sizeof(omx_core_cb_type);