From 0ccbcc55a75800eb61f91c31090630b5b226f5f7 Mon Sep 17 00:00:00 2001 From: diego Date: Sun, 11 Jan 2009 19:48:01 +0000 Subject: [PATCH] Fix d_width vs. d_height typo. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28303 b3059339-0415-0410-9bf9-f77b7e298cf2 --- DOCS/tech/libmpcodecs.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DOCS/tech/libmpcodecs.txt b/DOCS/tech/libmpcodecs.txt index bfa9ec5080..d9d5180a32 100644 --- a/DOCS/tech/libmpcodecs.txt +++ b/DOCS/tech/libmpcodecs.txt @@ -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: