]> granicus.if.org Git - handbrake/commitdiff
Allow 32kHz audio output, updated build instructions.
authortiter <eric@lapsus.org>
Wed, 3 May 2006 21:15:47 +0000 (21:15 +0000)
committertiter <eric@lapsus.org>
Wed, 3 May 2006 21:15:47 +0000 (21:15 +0000)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk/libhb@69 b64f7644-9d1e-0410-96f1-a4d463321fa5

common.c

index c9650ab4bdbce4d6ac7648577568e82d57fa4c4f..105fa44f56a0243d3a2275aa2ff7de8f9a931426 100644 (file)
--- a/common.c
+++ b/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 },