summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-04-07 23:50:41 +0200
committerCarl Hetherington <cth@carlh.net>2022-04-28 23:40:25 +0200
commitc095f2afe42a61919a1ef6464d2d633a826ab69d (patch)
tree79f24d157ca403899bffc315fbe7da9663d0bc2a
parenta6fa1fb06fb6db8891c583260334870ef7c9d8c7 (diff)
Remove erroneous comment.
-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);