From e64a6927807f27c32e304f5163b6b83f635623f1 Mon Sep 17 00:00:00 2001 From: Laurent Fasnacht Date: Tue, 8 Jul 2014 09:06:31 +0200 Subject: [PATCH] Add CU type in threadqueue.log --- src/search.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.c b/src/search.c index 69a21ffe..ebb4cd94 100644 --- a/src/search.c +++ b/src/search.c @@ -1210,7 +1210,7 @@ static int search_cu(encoder_state * const encoder_state, int x, int y, int dept } } - PERFORMANCE_MEASURE_END(encoder_state->encoder_control->threadqueue, "type=search_cu,frame=%d,tile=%d,slice=%d,x=%d,y=%d,depth=%d,split=%d", encoder_state->global->frame, encoder_state->tile->id, encoder_state->slice->id, x, y, depth, debug_split); + PERFORMANCE_MEASURE_END(encoder_state->encoder_control->threadqueue, "type=search_cu,frame=%d,tile=%d,slice=%d,x=%d,y=%d,depth=%d,split=%d,cur_cu_is_intra=%d", encoder_state->global->frame, encoder_state->tile->id, encoder_state->slice->id, x, y, depth, debug_split, (cur_cu->type==CU_INTRA)?1:0); return cost; }