aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_api.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-26 08:27:08 +0200
committerMax Kellermann <max@duempel.org>2008-08-26 08:27:08 +0200
commit772d3da98a31b5cefa9d4de0dd5056fb19eae00f (patch)
tree8adb7d5598917c3e64483df29171b8b5508cb8a9 /src/decoder_api.h
parentf1a014d094a6788a062967d7940ccfae96093144 (diff)
no camel case in struct decoder_plugin
Diffstat (limited to 'src/decoder_api.h')
-rw-r--r--src/decoder_api.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/decoder_api.h b/src/decoder_api.h
index 870cd291..becaaada 100644
--- a/src/decoder_api.h
+++ b/src/decoder_api.h
@@ -71,19 +71,19 @@ typedef MpdTag *(*decoder_tag_dup_func) (char *file);
struct decoder_plugin {
const char *name;
- decoder_init_func initFunc;
- decoder_finish_func finishFunc;
- decoder_try_decode_func tryDecodeFunc;
- decoder_stream_decode_func streamDecodeFunc;
- decoder_file_decode_func fileDecodeFunc;
- decoder_tag_dup_func tagDupFunc;
+ decoder_init_func init_func;
+ decoder_finish_func finish_func;
+ decoder_try_decode_func try_decode_func;
+ decoder_stream_decode_func stream_decode_func;
+ decoder_file_decode_func file_decode_func;
+ decoder_tag_dup_func tag_dup_func;
/* one or more of the INPUT_PLUGIN_STREAM_* values OR'd together */
- unsigned char streamTypes;
+ unsigned char stream_types;
/* last element in these arrays must always be a NULL: */
const char *const*suffixes;
- const char *const*mimeTypes;
+ const char *const*mime_types;
};