mirror of https://github.com/mpv-player/mpv
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:
parent
7b8ab957e0
commit
0ccbcc55a7
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue