diff options
author | Jean-Marc Valin <jmvalin@jmvalin.ca> | 2011-10-20 00:39:41 -0400 |
---|---|---|
committer | Jean-Marc Valin <jmvalin@jmvalin.ca> | 2011-10-20 00:39:41 -0400 |
commit | 294bfec27b82f879e3c3004d31bb91bcb34014f4 (patch) | |
tree | 94a6332cc1df41ec84b453ef76ee8118b95bfd8f /silk/structs.h | |
parent | dbf2ea841e5b022f0b6d15a606dd7288f25c35dd (diff) | |
download | opus-294bfec27b82f879e3c3004d31bb91bcb34014f4.tar.gz |
Implements hard CBR for SILK
This is achieved by running the encoding process in a loop and
padding when we don't reach the exact rate. It also implements
VBR-with-cap, which means we no longer need to artificially decrease
the SILK bandwidth when it's close to the cap.
Diffstat (limited to 'silk/structs.h')
-rw-r--r-- | silk/structs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/silk/structs.h b/silk/structs.h index d11aa281..51c0f866 100644 --- a/silk/structs.h +++ b/silk/structs.h @@ -189,7 +189,7 @@ typedef struct { opus_int8 LBRR_flag; opus_int LBRR_flags[ MAX_FRAMES_PER_PACKET ]; - SideInfoIndices indices; + SideInfoIndices indices; opus_int8 pulses[ MAX_FRAME_LENGTH ]; /* Input/output buffering */ |