summaryrefslogtreecommitdiff
path: root/apps/codecs/libmusepack/reader.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libmusepack/reader.h')
-rw-r--r--apps/codecs/libmusepack/reader.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/codecs/libmusepack/reader.h b/apps/codecs/libmusepack/reader.h
index 60a0ef939d..c46844cd59 100644
--- a/apps/codecs/libmusepack/reader.h
+++ b/apps/codecs/libmusepack/reader.h
@@ -65,12 +65,14 @@ struct mpc_reader_t {
65 /// Returns the total length of the source stream, in bytes. 65 /// Returns the total length of the source stream, in bytes.
66 mpc_int32_t (*get_size)(mpc_reader *p_reader); 66 mpc_int32_t (*get_size)(mpc_reader *p_reader);
67 67
68 /* rockbox: not used
68 /// True if the stream is a seekable stream. 69 /// True if the stream is a seekable stream.
69 mpc_bool_t (*canseek)(mpc_reader *p_reader); 70 mpc_bool_t (*canseek)(mpc_reader *p_reader);
70 71
71 /// Field that can be used to identify a particular instance of 72 /// Field that can be used to identify a particular instance of
72 /// reader or carry along data associated with that reader. 73 /// reader or carry along data associated with that reader.
73 void *data; 74 void *data;
75 */
74}; 76};
75/* rockbox: not used 77/* rockbox: not used
76/// Initializes reader with default stdio file reader implementation. Use 78/// Initializes reader with default stdio file reader implementation. Use