mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
aacenc: Fill in the estimated codebook for the final computed scalefactor in the TLS.
Originally committed as revision 23869 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
7ca4a72f47
commit
804d489c4a
@ -704,7 +704,6 @@ static void search_for_quantizers_twoloop(AVCodecContext *avctx,
|
|||||||
}
|
}
|
||||||
minscaler = FFMIN(minscaler, sce->sf_idx[w*16+g]);
|
minscaler = FFMIN(minscaler, sce->sf_idx[w*16+g]);
|
||||||
cb = find_min_book(find_max_val(sce->ics.group_len[w], sce->ics.swb_sizes[g], scaled), sce->sf_idx[w*16+g]);
|
cb = find_min_book(find_max_val(sce->ics.group_len[w], sce->ics.swb_sizes[g], scaled), sce->sf_idx[w*16+g]);
|
||||||
sce->band_type[w*16+g] = cb;
|
|
||||||
for (w2 = 0; w2 < sce->ics.group_len[w]; w2++) {
|
for (w2 = 0; w2 < sce->ics.group_len[w]; w2++) {
|
||||||
int b;
|
int b;
|
||||||
dist += quantize_band_cost(s, coefs + w2*128,
|
dist += quantize_band_cost(s, coefs + w2*128,
|
||||||
@ -748,12 +747,15 @@ static void search_for_quantizers_twoloop(AVCodecContext *avctx,
|
|||||||
start = w*128;
|
start = w*128;
|
||||||
for (g = 0; g < sce->ics.num_swb; g++) {
|
for (g = 0; g < sce->ics.num_swb; g++) {
|
||||||
int prevsc = sce->sf_idx[w*16+g];
|
int prevsc = sce->sf_idx[w*16+g];
|
||||||
|
const float *scaled = s->scoefs + start;
|
||||||
if (dists[w*16+g] > uplims[w*16+g] && sce->sf_idx[w*16+g] > 60)
|
if (dists[w*16+g] > uplims[w*16+g] && sce->sf_idx[w*16+g] > 60)
|
||||||
sce->sf_idx[w*16+g]--;
|
sce->sf_idx[w*16+g]--;
|
||||||
sce->sf_idx[w*16+g] = av_clip(sce->sf_idx[w*16+g], minscaler, minscaler + SCALE_MAX_DIFF);
|
sce->sf_idx[w*16+g] = av_clip(sce->sf_idx[w*16+g], minscaler, minscaler + SCALE_MAX_DIFF);
|
||||||
sce->sf_idx[w*16+g] = FFMIN(sce->sf_idx[w*16+g], 219);
|
sce->sf_idx[w*16+g] = FFMIN(sce->sf_idx[w*16+g], 219);
|
||||||
if (sce->sf_idx[w*16+g] != prevsc)
|
if (sce->sf_idx[w*16+g] != prevsc)
|
||||||
fflag = 1;
|
fflag = 1;
|
||||||
|
sce->band_type[w*16+g] = find_min_book(find_max_val(sce->ics.group_len[w], sce->ics.swb_sizes[g], scaled), sce->sf_idx[w*16+g]);
|
||||||
|
start += sce->ics.swb_sizes[g];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
its++;
|
its++;
|
||||||
|
Loading…
Reference in New Issue
Block a user