<font style="font-family: Arial, Helvetica, sans-serif; font-size: 10pt">Hello!<br>I'm attempting to write a video filter for VLC and write now I'm just trying to compile "scale.c" found in modules/video_filter. I'm trying to compile under Visual Studio 2005 with VLC 0.9.8a. When I compile, I get 'MODULE_STRING' undeclared identifier. I was able to successfully write an audio filter and had to define MODULE_STRING so I try this in my video filter:<br><br>#define MODULE_STRING "MyTest_Video_Filter"<br><br>but it doesn't work. Tracing the error leads to "vlc_filter.h" line 106 which is the msg_Warn function. <br><br>static inline picture_t *filter_NewPicture( filter_t *p_filter )<br>{<br>    picture_t *p_picture = p_filter->pf_vout_buffer_new( p_filter );<br>    if( !p_picture )<br>        msg_Warn( p_filter, "can't get output picture" );<br>    return p_picture;<br>}<br><br>So far Ihaven't made any changes to "scale.c". Any ideas on what I'm missing? Thanks!<br></font>