summaryrefslogtreecommitdiff
path: root/apps/codecs.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs.c')
-rw-r--r--apps/codecs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/codecs.c b/apps/codecs.c
index 22e692c111..154faa3f3f 100644
--- a/apps/codecs.c
+++ b/apps/codecs.c
@@ -167,7 +167,7 @@ struct codec_api ci = {
167 __cyg_profile_func_exit, 167 __cyg_profile_func_exit,
168#endif 168#endif
169 169
170#if defined(HAVE_RECORDING) && !defined(SIMULATOR) 170#ifdef HAVE_RECORDING
171 false, /* stop_encoder */ 171 false, /* stop_encoder */
172 0, /* enc_codec_loaded */ 172 0, /* enc_codec_loaded */
173 enc_get_inputs, 173 enc_get_inputs,
@@ -179,13 +179,13 @@ struct codec_api ci = {
179 179
180 /* file */ 180 /* file */
181 (open_func)PREFIX(open), 181 (open_func)PREFIX(open),
182 close, 182 PREFIX(close),
183 (read_func)read, 183 (read_func)PREFIX(read),
184 PREFIX(lseek), 184 PREFIX(lseek),
185 (write_func)write, 185 (write_func)PREFIX(write),
186 round_value_to_list32, 186 round_value_to_list32,
187 187
188#endif 188#endif /* HAVE_RECORDING */
189 189
190 /* new stuff at the end, sort into place next time 190 /* new stuff at the end, sort into place next time
191 the API gets incompatible */ 191 the API gets incompatible */