i have second problem. i have mipi-camera with default resolution 4056x3040. try pipeline:
gst-launch-1.0 -v v4l2src device=/dev/video11 ! videoconvert ! fpsdisplaysink text-overlay=false sync=false
is ok, but resolution is 3840x2160:
gst-launch-1.0 -vvv v4l2src device=/dev/video11 ! videoconvert ! fpsdisplaysink text-overlay=false sync=false
Setting pipeline to PAUSED ...
Using mplane plugin for capture
libv4l2: error getting pixformat: Invalid argument
Pipeline is live and does not need PREROLL ...
/GstPipeline:pipeline0/GstFPSDisplaySink:fpsdisplaysink0/GstAutoVideoSink:fps-display-video_sink/GstXvImageSink:fps-display-video_sink-actual-sink-xvimage: sync = false
Pipeline is PREROLLED ...
Setting pipeline to PLAYING ...
New clock: GstSystemClock
/GstPipeline:pipeline0/GstV4l2Src:v4l2src0.GstPad:src: caps = video/x-raw, format=(string)NV12, width=(int)3840, height=(int)2160, framerate=(fraction)120/1, interlace-mode=(string)progressive, colorimetry=(string)1:3:5:1
/GstPipeline:pipeline0/GstVideoConvert:videoconvert0.GstPad:src: caps = video/x-raw, format=(string)NV12, width=(int)3840, height=(int)2160, framerate=(fraction)120/1, interlace-mode=(string)progressive, colorimetry=(string)1:3:5:1
**
i try change variable GST_V4L2SRC_MAX_RESOLUTION to 4056x3040 but nothing happens.
how i can start current pipeline with resolution 4056x3040? is i need to fix camera driver? or fix gstremer?
PS. pipeline is working ok:
gst-launch-1.0 -v v4l2src device=/dev/video11 ! video/x-raw,width=4056,height=3040 ! videoconvert ! fpsdisplaysink text-overlay=false sync=false
thanks !