diff options
author | jstebbins <[email protected]> | 2011-06-15 16:38:13 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-06-15 16:38:13 +0000 |
commit | 4d7216fba8652a83821be49cd16cc851b5cc4cd2 (patch) | |
tree | e809a93e3606ebc118f12e75b88fc15fced54bcb /libhb/internal.h | |
parent | 74dd3640936fe30a7be562615a997c30ebe5acb0 (diff) |
libhb: fix a warning in decssasub.c by adding new hb_valog function
And consolidate logging code in hb_valog. hb_log and hb_deep_log
call hb_valog.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4060 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/internal.h')
-rw-r--r-- | libhb/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/internal.h b/libhb/internal.h index f92ce263a..b78072ad8 100644 --- a/libhb/internal.h +++ b/libhb/internal.h @@ -15,6 +15,7 @@ typedef enum hb_debug_level_s HB_HOUSEKEEPING_LOG = 2, // stuff we hate scrolling through HB_GRANULAR_LOG = 3 // sample-by-sample } hb_debug_level_t; +void hb_valog( hb_debug_level_t level, const char * prefix, const char * log, va_list args) HB_WPRINTF(3,0); void hb_deep_log( hb_debug_level_t level, char * log, ... ) HB_WPRINTF(2,3); void hb_error( char * fmt, ...) HB_WPRINTF(1,2); |