Hello,

I am trying to output an AVPacket via UDP to a remote computer. 

I have code that can successfully write frames to a file but when i change 
this: 

avio_open(&muxer->pb, "c:\\bat.ts", AVIO_FLAG_WRITE)

to this:

avio_open(&muxer->pb, "udp://127.0.0.1:1234", AVIO_FLAG_WRITE),

I expected a later call to av_write_frame() to now output udp packets with the 
muxed data. However, using wireshark (a network protocol analyzer) it is easy 
to see that no UDP packets are being sent on the wire. I am working with 
mingw-compiled DLLs in VisualStudio so I am unable to do much in the way of 
debugging. I am really stuck and would appreciate any help. Thank you.

mark.
_______________________________________________
Libav-user mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/libav-user

Reply via email to