Does anybody know how to receive and send video from one DM365 to another in the same pipeline?
I tried to do it with gstrtpbin with no sucess.
UPDATE
I create this pipeline
gst-launch gstrtpbin name=rtpbin videotestsrc ! video/x-raw-yuv,format=\(fourcc\)NV12, width=1280, height=720 ! queue ! dmaienc_h264 encodingpreset=2 ratecontrol=2 intraframeinterval=23 idrinterval=46 targetbitrate=3000000 ! rtph264pay pt=96 ! rtpbin.send_rtp_sink_0 rtpbin.send_rtp_src_0 ! multiudpsink clients="192.168.1.107:5002" sync=false async=false udpsrc port=5002 caps="application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, payload=(int)96" ! queue ! rtpbin.recv_rtp_sink_0 rtpbin. buffer-mode=RTP_JITTER_BUFFER_MODE_BUFFER ! rtph264depay byte-stream=true ! video/x-h264, width=1280, height=720 ! queue ! dmaidec_h264 numOutputBufs=8 dispdelay=0 closedloop=1 ! queue ! T
IDmaiVideoSink videoOutput=Composite videoStd=D1_NTSC
but give me the following error
Setting pipeline to PAUSED ...
Pipeline is live and does not need PREROLL ...
Setting pipeline to PLAYING ...
New clock: GstSystemClock
ERROR: from element /GstPipeline:pipeline0/dmaidec_h264:dmaidec_h2640: No space left on the resource.
Additional debug info:
../../src/src/gsttidmaidec.c(1527): validate_circBuf_space (): /GstPipeline:pipeline0/dmaidec_h264:dmaidec_h2640:
Not enough free space on the input circular buffer
Execution ended after 18160317376 ns.
Setting pipeline to PAUSED ...
Setting pipeline to READY ...
Setting pipeline to NULL ...
Freeing pipeline ...
Any thoughts about it?
Thanks in advance.