From 69a9a31c6b972e0fcc479f07a0fa2b828d401711 Mon Sep 17 00:00:00 2001 From: Julian Rother <julianr@fsmpi.rwth-aachen.de> Date: Thu, 26 Jul 2018 04:44:47 +0200 Subject: [PATCH] complex_live_transcode: Replaced *copy with *null filters --- complex_live_transcode.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/complex_live_transcode.c b/complex_live_transcode.c index 5c4ab9b..4fcd5ff 100644 --- a/complex_live_transcode.c +++ b/complex_live_transcode.c @@ -55,11 +55,11 @@ int main(int argc, char *argv[]) "[tmp][logo]%s,split=3[lowtmp][midtmp][high];" "[lowtmp]scale=640:360[low];" "[midtmp]scale=1280:720[mid]", - jstr(jlookup(src1, "afilter"), "acopy"), - jstr(jlookup(src2, "afilter"), "acopy"), - jstr(jlookup(argv[4], "afilter"), "acopy"), - jstr(jlookup(src1, "vfilter"), "copy"), - jstr(jlookup(src2, "vfilter"), "copy"), + jstr(jlookup(src1, "afilter"), "anull"), + jstr(jlookup(src2, "afilter"), "anull"), + jstr(jlookup(argv[4], "afilter"), "anull"), + jstr(jlookup(src1, "vfilter"), "null"), + jstr(jlookup(src2, "vfilter"), "null"), jstr(jlookup(argv[4], "vmix"), "streamselect=map=0"), getenv(WORKER_RAW), logo_expr ), -- GitLab