summaryrefslogtreecommitdiff
path: root/lib/rbcodec/codecs/libopus/opus_custom.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/codecs/libopus/opus_custom.h')
-rw-r--r--lib/rbcodec/codecs/libopus/opus_custom.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/rbcodec/codecs/libopus/opus_custom.h b/lib/rbcodec/codecs/libopus/opus_custom.h
index e7861d6f0a..f8124009a2 100644
--- a/lib/rbcodec/codecs/libopus/opus_custom.h
+++ b/lib/rbcodec/codecs/libopus/opus_custom.h
@@ -132,10 +132,12 @@ OPUS_CUSTOM_EXPORT void opus_custom_mode_destroy(OpusCustomMode *mode);
132 * @param [in] channels <tt>int</tt>: Number of channels 132 * @param [in] channels <tt>int</tt>: Number of channels
133 * @returns size 133 * @returns size
134 */ 134 */
135# if 0
135OPUS_CUSTOM_EXPORT_STATIC OPUS_WARN_UNUSED_RESULT int opus_custom_encoder_get_size( 136OPUS_CUSTOM_EXPORT_STATIC OPUS_WARN_UNUSED_RESULT int opus_custom_encoder_get_size(
136 const OpusCustomMode *mode, 137 const OpusCustomMode *mode,
137 int channels 138 int channels
138) OPUS_ARG_NONNULL(1); 139) OPUS_ARG_NONNULL(1);
140#endif
139 141
140/** Creates a new encoder state. Each stream needs its own encoder 142/** Creates a new encoder state. Each stream needs its own encoder
141 * state (can't be shared across simultaneous streams). 143 * state (can't be shared across simultaneous streams).
@@ -164,11 +166,13 @@ OPUS_CUSTOM_EXPORT OPUS_WARN_UNUSED_RESULT OpusCustomEncoder *opus_custom_encode
164 * @param [in] channels <tt>int</tt>: Number of channels 166 * @param [in] channels <tt>int</tt>: Number of channels
165 * @return OPUS_OK Success or @ref opus_errorcodes 167 * @return OPUS_OK Success or @ref opus_errorcodes
166 */ 168 */
169#if 0
167OPUS_CUSTOM_EXPORT_STATIC int opus_custom_encoder_init( 170OPUS_CUSTOM_EXPORT_STATIC int opus_custom_encoder_init(
168 OpusCustomEncoder *st, 171 OpusCustomEncoder *st,
169 const OpusCustomMode *mode, 172 const OpusCustomMode *mode,
170 int channels 173 int channels
171) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(2); 174) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(2);
175#endif
172 176
173/** Destroys a an encoder state. 177/** Destroys a an encoder state.
174 * @param[in] st <tt>OpusCustomEncoder*</tt>: State to be freed. 178 * @param[in] st <tt>OpusCustomEncoder*</tt>: State to be freed.