diff --git a/src/pipewire/stream.c b/src/pipewire/stream.c index c6965cfd0..32c77f65b 100644 --- a/src/pipewire/stream.c +++ b/src/pipewire/stream.c @@ -2096,7 +2096,9 @@ pw_stream_connect(struct pw_stream *stream, pw_properties_set(props, PW_KEY_PORT_IGNORE_LATENCY, "true"); } - if (impl->media_type == SPA_MEDIA_TYPE_audio) { + if (impl->media_type == SPA_MEDIA_TYPE_audio + || (impl->media_type == SPA_MEDIA_TYPE_video + && pw_properties_get(props, "video.adapt.converter"))) { factory = pw_context_find_factory(impl->context, "adapter"); if (factory == NULL) { pw_log_error("%p: no adapter factory found", stream);