diff options
author | John Stebbins <[email protected]> | 2016-05-18 10:35:25 -0600 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-05-18 10:35:25 -0600 |
commit | c90c56d457427ee310f356bd140f8afd4fb446f0 (patch) | |
tree | a0904a4279ab6cfc484aecf105febb04ab472594 /libhb | |
parent | 05fff65c1434be8109dae6858cdfc100689e28ae (diff) |
work: add log to track work object shutdown
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/work.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/work.c b/libhb/work.c index 858f69940..00573fce1 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -1907,6 +1907,7 @@ void hb_work_loop( void * _w ) // Consume data in incoming fifo till job completes so that // residual data does not stall the pipeline. There can be // residual data during point-to-point encoding. + hb_deep_log(3, "worker %s waiting to die", w->name); while ((w->die == NULL || !*w->die) && !*w->done && w->fifo_in != NULL) { |