diff options
author | saintdev <[email protected]> | 2008-02-27 04:24:51 +0000 |
---|---|---|
committer | saintdev <[email protected]> | 2008-02-27 04:24:51 +0000 |
commit | ed5556d6bc9f5f7c22a1068f55867881df046869 (patch) | |
tree | 45a73fe2712039bde00842729088f77796386619 /libhb/encvorbis.c | |
parent | 765e830b3a5512812507ba007460357d093f8a67 (diff) |
libvorbis expects kbps, not bps.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1318 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/encvorbis.c')
-rw-r--r-- | libhb/encvorbis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/encvorbis.c b/libhb/encvorbis.c index d5b9a74ee..b94366e09 100644 --- a/libhb/encvorbis.c +++ b/libhb/encvorbis.c @@ -80,7 +80,7 @@ int encvorbisInit( hb_work_object_t * w, hb_job_t * job ) hb_log( "encvorbis: vorbis_encode_ctl( ratemanage2_get ) failed" ); } - ctl_rate_arg.bitrate_average_kbps = 1000 * job->abitrate; + ctl_rate_arg.bitrate_average_kbps = job->abitrate; ctl_rate_arg.management_active = 1; if( vorbis_encode_ctl( &pv->vi, OV_ECTL_RATEMANAGE2_SET, &ctl_rate_arg ) || |