diff options
author | ritsuka <[email protected]> | 2009-05-23 09:52:40 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2009-05-23 09:52:40 +0000 |
commit | 332c6e0f569985098beae06a8b064ffbe9ae3bce (patch) | |
tree | a73624f8203a9a0bdb890866ea7a0eb96c8705de | |
parent | 9cd4b18874948ed58b5724de086338eb3c036b07 (diff) |
Forgot a comma in common.c .
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2442 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | libhb/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/common.c b/libhb/common.c index b84f907ab..c8e4e07b0 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -31,7 +31,7 @@ hb_rate_t hb_audio_bitrates[] = { { "32", 32 }, { "40", 40 }, { "48", 48 }, { "56", 56 }, { "64", 64 }, { "80", 80 }, { "96", 96 }, { "112", 112 }, { "128", 128 }, { "160", 160 }, { "192", 192 }, { "224", 224 }, - { "256", 256 }, { "320", 320 }, { "384", 384 }, { "448", 448 } + { "256", 256 }, { "320", 320 }, { "384", 384 }, { "448", 448 }, { "768", 768 } }; int hb_audio_bitrates_count = sizeof( hb_audio_bitrates ) / sizeof( hb_rate_t ); |