diff options
author | Max Kellermann <max@duempel.org> | 2010-01-18 10:21:57 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-01-18 10:21:57 +0100 |
commit | ca1fc13116cbac10711455b4e57e242b967c6f6e (patch) | |
tree | 35b734bbb1ada8fc04f8c1562d08ecc68636308d /src/decoder_api.c | |
parent | 9cb7760c5eb63cb6b7034ec9d2cdf9af2f198652 (diff) | |
download | mpd-ca1fc13116cbac10711455b4e57e242b967c6f6e.tar.gz mpd-ca1fc13116cbac10711455b4e57e242b967c6f6e.tar.xz mpd-ca1fc13116cbac10711455b4e57e242b967c6f6e.zip |
decoder_api: removed function decoder_get_uri()
Use input_stream.uri.
Diffstat (limited to 'src/decoder_api.c')
-rw-r--r-- | src/decoder_api.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/decoder_api.c b/src/decoder_api.c index afabb76af..7dfe84062 100644 --- a/src/decoder_api.c +++ b/src/decoder_api.c @@ -79,15 +79,6 @@ decoder_initialized(struct decoder *decoder, &af_string)); } -char *decoder_get_uri(G_GNUC_UNUSED struct decoder *decoder) -{ - const struct decoder_control *dc = decoder->dc; - - assert(dc->pipe != NULL); - - return song_get_uri(dc->song); -} - enum decoder_command decoder_get_command(G_GNUC_UNUSED struct decoder * decoder) { const struct decoder_control *dc = decoder->dc; |