summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/content_factory.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/content_factory.cc b/src/lib/content_factory.cc
index b64c1b9a3..7bcc45503 100644
--- a/src/lib/content_factory.cc
+++ b/src/lib/content_factory.cc
@@ -66,9 +66,6 @@ content_factory (cxml::ConstNodePtr node, int version, list<string>& notes)
std::shared_ptr<Content> content;
if (type == "FFmpeg") {
- /* SndfileContent is now handled by the FFmpeg code rather than by
- separate libsndfile-based code.
- */
content = make_shared<FFmpegContent>(node, version, notes);
} else if (type == "Image") {
content = make_shared<ImageContent>(node, version);