diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-09-18 00:08:17 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-09-18 00:08:17 +0000 |
commit | 66d1cdb6728e266a2eb2c58b6fd6adffee413717 (patch) | |
tree | 6ff87eab31078cc53b3916072059dd9cedbfe40f /postproc/swscale_internal.h | |
parent | 7c2425d239ceac0075700df252ec561327832414 (diff) | |
download | ffmpeg-66d1cdb6728e266a2eb2c58b6fd6adffee413717.tar.gz |
passing an array or double precission parameters for the scaling function, instead of missusing a few bits of the flags
fixing the naming of the scaling functions a little
Originally committed as revision 13374 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale_internal.h')
-rw-r--r-- | postproc/swscale_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/postproc/swscale_internal.h b/postproc/swscale_internal.h index c7761ee1a4..0013129b5a 100644 --- a/postproc/swscale_internal.h +++ b/postproc/swscale_internal.h @@ -54,6 +54,7 @@ typedef struct SwsContext{ int chrIntHSubSample, chrIntVSubSample; int chrDstHSubSample, chrDstVSubSample; int vChrDrop; + double param[2]; int16_t **lumPixBuf; int16_t **chrPixBuf; |