diff options
author | Max Kellermann <max@duempel.org> | 2013-10-21 20:36:34 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-21 21:08:12 +0200 |
commit | 13e9f18403b98f8123b1b983c4680957d684e47b (patch) | |
tree | ef732995e8bbad81f41597fab84c5640004f22fd /src/UpdateContainer.cxx | |
parent | 875821f2ba0beeb9556962a536c4c0011913ff15 (diff) | |
download | mpd-13e9f18403b98f8123b1b983c4680957d684e47b.tar.gz mpd-13e9f18403b98f8123b1b983c4680957d684e47b.tar.xz mpd-13e9f18403b98f8123b1b983c4680957d684e47b.zip |
DecoderPlugin: move functions into the struct
Diffstat (limited to '')
-rw-r--r-- | src/UpdateContainer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/UpdateContainer.cxx b/src/UpdateContainer.cxx index 94a004f12..3f658cbcc 100644 --- a/src/UpdateContainer.cxx +++ b/src/UpdateContainer.cxx @@ -98,8 +98,8 @@ update_container_file(Directory &directory, const auto child_path_fs = map_directory_child_fs(*contdir, vtrack); - decoder_plugin_scan_file(plugin, child_path_fs.c_str(), - &add_tag_handler, &tag_builder); + plugin.ScanFile(child_path_fs.c_str(), + add_tag_handler, &tag_builder); if (tag_builder.IsDefined()) song->tag = tag_builder.Commit(); |