[mpp]: remove unnecessary log

Change-Id: Ic8b66fdabc6b3009755575eb8cb7e1ead332deb8
Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
This commit is contained in:
Herman Chen
2016-08-22 18:24:27 +08:00
parent 72a6e3b06a
commit 1e3649830e
2 changed files with 4 additions and 4 deletions

View File

@@ -3032,7 +3032,7 @@ MPP_RET hal_h264e_rkv_gen_regs(void *hal, HalTaskInfo *task)
hal_h264e_rkv_adjust_param(ctx); //TODO: future expansion
mpp_log("frame_cnt %d start gen regs", ctx->frame_cnt);
h264e_hal_log_detail("frame_cnt %d start gen regs", ctx->frame_cnt);
if (ctx->frame_cnt == 0) {
if (MPP_OK != hal_h264e_rkv_allocate_buffers(ctx, syn, sps, test_cfg)) {
@@ -3501,12 +3501,12 @@ static MPP_RET hal_h264e_rkv_set_feedback(h264e_feedback *fb, h264e_rkv_ioctl_ou
fb->out_strm_size = elem->swreg69.bs_lgth;
fb->hw_status = 0;
mpp_log("hw_status: 0x%08x", elem->hw_status);
h264e_hal_log_detail("hw_status: 0x%08x", elem->hw_status);
if(elem->hw_status & RKV_H264E_INT_LINKTABLE_FINISH) {
h264e_hal_log_err("RKV_H264E_INT_LINKTABLE_FINISH");
}
if(elem->hw_status & RKV_H264E_INT_ONE_FRAME_FINISH) {
h264e_hal_log_err("RKV_H264E_INT_ONE_FRAME_FINISH");
h264e_hal_log_detail("RKV_H264E_INT_ONE_FRAME_FINISH");
}
if(elem->hw_status & RKV_H264E_INT_ONE_SLICE_FINISH) {
h264e_hal_log_err("RKV_H264E_INT_ONE_SLICE_FINISH");

View File

@@ -374,7 +374,7 @@ MPP_RET mpp_create(MppCtx *ctx, MppApi **mpi)
*mpi = p->api;
} while (0);
mpp_log("mpp version: %d\n", mpp_api.version);
mpp_log("mpp version: %s\n", mpp_info_get(INFO_ALL));
mpi_dbg_func("leave ret %d ctx %p mpi %p\n", ret, *ctx, *mpi);
return ret;