Index: libmpcodecs/vf.c =================================================================== RCS file: /cvsroot/mplayer/main/libmpcodecs/vf.c,v retrieving revision 1.119 diff -r1.119 vf.c 271a272,281 > > if(w2 != vf->w || h != vf->h) { > // Ensure that the filter can accept strided images > int flags=vf->query_format(vf,outfmt); // should not fail > if(!(flags&3)) mp_msg(MSGT_DECVIDEO,MSGL_WARN,"??? vf_get_image{vf->query_format(outfmt)} failed!\n"); > if(flags&VFCAP_ACCEPT_STRIDE){ > w2 = w = vf->w; > h = vf->h; > } > }