diff options
author | Rodeo <[email protected]> | 2012-02-17 21:45:52 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2012-02-17 21:45:52 +0000 |
commit | d3d7b47d15398fca3d8594b7c117fcf541548681 (patch) | |
tree | f0903e70463b2ab592aa53cc50bccad8807f9ff0 /libhb/common.h | |
parent | 7912c65ff58fdc25d5a9e390ac73370fc898dfdb (diff) |
Print more Auto Passthru information to the Activity Log: passthru mask (allowed codecs), fallback encoder.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4454 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h index 52e1d9630..d8ba0efa6 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -192,6 +192,7 @@ int hb_get_audio_encoders_count(); int hb_mixdown_get_mixdown_from_short_name( const char * short_name ); const char * hb_mixdown_get_short_name_from_mixdown( int amixdown ); void hb_autopassthru_apply_settings( hb_job_t * job, hb_title_t * title ); +void hb_autopassthru_print_settings( hb_job_t * job ); int hb_autopassthru_get_encoder( int in_codec, int copy_mask, int fallback, int muxer ); int hb_get_best_mixdown( uint32_t codec, int layout, int mixdown ); int hb_get_default_mixdown( uint32_t codec, int layout ); @@ -905,6 +906,7 @@ typedef void hb_error_handler_t( const char *errmsg ); extern void hb_register_error_handler( hb_error_handler_t * handler ); char * hb_strdup_printf(const char *fmt, ...) HB_WPRINTF(1, 2); +char * hb_strncat_dup( const char * s1, const char * s2, size_t n ); int hb_yuv2rgb(int yuv); int hb_rgb2yuv(int rgb); |