aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_api.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/decoder_api.h')
-rw-r--r--src/decoder_api.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/decoder_api.h b/src/decoder_api.h
index 4ac00142..eede43d1 100644
--- a/src/decoder_api.h
+++ b/src/decoder_api.h
@@ -52,8 +52,8 @@
*/
void
decoder_initialized(struct decoder *decoder,
- const struct audio_format *audio_format,
- bool seekable, float total_time);
+ const struct audio_format *audio_format,
+ bool seekable, float total_time);
/**
* Determines the pending decoder command.
@@ -105,7 +105,7 @@ decoder_seek_error(struct decoder *decoder);
*/
size_t
decoder_read(struct decoder *decoder, struct input_stream *is,
- void *buffer, size_t length);
+ void *buffer, size_t length);
/**
* Sets the time stamp for the next data chunk [seconds]. The MPD
@@ -144,7 +144,7 @@ enum decoder_command decoder_data(struct decoder *decoder, struct input_stream *
*/
enum decoder_command
decoder_tag(struct decoder *decoder, struct input_stream *is,
- const struct tag *tag);
+ const struct tag *tag);
/**
* Set replay gain values for the following chunks.
@@ -156,7 +156,7 @@ decoder_tag(struct decoder *decoder, struct input_stream *is,
*/
float
decoder_replay_gain(struct decoder *decoder,
- const struct replay_gain_info *replay_gain_info);
+ const struct replay_gain_info *replay_gain_info);
/**
* Store MixRamp tags.
@@ -168,6 +168,6 @@ decoder_replay_gain(struct decoder *decoder,
*/
void
decoder_mixramp(struct decoder *decoder, float replay_gain_db,
- char *mixramp_start, char *mixramp_end);
+ char *mixramp_start, char *mixramp_end);
#endif