Marianna Smidth Buschle

Results 12 issues of Marianna Smidth Buschle

OpenCV currently only has support for `V4L2_PIX_FMT_Y16` but not for the Big Endian version of this format: `V4L2_PIX_FMT_Y16_BE`. Would it be possible to add it to [`cap_v4l.cpp`](https://github.com/opencv/opencv/blob/master/modules/videoio/src/cap_v4l.cpp)? The handling should...

duplicate
feature
category: videoio

It was missing something like what is done in appsrc->create(): https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/blob/master/gst-libs/gst/app/gstappsrc.c#L1676 Related to https://github.com/RidgeRun/gst-interpipe/issues/96

I have this pipeline doing audiomixing which works fine: ``` pipelines.append("autoaudiosrc is-live=true provide-clock=false ! " "audio/x-raw,format=S32LE,layout=interleaved,rate=44100,channels=2,channel-mask=(bitmask)0x3 ! " "deinterleave name=d " "d.src_0 ! tee name=ch0_audio " "d.src_1 ! tee name=ch1_audio...

review

Send all queued events with "timestamp < buffer timestamp" instead of just the 1st one before sending the buffer. Only the 1st event of the event queue with "timestamp <...

bug

interpipesrc/sink can currently forward, accept or block events. Could the same be done for queries? I ask because I currently have issues when using the interpipe to decouple pipelines which...

Are there any guidelines on the usage of the "sync" and "is-live" properties? In this example https://developer.ridgerun.com/wiki/index.php?title=GstInterpipe_-_Example_2:_Digital_Camera there is no explanation of why some of the sinks use "sync=false" and...

It was missing something like what is done in appsrc->create(): https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/blob/master/gst-libs/gst/app/gstappsrc.c#L1676 Related to #96

bug

Prevent negative values

Consider the following pipeline which encodes to H264, muxes to MPEG-TS and the streams over UDP ``` GST_DEBUG="*:3,GST_TRACER:7" GST_TRACERS="buffer(filter=bla)" gst-launch-1.0 v4l2src ! videoconvert ! x264enc key-int-max=30 speed-preset=1 tune=zerolatency ! video/x-h264,profile=high...

bug

I have the following pipelines: ``` pipelines.append("udpsrc name=cam1_udpsrc address=224.1.1.1 port=5000 multicast-iface=enx00051bc005af ! " "application/x-rtp,media=video,payload=33,clock-rate=90000,encoding-name=MP2T ! " "rtpbin ! " "rtpmp2tdepay ! " "tsdemux : h264parse ! " "interpipesink name=cam1_V sync=false...