diff options
author | jstebbins <[email protected]> | 2012-09-11 13:51:59 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2012-09-11 13:51:59 +0000 |
commit | fbabf5e2dd8ca9593f4d731fbc1dd81707de6832 (patch) | |
tree | b119b9c4d13384473f70efc1155b67b399c1f227 | |
parent | cc4f4495b5b5f740bba085679c0d0d4ce354f64f (diff) |
libhb: fix logs for decomb threads
Several threads used the exact same log message when starting which is
confusing.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4956 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | libhb/decomb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/decomb.c b/libhb/decomb.c index 56f21e385..9f4026da6 100644 --- a/libhb/decomb.c +++ b/libhb/decomb.c @@ -1115,7 +1115,7 @@ void mask_dilate_thread( void *thread_args_v ) pv = thread_args->pv; segment = thread_args->segment; - hb_log("mask filter thread started for segment %d", segment); + hb_log("mask dialate thread started for segment %d", segment); while (1) { @@ -1217,7 +1217,7 @@ void mask_erode_thread( void *thread_args_v ) pv = thread_args->pv; segment = thread_args->segment; - hb_log("mask filter thread started for segment %d", segment); + hb_log("mask erode thread started for segment %d", segment); while (1) { @@ -1422,7 +1422,7 @@ void decomb_check_thread( void *thread_args_v ) pv = thread_args->pv; segment = thread_args->segment; - hb_log("mask filter thread started for segment %d", segment); + hb_log("decomb check thread started for segment %d", segment); while (1) { |