summaryrefslogtreecommitdiffstats
path: root/mencoder.c
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-15 18:50:58 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-15 18:50:58 +0000
commit7ff65cb40a6f784ed5349f8fe6039a90b9027160 (patch)
treea683f05282a2a52b9c3bed9b1e3ed97fe3fdb83a /mencoder.c
parent0b1a2cac98dc62a499bb469dab168e975e6f2868 (diff)
downloadmpv-7ff65cb40a6f784ed5349f8fe6039a90b9027160.tar.bz2
mpv-7ff65cb40a6f784ed5349f8fe6039a90b9027160.tar.xz
1000L i forgot mencoder
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9596 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mencoder.c')
-rw-r--r--mencoder.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/mencoder.c b/mencoder.c
index 1f1b4eeb7d..01ef13ba66 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -681,7 +681,10 @@ default:
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");