GNOME Bugzilla – Bug 692400
udpsrc: fix socket options not getting set on windows, resulting in packet drop in high bitrate movie
Last modified: 2013-04-29 07:03:42 UTC
- include header - socklen_t is unsigned; socklen_t does not exist in Windows
Created attachment 234225 [details] [review] patch [1/2]
Created attachment 234226 [details] [review] patch [2/2]
My mistake, it did not 'fix' the compilation; the socket options were not set in Windows; resulting in packet drop in high bitrate movie content.
Could you please re-do the patches mentioning in the commit message body what each of the commit fixes? (i.e. what you wrote here, rather than 'change socklen_t to unsigned int' - we can see what the patch does in the diff :))
Comment on attachment 234226 [details] [review] patch [2/2] I don't think this is necessarily right for systems where socklen_t is defined?
commit 4273eccacea00ddd52210199c9ce49fd2587fc3d Author: Tim-Philipp Müller <tim@centricular.net> Date: Sat Apr 27 11:16:54 2013 +0100 udpsrc: add includes to get socklen_t defined on Windows https://bugzilla.gnome.org/show_bug.cgi?id=692400
Patch 1 is also obsolete now, and I forgot to mention the real reason to include this in the message as well. Oh well. Wouldn't have happened if you had updated the patch as requested, sorry ;)
Comment on attachment 234225 [details] [review] patch [1/2] This got committed in some sense.