Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libcelt/celt.c')
-rw-r--r--libcelt/celt.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/libcelt/celt.c b/libcelt/celt.c
index 9d812ed..13af35e 100644
--- a/libcelt/celt.c
+++ b/libcelt/celt.c
@@ -104,6 +104,7 @@ struct CELTEncoder {
int stream_channels;
int force_intra;
+ int clip;
int disable_pf;
int complexity;
int upsample;
@@ -230,6 +231,7 @@ CELTEncoder *celt_encoder_init_custom(CELTEncoder *st, const CELTMode *mode, int
st->start = 0;
st->end = st->mode->effEBands;
st->constrained_vbr = 1;
+ st->clip = 1;
st->bitrate = 255000*channels;
st->vbr = 0;
@@ -1025,6 +1027,10 @@ int celt_encode_with_ec_float(CELTEncoder * restrict st, const celt_sig * pcm, i
celt_sig x, tmp;
x = SCALEIN(*pcmp);
+#ifndef FIXED_POINT
+ if (st->clip)
+ x = MAX32(-65536.f, MIN32(65536.f,x));
+#endif
if (++count==st->upsample)
{
count=0;
@@ -1757,6 +1763,12 @@ int celt_encoder_ctl(CELTEncoder * restrict st, int request, ...)
st->tonal_average = QCONST16(1.f,8);
}
break;
+ case CELT_SET_INPUT_CLIPPING_REQUEST:
+ {
+ celt_int32 value = va_arg(ap, celt_int32);
+ st->clip = value;
+ }
+ break;
default:
goto bad_request;
}