# HG changeset patch # User diego # Date 1231703281 0 # Node ID dc64eca366cf94b42a03b106ba38c540e20d9ef0 # Parent 757aca6254a35ca4f5edc0900e7ab149a63061d4 Fix d_width vs. d_height typo. diff -r 757aca6254a3 -r dc64eca366cf DOCS/tech/libmpcodecs.txt --- 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: