Commit 4ec7ef56 authored by Michael Niedermayer's avatar Michael Niedermayer

sonic: simplify quant cliping

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent bcb42fb6
...@@ -722,10 +722,7 @@ static int sonic_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, ...@@ -722,10 +722,7 @@ static int sonic_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
quant = (int)(BASE_QUANT*s->quantization*energy2/SAMPLE_FACTOR); quant = (int)(BASE_QUANT*s->quantization*energy2/SAMPLE_FACTOR);
// av_log(avctx, AV_LOG_DEBUG, "quant: %d energy: %f / %f\n", quant, energy1, energy2); // av_log(avctx, AV_LOG_DEBUG, "quant: %d energy: %f / %f\n", quant, energy1, energy2);
if (quant < 1) quant = av_clip(quant, 1, 65534);
quant = 1;
if (quant > 65534)
quant = 65534;
set_ue_golomb(&pb, quant); set_ue_golomb(&pb, quant);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment