Hi, I am trying to open an rtp stream generated by ffmpeg and I am constantly getting errors such as this:
ES_OUT_SET_(GROUP_)PCR is called too late (pts_delay increased to 1225 ms)
What do they mean ? what can I change to prevent my stream from freezing and buffering every few seconds ?
This is an rtp multicast stream (h264 encoding) on a local wifi network
full vlc log :
http://pastebin.com/vRCigkpv
SDP:
v=0
o=- 0 0 IN IP4 192.168.99.42
s=No Name
c=IN IP4 224.1.1.1/255
t=0 0
a=tool:libavformat 54.36.100
m=video 1234 RTP/AVP 96
b=AS:600
a=rtpmap:96 H264/90000
a=fmtp:96 packetization-mode=1
vlc command line:
vlc d:\sdpfile.sdp :network-caching=3000 :clock-jitter=0
ffmpeg command:
./mock_data_generator | ./ffmpeg -an -f rawvideo -framerate 9 -s 400x640 -pix_fmt rgba -i - -vcodec libx264 -g 10 -preset ultrafast -tune zerolatency -r 8 -bsf:v h264_mp4toannexb -b 600000 -f rtp rtp://224.1.1.1:1234"