mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 10:34:05 +00:00
Add missing info to threadqueue.log
This commit is contained in:
parent
7ecf78bb70
commit
f62e571c15
|
@ -554,7 +554,7 @@ static void encoder_state_encode(encoder_state * const main_state) {
|
||||||
threadqueue_job *job;
|
threadqueue_job *job;
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
char job_description[256];
|
char job_description[256];
|
||||||
sprintf(job_description, "frame=%d,tile=%d,position_y=%d", main_state->global->frame, main_state->tile->id, y + main_state->tile->lcu_offset_y);
|
sprintf(job_description, "type=sao,frame=%d,tile=%d,position_y=%d", main_state->global->frame, main_state->tile->id, y + main_state->tile->lcu_offset_y);
|
||||||
#else
|
#else
|
||||||
char* job_description = NULL;
|
char* job_description = NULL;
|
||||||
#endif
|
#endif
|
||||||
|
@ -697,7 +697,7 @@ void encode_one_frame(encoder_state * const main_state)
|
||||||
threadqueue_job *job;
|
threadqueue_job *job;
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
char job_description[256];
|
char job_description[256];
|
||||||
sprintf(job_description, "frame=%d", main_state->global->frame);
|
sprintf(job_description, "type=write_bitstream,frame=%d", main_state->global->frame);
|
||||||
#else
|
#else
|
||||||
char* job_description = NULL;
|
char* job_description = NULL;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue