diff options
author | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-02 06:08:03 +0000 |
---|---|---|
committer | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-02 06:08:03 +0000 |
commit | 65c7236929420d04e244cb087d0405f9fa3792ec (patch) | |
tree | b68058ce09f896d71dde343e132fc7868874922b /libavcodec | |
parent | af1cb7ee4c6fb68904e94dc4cf243ba26b3cbb47 (diff) | |
download | ffmpeg-65c7236929420d04e244cb087d0405f9fa3792ec.tar.gz |
Original Commit: r68 | ods15 | 2006-09-25 21:15:09 +0300 (Mon, 25 Sep 2006) | 2 lines
slightly more compressing, 50% compression now :)
Originally committed as revision 6473 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vorbis_enc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vorbis_enc.c b/libavcodec/vorbis_enc.c index 7c849a7ae6..538a07e865 100644 --- a/libavcodec/vorbis_enc.c +++ b/libavcodec/vorbis_enc.c @@ -372,7 +372,7 @@ static void create_vorbis_context(venc_context_t * venc, AVCodecContext * avccon for (i = 0; i < rc->classifications; i++) { int j; for (j = 0; j < 8; j++) rc->books[i][j] = 2 + j; - //rc->books[i][0] = rc->books[i][1] = rc->books[i][2] = rc->books[i][3] = -1; + rc->books[i][0] = rc->books[i][1] = rc->books[i][2] = rc->books[i][3] = -1; } venc->nmappings = 1; @@ -660,7 +660,7 @@ static void floor_fit(venc_context_t * venc, floor_t * fc, float * coeffs, int * assert(end <= samples); for (j = begin; j < end; j++) average += fabs(coeffs[j]); average /= end - begin; - average /= 5000; // MAGIC! + average /= 32; // MAGIC! for (j = 0; j < range; j++) if (floor1_inverse_db_table[j * fc->multiplier] > average) break; posts[fc->list[i].sort] = j; } |