summaryrefslogtreecommitdiff
path: root/lib/rbcodec/codecs/libopus/silk/control.h
diff options
context:
space:
mode:
authorWilliam Wilgus <me.theuser@yahoo.com>2019-01-04 02:01:18 -0600
committerSolomon Peachy <pizza@shaftnet.org>2021-04-23 14:23:04 +0000
commit14c6bb798d6bebc80f07e863236adbaf8d156a9c (patch)
tree551a4b641906c2626af844fa3239c1b2b1ff0ad3 /lib/rbcodec/codecs/libopus/silk/control.h
parent75d93937965ec4df70d37df6d4feea04577c996b (diff)
downloadrockbox-14c6bb798d6bebc80f07e863236adbaf8d156a9c.tar.gz
rockbox-14c6bb798d6bebc80f07e863236adbaf8d156a9c.zip
Sync opus codec to upstream git
Change-Id: I0cfcc0005c4ad7bfbb1aaf454188ce70fb043dc1
Diffstat (limited to 'lib/rbcodec/codecs/libopus/silk/control.h')
-rw-r--r--lib/rbcodec/codecs/libopus/silk/control.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/rbcodec/codecs/libopus/silk/control.h b/lib/rbcodec/codecs/libopus/silk/control.h
index 747e5426a0..b76ec33cd6 100644
--- a/lib/rbcodec/codecs/libopus/silk/control.h
+++ b/lib/rbcodec/codecs/libopus/silk/control.h
@@ -77,6 +77,9 @@ typedef struct {
77 /* I: Flag to enable in-band Forward Error Correction (FEC); 0/1 */ 77 /* I: Flag to enable in-band Forward Error Correction (FEC); 0/1 */
78 opus_int useInBandFEC; 78 opus_int useInBandFEC;
79 79
80 /* I: Flag to actually code in-band Forward Error Correction (FEC) in the current packet; 0/1 */
81 opus_int LBRR_coded;
82
80 /* I: Flag to enable discontinuous transmission (DTX); 0/1 */ 83 /* I: Flag to enable discontinuous transmission (DTX); 0/1 */
81 opus_int useDTX; 84 opus_int useDTX;
82 85
@@ -110,6 +113,11 @@ typedef struct {
110 /* O: Tells the Opus encoder we're ready to switch */ 113 /* O: Tells the Opus encoder we're ready to switch */
111 opus_int switchReady; 114 opus_int switchReady;
112 115
116 /* O: SILK Signal type */
117 opus_int signalType;
118
119 /* O: SILK offset (dithering) */
120 opus_int offset;
113} silk_EncControlStruct; 121} silk_EncControlStruct;
114 122
115/**************************************************************************/ 123/**************************************************************************/