Fix d_width vs. d_height typo.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28303 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-01-11 19:48:01 +00:00
parent 7b8ab957e0
commit 0ccbcc55a7
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ static int config(struct vf_instance_s* vf,
unsigned int flags, unsigned int outfmt){
// use d_width/d_height if not set by user:
if(vf->priv->w==-1) vf->priv->w=d_width;
if(vf->priv->h==-1) vf->priv->h=d_width;
if(vf->priv->h==-1) vf->priv->h=d_height;
// initialize your filter code
...
// OK now config the rest of the filter chain, with our output parameters: