From 1bc197db79e7747a62d628c7d211d7343a208f48 Mon Sep 17 00:00:00 2001 From: Li Yuanheng <520dhh@gmail.com> Date: Wed, 28 Jun 2023 13:53:38 +0800 Subject: [PATCH] appsink: property should use hyphen not underscore Part-of: --- gstreamer-app/src/app_sink.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gstreamer-app/src/app_sink.rs b/gstreamer-app/src/app_sink.rs index 7784b9e3f..584b71693 100644 --- a/gstreamer-app/src/app_sink.rs +++ b/gstreamer-app/src/app_sink.rs @@ -1158,7 +1158,7 @@ impl AppSinkBuilder { pub fn wait_on_eos(self, wait_on_eos: bool) -> Self { Self { - builder: self.builder.property("wait_on_eos", wait_on_eos), + builder: self.builder.property("wait-on-eos", wait_on_eos), ..self } }