CVS: main mencoder.c,1.207,1.208
Update of /cvsroot/mplayer/main In directory mail:/var/tmp.root/cvs-serv27194 Modified Files: mencoder.c Log Message: 1000L i forgot mencoder Index: mencoder.c =================================================================== RCS file: /cvsroot/mplayer/main/mencoder.c,v retrieving revision 1.207 retrieving revision 1.208 diff -u -r1.207 -r1.208 --- mencoder.c 11 Mar 2003 19:03:31 -0000 1.207 +++ mencoder.c 15 Mar 2003 18:50:58 -0000 1.208 @@ -681,7 +681,10 @@ mencoder_exit(1,NULL); } // append 'expand' filter, it fixes stride problems and renders osd: - if (auto_expand) sh_video->vfilter=vf_open_filter(sh_video->vfilter,"expand","-1:-1:-1:-1:1"); + if (auto_expand) { + char* vf_args[] = { "osd", "1", NULL }; + sh_video->vfilter=vf_open_filter(sh_video->vfilter,"expand",vf_args); + } sh_video->vfilter=append_filters(sh_video->vfilter); mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
participants (1)
-
Alban Bedel CVS