From c635d15cf0332ac38e4aba078dd13ead9e9ab0c2 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 16 Jan 2023 16:41:28 +0100 Subject: [PATCH] Use pipe with CmdPipeWriter (see b8d07b8) --- libs/ardour/export_graph_builder.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/export_graph_builder.cc b/libs/ardour/export_graph_builder.cc index f0483fe31f..5fee63049d 100644 --- a/libs/ardour/export_graph_builder.cc +++ b/libs/ardour/export_graph_builder.cc @@ -380,7 +380,7 @@ ExportGraphBuilder::Encoder::init_writer (boost::shared_ptrcodec_quality (); gchar* tmpfile_name = NULL; -#if 0 +#if 1 // directly pipe to ffmpeg gint fd = -1; #else // write to tmp-file, do not pipe to ffmpeg gint fd = g_file_open_tmp ("ardour-export.XXXXXX", &tmpfile_name, NULL);