Cannot run gst-launch-1.0 with nvarguscamerasrc on Jetson TX2 with JetPack 4.3

I run gst-launch-1.0 command with nvarguscamerasrc plugin. But SIGSEGV occurred. The following is log messages.
gst-launch-1.0 nvarguscamerasrc ! fakesink
Setting pipeline to PAUSED …
Pipeline is live and does not need PREROLL …
Setting pipeline to PLAYING …
New clock: GstSystemClock
GST_ARGUS: Creating output stream
CONSUMER: Waiting until producer is connected…
GST_ARGUS: Available Sensor modes :
Caught SIGSEGV
#0 0x0000007f89858048 in __GI___poll (fds=0x5570ea6bd0, nfds=547769176632, timeout=) at …/sysdeps/unix/sysv/linux/poll.c:41
#1 0x0000007f89964e08 in () at /usr/lib/aarch64-linux-gnu/libglib-2.0.so.0
#2 0x0000005570ce1af0 in ()

There is no SIGSEGV issue with the following command.
gst-launch-1.0 v4l2src ! fakesink

Could you check why nvarguscamerasrc plugin has SIGSEGV issue?
Thanks in advance!

Hi,
Do you use the default camera board(ov5693)? Should not hit the issue with default camera board. If it happens with your camera board. You probably to refer to sensor driver programming guide to modify sensor driver and device tree.

I am not using Nvidia default camera. I am using Logitech USB camera. Is it possible to use nvarguscamerasrc with USB camera?

Hi,
For USB camera, you need to use v4l2src. Please refer to this post:

Does v4l2src has integrated cuda acceleration?

Hi ,
You can allocate CUDA buffers for v4l2 capture. Please refer to the sample:

/usr/src/jetson_multimedia_api/samples/v4l2cuda

Thanks for your reply. I will try it.