diff options
author | titer <[email protected]> | 2006-05-03 21:15:47 +0000 |
---|---|---|
committer | titer <[email protected]> | 2006-05-03 21:15:47 +0000 |
commit | 5f8684be8ecc912a8828ae3c21857125255a590b (patch) | |
tree | 46b5544f54bbd446d359b8a20cd0208bbca15a72 /libhb | |
parent | 3d93903c9c4e6c120e2dc487b40985208b186083 (diff) |
Allow 32kHz audio output, updated build instructions.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@69 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/common.c b/libhb/common.c index c9650ab4b..105fa44f5 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -21,11 +21,11 @@ int hb_video_rates_count = sizeof( hb_video_rates ) / sizeof( hb_rate_t ); hb_rate_t hb_audio_rates[] = -{ { "22050", 22050 }, { "24000", 24000 }, - { "44100", 44100 }, { "48000", 48000 } }; +{ { "22.05", 22050 }, { "24", 24000 }, { "32", 32000 }, + { "44.1", 44100 }, { "48", 48000 } }; int hb_audio_rates_count = sizeof( hb_audio_rates ) / sizeof( hb_rate_t ); -int hb_audio_rates_default = 2; /* 44100 Hz */ +int hb_audio_rates_default = 3; /* 44100 Hz */ hb_rate_t hb_audio_bitrates[] = { { "32", 32 }, { "40", 40 }, { "48", 48 }, { "56", 56 }, |