aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/FlacDecoderPlugin.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-07-31 00:34:22 +0200
committerMax Kellermann <max@duempel.org>2013-07-31 00:34:22 +0200
commitcbd38327e7f6948647768227ac4836f64e5ccd51 (patch)
tree03510bbcb68e22a76d261089c97a851a0e6596c3 /src/decoder/FlacDecoderPlugin.cxx
parent06f898cc1240a29b293de0e97ad95a4fdc971254 (diff)
downloadmpd-cbd38327e7f6948647768227ac4836f64e5ccd51.tar.gz
mpd-cbd38327e7f6948647768227ac4836f64e5ccd51.tar.xz
mpd-cbd38327e7f6948647768227ac4836f64e5ccd51.zip
DecoderAPI: pass rvalue reference to decoder_tag()
Avoid duplicating the tag.
Diffstat (limited to '')
-rw-r--r--src/decoder/FlacDecoderPlugin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/FlacDecoderPlugin.cxx b/src/decoder/FlacDecoderPlugin.cxx
index 3bc50aa4e..4140d14f7 100644
--- a/src/decoder/FlacDecoderPlugin.cxx
+++ b/src/decoder/FlacDecoderPlugin.cxx
@@ -174,7 +174,7 @@ flac_decoder_loop(struct flac_data *data, FLAC__StreamDecoder *flac_dec,
while (true) {
if (data->tag != nullptr && !data->tag->IsEmpty()) {
cmd = decoder_tag(data->decoder, data->input_stream,
- data->tag);
+ std::move(*data->tag));
delete data->tag;
data->tag = new Tag();
} else