summaryrefslogtreecommitdiff
path: root/apps/codecs.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs.h')
-rw-r--r--apps/codecs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs.h b/apps/codecs.h
index ceba2bf852..7c7224ec80 100644
--- a/apps/codecs.h
+++ b/apps/codecs.h
@@ -90,12 +90,12 @@
90#define CODEC_ENC_MAGIC 0x52454E43 /* RENC */ 90#define CODEC_ENC_MAGIC 0x52454E43 /* RENC */
91 91
92/* increase this every time the api struct changes */ 92/* increase this every time the api struct changes */
93#define CODEC_API_VERSION 16 93#define CODEC_API_VERSION 17
94 94
95/* update this to latest version if a change to the api struct breaks 95/* update this to latest version if a change to the api struct breaks
96 backwards compatibility (and please take the opportunity to sort in any 96 backwards compatibility (and please take the opportunity to sort in any
97 new function which are "waiting" at the end of the function table) */ 97 new function which are "waiting" at the end of the function table) */
98#define CODEC_MIN_API_VERSION 16 98#define CODEC_MIN_API_VERSION 17
99 99
100/* codec return codes */ 100/* codec return codes */
101enum codec_status { 101enum codec_status {
@@ -166,7 +166,7 @@ struct codec_api {
166 /* Configure different codec buffer parameters. */ 166 /* Configure different codec buffer parameters. */
167 void (*configure)(int setting, intptr_t value); 167 void (*configure)(int setting, intptr_t value);
168 168
169 void (*splash)(int ticks, bool center, const unsigned char *fmt, ...); 169 void (*splash)(int ticks, const unsigned char *fmt, ...);
170 170
171 /* file */ 171 /* file */
172 int (*PREFIX(open))(const char* pathname, int flags); 172 int (*PREFIX(open))(const char* pathname, int flags);