diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-10-08 17:46:22 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-10-08 17:46:22 +0000 |
commit | 4900461742dcbda281171ae97ed53f3b9ff13849 (patch) | |
tree | be4b54c1491d0f8378c880eb82a1e76e1609e779 /libswscale/swscale_internal.h | |
parent | fd2b356a62db64152bf7f79c1a695cd07bb86aff (diff) | |
download | ffmpeg-4900461742dcbda281171ae97ed53f3b9ff13849.tar.gz |
Add a new unscaled PAL8 -> RGB converter.
Originally committed as revision 27730 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r-- | libswscale/swscale_internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index 4a84d20ac1..48995571e0 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -80,6 +80,9 @@ typedef struct SwsContext{ int sliceDir; double param[2]; + uint32_t pal_yuv[256]; + uint32_t pal_rgb[256]; + int16_t **lumPixBuf; int16_t **chrPixBuf; int16_t *hLumFilter; |