Browse Source

sonic: simplify quant cliping

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Michael Niedermayer 12 years ago
parent
commit
4ec7ef56bd
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      libavcodec/sonic.c

+ 1
- 4
libavcodec/sonic.c View File

@@ -722,10 +722,7 @@ static int sonic_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
quant = (int)(BASE_QUANT*s->quantization*energy2/SAMPLE_FACTOR);
// av_log(avctx, AV_LOG_DEBUG, "quant: %d energy: %f / %f\n", quant, energy1, energy2);

if (quant < 1)
quant = 1;
if (quant > 65534)
quant = 65534;
quant = av_clip(quant, 1, 65534);

set_ue_golomb(&pb, quant);



Loading…
Cancel
Save