Replace some raw arrays with std::vectors.
[dcpomatic.git] / src / lib / content_factory.cc
index b64c1b9a3d6f383fed236e6e79cf4f8622d86f29..7bcc45503bc0dbc1997e5926c77e0ed5dd82b25e 100644 (file)
@@ -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);