Merge pull request #25602 from asmorkalov:as/gstreamer_alpha_channel

Handle BGRA streams in GStreamer backend
pull/25778/head
Alexander Smorkalov 10 months ago committed by GitHub
commit 4bf95ac2df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      modules/videoio/src/cap_gstreamer.cpp

@ -1618,7 +1618,7 @@ bool GStreamerCapture::open(const String &filename_, const cv::VideoCaptureParam
{
//do not emit signals: all calls will be synchronous and blocking
gst_app_sink_set_emit_signals (GST_APP_SINK(sink.get()), FALSE);
caps.attach(gst_caps_from_string("video/x-raw, format=(string){BGR, GRAY8}; video/x-bayer,format=(string){rggb,bggr,grbg,gbrg}; image/jpeg"));
caps.attach(gst_caps_from_string("video/x-raw, format=(string){BGR}; video/x-raw, format=(string){BGRx, BGRA}; video/x-bayer,format=(string){rggb,bggr,grbg,gbrg}; video/x-raw, format=(string){GRAY8}; image/jpeg"));
}
if (audioStream >= 0)
{

Loading…
Cancel
Save