<div>Hello</div>
<div>&nbsp;</div>
<div>I investigated this issue I little further more and found this:</div>
<div><a href="http://www.ethereal.com/lists/ethereal-dev/200406/msg00527.html">http://www.ethereal.com/lists/ethereal-dev/200406/msg00527.html</a></div>
<div>&nbsp;</div>
<div><span class="postbody"><font size="2">Tried to compile myself with no luck, run into an error <br>&quot;windres: share/vlc_win32_rc.rc:15: syntax error&quot; <br>during final make :( ... <br><br>Changed this file in the source 
<br></font><a href="https://trac.videolan.org/vlc/file/trunk/modules/access_output/file.c" target="_blank"><font color="#006699" size="2">https://trac.videolan.org/vlc/file/trunk/modules/access_output/file.c</font></a><font size="2">
 <br>From: <br>============================== <br>if( !strcmp( p_access-&gt;psz_name, &quot;-&quot; ) ) <br>{ <br>p_access-&gt;p_sys-&gt;i_handle = STDOUT_FILENO; <br>msg_Dbg( p_access, &quot;using stdout&quot; ); <br>} <br>
============================== <br><br>To: <br>============================== <br>if( !strcmp( p_access-&gt;psz_name, &quot;-&quot; ) ) <br>{ <br>#if defined(MSDOS) || defined(OS2) || defined(WIN32) <br>setmode (STDOUT_FILENO, O_BINARY); 
<br>#endif <br>p_access-&gt;p_sys-&gt;i_handle = STDOUT_FILENO; <br>msg_Dbg( p_access, &quot;using stdout&quot; ); <br>} <br>============================== <br><br>Maybe anyone else can give it a try and report the outcome? Would be thankful. 
<br><br>Best Regards <br>Polyphem</font></span></div>
<div><br>&nbsp;</div>