Mercurial > mplayer.hg
changeset 28268:dc64eca366cf
Fix d_width vs. d_height typo.
author | diego |
---|---|
date | Sun, 11 Jan 2009 19:48:01 +0000 |
parents | 757aca6254a3 |
children | 49ecb0f6c55f |
files | DOCS/tech/libmpcodecs.txt |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/DOCS/tech/libmpcodecs.txt Sun Jan 11 19:47:17 2009 +0000 +++ b/DOCS/tech/libmpcodecs.txt Sun Jan 11 19:48:01 2009 +0000 @@ -259,7 +259,7 @@ 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: