Mercurial > libavcodec.hg
changeset 3862:ee9379fc77a9 libavcodec
Original Commit: r62 | ods15 | 2006-09-25 13:12:07 +0300 (Mon, 25 Sep 2006) | 2 lines
api change for floor_encode
author | ods15 |
---|---|
date | Mon, 02 Oct 2006 06:07:51 +0000 |
parents | b98ea563e9bc |
children | 2c8d1cadd86e |
files | vorbis_enc.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/vorbis_enc.c Mon Oct 02 06:07:49 2006 +0000 +++ b/vorbis_enc.c Mon Oct 02 06:07:51 2006 +0000 @@ -664,7 +664,7 @@ } } -static void floor_encode(venc_context_t * venc, floor_t * fc, PutBitContext * pb, float * floor, int samples) { +static void floor_encode(venc_context_t * venc, floor_t * fc, PutBitContext * pb, int * posts, float * floor, int samples) { int range = 255 / fc->multiplier + 1; int j; put_bits(pb, 1, 1); // non zero @@ -845,7 +845,7 @@ floor_t * fc = &venc->floors[mapping->floor[mapping->mux[i]]]; int posts[fc->values]; floor_fit(venc, fc, &venc->coeffs[i * samples], posts, samples); - floor_encode(venc, fc, &pb, &venc->floor[i * samples], samples); + floor_encode(venc, fc, &pb, posts, &venc->floor[i * samples], samples); } for (i = 0; i < venc->channels; i++) {