diff options
author | Max Kellermann <max@duempel.org> | 2009-12-25 19:47:33 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-12-26 03:01:43 +0100 |
commit | bad350bc18ab81661253bf42245b9e3fa175d026 (patch) | |
tree | 47a1dd5d4b81520eb9ae1ce407d2fea84d71736f /test | |
parent | 870436a592b081c4630b9ecc36ff8daecf6496cc (diff) | |
download | mpd-bad350bc18ab81661253bf42245b9e3fa175d026.tar.gz mpd-bad350bc18ab81661253bf42245b9e3fa175d026.tar.xz mpd-bad350bc18ab81661253bf42245b9e3fa175d026.zip |
decoder_api: added function decoder_timestamp()
Remove the data_time parameter from decoder_data(). This patch
eliminates the timestamp counting in most decoder plugins, because the
MPD core will do it automatically by default.
Diffstat (limited to 'test')
-rw-r--r-- | test/read_tags.c | 8 | ||||
-rw-r--r-- | test/run_decoder.c | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/test/read_tags.c b/test/read_tags.c index 2e2c95ca5..adeabb156 100644 --- a/test/read_tags.c +++ b/test/read_tags.c @@ -96,11 +96,17 @@ decoder_read(G_GNUC_UNUSED struct decoder *decoder, return input_stream_read(is, buffer, length, NULL); } +void +decoder_timestamp(G_GNUC_UNUSED struct decoder *decoder, + G_GNUC_UNUSED double t) +{ +} + enum decoder_command decoder_data(G_GNUC_UNUSED struct decoder *decoder, G_GNUC_UNUSED struct input_stream *is, const void *data, size_t datalen, - G_GNUC_UNUSED float data_time, G_GNUC_UNUSED uint16_t bit_rate, + G_GNUC_UNUSED uint16_t bit_rate, G_GNUC_UNUSED struct replay_gain_info *replay_gain_info) { write(1, data, datalen); diff --git a/test/run_decoder.c b/test/run_decoder.c index 0ac5a7f21..da5b6080c 100644 --- a/test/run_decoder.c +++ b/test/run_decoder.c @@ -117,11 +117,17 @@ decoder_read(G_GNUC_UNUSED struct decoder *decoder, return input_stream_read(is, buffer, length, NULL); } +void +decoder_timestamp(G_GNUC_UNUSED struct decoder *decoder, + G_GNUC_UNUSED double t) +{ +} + enum decoder_command decoder_data(G_GNUC_UNUSED struct decoder *decoder, G_GNUC_UNUSED struct input_stream *is, const void *data, size_t datalen, - G_GNUC_UNUSED float data_time, G_GNUC_UNUSED uint16_t bit_rate, + G_GNUC_UNUSED uint16_t kbit_rate, G_GNUC_UNUSED struct replay_gain_info *replay_gain_info) { write(1, data, datalen); |