diff options
author | Rodeo <[email protected]> | 2012-06-27 13:30:26 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2012-06-27 13:30:26 +0000 |
commit | 61cdce11c3522ca680c14263b4bfff59f046b89b (patch) | |
tree | 6881fb2d3ab4856eea44e00eeab8dcaa6a5d49b0 /libhb/common.h | |
parent | 39866ea0d97700256a6c88aad0a4dcddc900a3b0 (diff) |
Fix hb_mixdown_get_discrete_channel_count for HB_AMIXDOWN_NONE (passthrough).
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4783 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/common.h b/libhb/common.h index c55f49ad7..16c7acff8 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -197,9 +197,9 @@ int hb_get_video_encoders_count(); hb_encoder_t* hb_get_audio_encoders(); int hb_get_audio_encoders_count(); -int hb_mixdown_get_discrete_channel_count( int amixdown ); -int hb_mixdown_get_mixdown_from_short_name( const char * short_name ); -const char * hb_mixdown_get_short_name_from_mixdown( int amixdown ); +int hb_mixdown_get_discrete_channel_count(int amixdown); +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 ); |