|
Hello everybody,
I'm using Gstreamer 1.8.2 for my application but now I want to upgrade to Gstreamer 1.12.0 but I've an issue. If I use these two pipelines to send and receive
SEND
gst-launch-1.0.exe ksvideosrc ! video/x-raw,width=640,height=480,framerate=30/1 ! openh264enc bitrate=1000000 ! gdppay ! tcpserversink sync=0 async=0
RECEIVE
gst-launch-1.0.exe tcpclientsrc ! gdpdepay ! h264parse ! openh264dec ! glimagesink sync=0
The send pipeline is ok and camera is capturing, but the receive pipeline tell me the error
"h264parse gsth264parse.c:1234:gst_h264_parse_handle_frame:<h264parse0> broken/invalid nal Type: 1 Slice, Size: 4121 will be dropped"
The same pipelines on Gstreamer 1.8.2 run without problems. Can someone help me?
Thanks in advance!
|