<blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;" class="gmail_quote">I get a reproducible crash in a loop within DoWork:<br><br>
int i_size = p_out_buf->i_nb_bytes / sizeof(float);<br>
float * a = (float *)p_out_buf->p_buffer;<br>
for ( i = 0 ; i < i_size ; i++ )<br>
   *a++ = 0.0; // crash<br></blockquote>

<br>I came across a very similar crash on the exact same line last week. For other files, I also got a crash in modules/audio_filter/converter/a52tofloat32.c:287. After wasting a lot of time and not being able to find anything wrong in gdb, I eventually found my problem in an unexpected place: I had previously installed a version of VLC I had compiled into /usr/local, which was interfering with the version I had compiled. Removing all traces of VLC and its modules in /usr/local fixed everything.<br>

<br>Barry<br>