@@ -803,13 +803,11 @@ static void define_stream_effects(py::module m) {
803803 " Use this to select a stereo view, specific audio channels, etc. "
804804 " The item will expose these streams downstream with the same naming." )
805805 .def (py::init ([](std::string name,
806- std::string effect_name,
807806 std::vector<std::string> output_streams,
808807 py::object metadata) {
809- return new StreamSelector (name, effect_name , output_streams,
808+ return new StreamSelector (name, " StreamSelector " , output_streams,
810809 py_to_any_dictionary (metadata)); }),
811810 py::arg_v (" name" _a = std::string ()),
812- " effect_name" _a = std::string (),
813811 " output_streams" _a = std::vector<std::string>(),
814812 py::arg_v (" metadata" _a = py::none ()))
815813 .def_property (" output_streams" ,
@@ -827,13 +825,11 @@ static void define_stream_effects(py::module m) {
827825 " well-known StreamInfo.Identifier value -- for example, to expose the "
828826 " left eye of a stereo source as the conventional monocular stream." )
829827 .def (py::init ([](std::string name,
830- std::string effect_name,
831828 StreamMapper::StreamMap stream_map,
832829 py::object metadata) {
833- return new StreamMapper (name, effect_name , stream_map,
830+ return new StreamMapper (name, " StreamMapper " , stream_map,
834831 py_to_any_dictionary (metadata)); }),
835832 py::arg_v (" name" _a = std::string ()),
836- " effect_name" _a = std::string (),
837833 " stream_map" _a = StreamMapper::StreamMap (),
838834 py::arg_v (" metadata" _a = py::none ()))
839835 .def_property (" stream_map" ,
0 commit comments