Remove in-place translations support.
[dcpomatic.git] / src / lib / filter_graph.cc
index 2dbb2afc3e3f4abd147e6af8936f546df857848a..745d980a40597b6b4d07c78685893f46e1271f01 100644 (file)
@@ -55,10 +55,11 @@ FilterGraph::setup(vector<Filter> const& filters)
 {
        auto const filters_string = Filter::ffmpeg_string (filters);
        if (filters.empty()) {
-               _copy = true;
                return;
        }
 
+       _copy = false;
+
        _frame = av_frame_alloc ();
 
        _graph = avfilter_graph_alloc();