summaryrefslogtreecommitdiff
path: root/lib/rbcodec/codecs/codecs.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/codecs/codecs.h')
-rw-r--r--lib/rbcodec/codecs/codecs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rbcodec/codecs/codecs.h b/lib/rbcodec/codecs/codecs.h
index bad8cdd469..d4a51a4aba 100644
--- a/lib/rbcodec/codecs/codecs.h
+++ b/lib/rbcodec/codecs/codecs.h
@@ -75,12 +75,12 @@
75#define CODEC_ENC_MAGIC 0x52454E43 /* RENC */ 75#define CODEC_ENC_MAGIC 0x52454E43 /* RENC */
76 76
77/* increase this every time the api struct changes */ 77/* increase this every time the api struct changes */
78#define CODEC_API_VERSION 44 78#define CODEC_API_VERSION 45
79 79
80/* update this to latest version if a change to the api struct breaks 80/* update this to latest version if a change to the api struct breaks
81 backwards compatibility (and please take the opportunity to sort in any 81 backwards compatibility (and please take the opportunity to sort in any
82 new function which are "waiting" at the end of the function table) */ 82 new function which are "waiting" at the end of the function table) */
83#define CODEC_MIN_API_VERSION 43 83#define CODEC_MIN_API_VERSION 45
84 84
85/* reasons for calling codec main entrypoint */ 85/* reasons for calling codec main entrypoint */
86enum codec_entry_call_reason { 86enum codec_entry_call_reason {
@@ -171,6 +171,7 @@ struct codec_api {
171 171
172 void (*commit_dcache)(void); 172 void (*commit_dcache)(void);
173 void (*commit_discard_dcache)(void); 173 void (*commit_discard_dcache)(void);
174 void (*commit_discard_idcache)(void);
174 175
175 /* strings and memory */ 176 /* strings and memory */
176 char* (*strcpy)(char *dst, const char *src); 177 char* (*strcpy)(char *dst, const char *src);
@@ -223,7 +224,6 @@ struct codec_api {
223 224
224 /* new stuff at the end, sort into place next time 225 /* new stuff at the end, sort into place next time
225 the API gets incompatible */ 226 the API gets incompatible */
226 void (*commit_discard_idcache)(void);
227}; 227};
228 228
229/* codec header */ 229/* codec header */