While testing a PC-to-Network Switch-to-PC VLC setup, I found a crash issue with libstream_out_rtp_plugin.dll. If a video stream is not playing on PC 1 and PC 2 requests an SDP stream from PC 1, then PC 1's VLC instance will crash.
Here are my system settings:
- Windows XP
- VLC Media Player 1.0.5 Goldeneye
Reproducible steps:
- Hook both PC 1 and PC 2 into Network Switch.
- Assign PC 1 an IP Address of 172.16.11.5
- Assign PC 2 an IP Address of 172.16.11.6
- Run VLC on PC 1. File Menu > Media > Streaming...
- Click the Network Tab and select RTP, Address: 127.0.0.1 and Port: 5008 (Any IP Combo will do, we don't care about input stream now)
- Click the Stream Button to bring up the Stream output Screen
- Click the Next button and paste the following string into the "Generated stream output string" text field:
:sout=#transcode{vcodec=mp4v,vb=800,scale=1,acodec=none}
:duplicate{dst=rtp{dst=172.16.11.5,ttl=127,sdp=rtsp://172.16.11.5:554/test.sdp}}
- PC 1 is all set. Now, on PC 2 run your VLC Instance
- File Menu > Open Network Stream...
- Click the Network Tab and select RTSP, 172.16.11.5:554/test.sdp
- Click the Play button and watch the VLC Instance on PC 1 crash because PC 1 cannot send the video stream.
Does anyone else see the same issue?