aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGu, Wangyi <wangyi.gu@intel.com>2013-05-14 13:47:27 +0800
committerPatrick Tjin <pattjin@google.com>2014-07-21 22:02:52 -0700
commitd8c394df484c6fda8009b7c5d51166e271d3d2bd (patch)
treefa805d05f3ef11775ad323ef3aad5e7b7a3c4c42
parentd993bb5cce02b0f18b2ce17d2c9618903f8e6222 (diff)
downloadandroid_hardware_intel_common_omx-components-d8c394df484c6fda8009b7c5d51166e271d3d2bd.tar.gz
android_hardware_intel_common_omx-components-d8c394df484c6fda8009b7c5d51166e271d3d2bd.tar.bz2
android_hardware_intel_common_omx-components-d8c394df484c6fda8009b7c5d51166e271d3d2bd.zip
[MERR_VV][Movie studio] support videoedit to import level 4.2 video clips
BZ: 107743 support videoedit to import level 4.2 video clips Change-Id: Icfe0f743b7db50b51efcd57eb03e5a4902c85c0f Signed-off-by: Gu, Wangyi <wangyi.gu@intel.com> Reviewed-on: http://android.intel.com:8080/107450 Reviewed-by: cactus <cactus@intel.com> Reviewed-by: Feng, Wei <wei.feng@intel.com> Reviewed-by: Shi, PingX <pingx.shi@intel.com> Tested-by: Shi, PingX <pingx.shi@intel.com> Reviewed-by: buildbot <buildbot@intel.com> Tested-by: buildbot <buildbot@intel.com>
-rw-r--r--videocodec/OMXVideoDecoderAVC.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/videocodec/OMXVideoDecoderAVC.cpp b/videocodec/OMXVideoDecoderAVC.cpp
index f922519..1a1afd6 100644
--- a/videocodec/OMXVideoDecoderAVC.cpp
+++ b/videocodec/OMXVideoDecoderAVC.cpp
@@ -293,9 +293,9 @@ OMX_ERRORTYPE OMXVideoDecoderAVC::GetParamVideoAVCProfileLevel(OMX_PTR pStructur
OMX_U32 profile;
OMX_U32 level;
} plTable[] = {
- {OMX_VIDEO_AVCProfileBaseline, OMX_VIDEO_AVCLevel41},
- {OMX_VIDEO_AVCProfileMain, OMX_VIDEO_AVCLevel41},
- {OMX_VIDEO_AVCProfileHigh, OMX_VIDEO_AVCLevel41}
+ {OMX_VIDEO_AVCProfileBaseline, OMX_VIDEO_AVCLevel42},
+ {OMX_VIDEO_AVCProfileMain, OMX_VIDEO_AVCLevel42},
+ {OMX_VIDEO_AVCProfileHigh, OMX_VIDEO_AVCLevel42}
};
OMX_U32 count = sizeof(plTable)/sizeof(ProfileLevelTable);