summaryrefslogtreecommitdiff
path: root/apps/codecs.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs.h')
-rw-r--r--apps/codecs.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/codecs.h b/apps/codecs.h
index 3b8e1d8394..4a4ccb229c 100644
--- a/apps/codecs.h
+++ b/apps/codecs.h
@@ -79,7 +79,7 @@
79#endif 79#endif
80 80
81/* increase this every time the api struct changes */ 81/* increase this every time the api struct changes */
82#define CODEC_API_VERSION 40 82#define CODEC_API_VERSION 41
83 83
84/* update this to latest version if a change to the api struct breaks 84/* update this to latest version if a change to the api struct breaks
85 backwards compatibility (and please take the opportunity to sort in any 85 backwards compatibility (and please take the opportunity to sort in any
@@ -327,6 +327,8 @@ struct codec_api {
327 327
328 void *(*memchr)(const void *s1, int c, size_t n); 328 void *(*memchr)(const void *s1, int c, size_t n);
329 void (*set_offset)(unsigned int value); 329 void (*set_offset)(unsigned int value);
330 /* Codec should call this function when it has done the seeking. */
331 void (*seek_complete)(void);
330}; 332};
331 333
332/* defined by the codec loader (codec.c) */ 334/* defined by the codec loader (codec.c) */