Add CU type in threadqueue.log

This commit is contained in:
Laurent Fasnacht 2014-07-08 09:06:31 +02:00
parent abfbb7cad3
commit e64a692780

View file

@ -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;
}