diff options
Diffstat (limited to 'mm-core/src/registry_table.c')
-rw-r--r-- | mm-core/src/registry_table.c | 13 |
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); |