diff options
author | Thuy Tran <thuy.tran.xh@rvc.renesas.com> | 2017-12-14 18:08:54 +0700 |
---|---|---|
committer | Thuy Tran <thuy.tran.xh@rvc.renesas.com> | 2018-01-30 10:07:59 +0700 |
commit | 33c95f43d445e605cae04d548d73495fc4c64036 (patch) | |
tree | 7e593eaa40d7725e587810d50b5bddd41a2e1402 /meta-rcar-gen3/include | |
parent | bab2a0118b76ff7aa82fa246e6503e9887fde86d (diff) |
rcar-gen3: omx-user-module: Update OMX Audio/Video packages
This commit updates OMX Audio/Video new package names.
Signed-off-by: Thuy Tran <thuy.tran.xh@rvc.renesas.com>
Signed-off-by: Takamitsu Honda <takamitsu.honda.pv@renesas.com>
Diffstat (limited to 'meta-rcar-gen3/include')
-rw-r--r-- | meta-rcar-gen3/include/omx-control.inc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/meta-rcar-gen3/include/omx-control.inc b/meta-rcar-gen3/include/omx-control.inc index 6c630f8..caaa994 100644 --- a/meta-rcar-gen3/include/omx-control.inc +++ b/meta-rcar-gen3/include/omx-control.inc @@ -68,6 +68,15 @@ USE_DD_MDW = "${@'1' if 'dddec_mdw' in '${DISTRO_FEATURES}' else '0'}" # USE_AACLCE_OMX for AAC-LC encoder middleware Library USE_AACLCE_MDW = "${@'1' if 'aaclcenc_mdw' in '${DISTRO_FEATURES}' else '0'}" +# USE_VP8D_OMX for OMX Media Component VP8 Decoder Library +USE_VP8D_OMX = "${@'1' if 'vp8dec_lib' in '${DISTRO_FEATURES}' else '0'}" + +# USE_VP8E_OMX for OMX Media Component VP8 Encoder Library +USE_VP8E_OMX = "${@'1' if 'vp8enc_lib' in '${DISTRO_FEATURES}' else '0'}" + +# USE_VP9D_OMX for OMX Media Component VP9 Decoder Library +USE_VP9D_OMX = "${@'1' if 'vp9dec_lib' in '${DISTRO_FEATURES}' else '0'}" + # OMX Video Decoder Flag list LIST_OMX_VIDEO_DEC_FLAG = " \ ${USE_H263D_OMX} \ @@ -78,11 +87,14 @@ LIST_OMX_VIDEO_DEC_FLAG = " \ ${USE_VC1D_OMX} \ ${USE_DIVXD_OMX} \ ${USE_RVD_OMX} \ + ${USE_VP8D_OMX} \ + ${USE_VP9D_OMX} \ " # OMX Video Encoder Flag list LIST_OMX_VIDEO_ENC_FLAG = " \ ${USE_H264E_OMX} \ + ${USE_VP8E_OMX} \ " # OMX Audio Flag list (except MDW) |