summaryrefslogtreecommitdiff
path: root/omx/video/src/openmax_il/video_decode/src/OMX_VideoDec_Utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'omx/video/src/openmax_il/video_decode/src/OMX_VideoDec_Utils.c')
-rw-r--r--omx/video/src/openmax_il/video_decode/src/OMX_VideoDec_Utils.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/omx/video/src/openmax_il/video_decode/src/OMX_VideoDec_Utils.c b/omx/video/src/openmax_il/video_decode/src/OMX_VideoDec_Utils.c
index bb6e591..ce8fc95 100644
--- a/omx/video/src/openmax_il/video_decode/src/OMX_VideoDec_Utils.c
+++ b/omx/video/src/openmax_il/video_decode/src/OMX_VideoDec_Utils.c
@@ -2386,7 +2386,7 @@ OMX_ERRORTYPE VIDDEC_HandleCommand (OMX_HANDLETYPE phandle, OMX_U32 nParam1)
switch (nParam1) {
case OMX_StateIdle:
- LOGD("Handle request for state transition: %d => OMX_StateIdle", pComponentPrivate->eState);
+ ALOGD("Handle request for state transition: %d => OMX_StateIdle", pComponentPrivate->eState);
if (pComponentPrivate->eState == OMX_StateIdle) {
eError = OMX_ErrorSameState;
OMX_PRSTATE4(pComponentPrivate->dbg, "Same State 0x%x\n", eError);
@@ -2732,7 +2732,7 @@ OMX_ERRORTYPE VIDDEC_HandleCommand (OMX_HANDLETYPE phandle, OMX_U32 nParam1)
OMX_CommandStateSet,
pComponentPrivate->eState,
NULL);
- LOGD("OMX_StateIdle state reached");
+ ALOGD("OMX_StateIdle state reached");
break;
}
else if (pComponentPrivate->eState == OMX_StateExecuting || pComponentPrivate->eState == OMX_StatePause) {
@@ -2815,7 +2815,7 @@ OMX_ERRORTYPE VIDDEC_HandleCommand (OMX_HANDLETYPE phandle, OMX_U32 nParam1)
OMX_CommandStateSet,
pComponentPrivate->eState,
NULL);
- LOGD("OMX_StateIdle state reached");
+ ALOGD("OMX_StateIdle state reached");
eError = OMX_ErrorNone;
pComponentPrivate->bTransPause = 0;
pComponentPrivate->bIsPaused = 0;
@@ -9082,7 +9082,7 @@ OMX_ERRORTYPE VIDDEC_SetMpeg4_Parameters(VIDDEC_COMPONENT_PRIVATE* pComponentPri
property_get("deblocking.video.disableIfD1", value, "0");
mDisableDeblockingIfD1 = atoi(value);
- LOGD_IF(mDisableDeblockingIfD1, "Disabling deblocking if D1 resolution");
+ ALOGD_IF(mDisableDeblockingIfD1, "Disabling deblocking if D1 resolution");
OMX_PRDSP2(pComponentPrivate->dbg,"Initializing DSP for mpeg4 and h263 eCompressionFormat 0x%x\n",
pComponentPrivate->pInPortDef->format.video.eCompressionFormat);
@@ -9111,7 +9111,7 @@ OMX_ERRORTYPE VIDDEC_SetMpeg4_Parameters(VIDDEC_COMPONENT_PRIVATE* pComponentPri
if(pComponentPrivate->pOutPortDef->format.video.nFrameWidth > 480 ||
pComponentPrivate->pOutPortDef->format.video.nFrameHeight > 480){
bDisDeblocking = OMX_TRUE;
- LOGD("D1 or higher resolution: Disable Deblocking!!");
+ ALOGD("D1 or higher resolution: Disable Deblocking!!");
}
}