summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-09 16:13:51 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-09 16:13:51 +0000
commit19efdd59aa98afb226f1ff9d69b8391d6f947220 (patch)
tree901dc511c21d8da845552f79a59727232f950e8a /libmpcodecs
parent0ca14cbb7431c6e7182475de1c660aa4090929e5 (diff)
downloadmpv-19efdd59aa98afb226f1ff9d69b8391d6f947220.tar.bz2
mpv-19efdd59aa98afb226f1ff9d69b8391d6f947220.tar.xz
10l
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7334 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/vf_palette.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libmpcodecs/vf_palette.c b/libmpcodecs/vf_palette.c
index 8abff62d5c..0f511b17d5 100644
--- a/libmpcodecs/vf_palette.c
+++ b/libmpcodecs/vf_palette.c
@@ -86,25 +86,25 @@ static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){
// no stride conversion needed
switch(dmpi->imgfmt&255){
case 15:
- if (mpi->flags & MP_IMGFLAG_SWAPPED)
+ if (dmpi->flags & MP_IMGFLAG_SWAPPED)
palette8tobgr15(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
else
palette8torgb15(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
break;
case 16:
- if (mpi->flags & MP_IMGFLAG_SWAPPED)
+ if (dmpi->flags & MP_IMGFLAG_SWAPPED)
palette8tobgr16(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
else
palette8torgb16(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
break;
case 24:
- if (mpi->flags & MP_IMGFLAG_SWAPPED)
+ if (dmpi->flags & MP_IMGFLAG_SWAPPED)
palette8tobgr24(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
else
palette8torgb24(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
break;
case 32:
- if (mpi->flags & MP_IMGFLAG_SWAPPED)
+ if (dmpi->flags & MP_IMGFLAG_SWAPPED)
palette8tobgr32(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
else
palette8torgb32(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
@@ -117,25 +117,25 @@ static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){
unsigned char* dst=dmpi->planes[0]+y*dmpi->stride[0];
switch(dmpi->imgfmt&255){
case 15:
- if (mpi->flags & MP_IMGFLAG_SWAPPED)
+ if (dmpi->flags & MP_IMGFLAG_SWAPPED)
palette8tobgr15(src,dst,mpi->w,mpi->planes[1]);
else
palette8torgb15(src,dst,mpi->w,mpi->planes[1]);
break;
case 16:
- if (mpi->flags & MP_IMGFLAG_SWAPPED)
+ if (dmpi->flags & MP_IMGFLAG_SWAPPED)
palette8tobgr16(src,dst,mpi->w,mpi->planes[1]);
else
palette8torgb16(src,dst,mpi->w,mpi->planes[1]);
break;
case 24:
- if (mpi->flags & MP_IMGFLAG_SWAPPED)
+ if (dmpi->flags & MP_IMGFLAG_SWAPPED)
palette8tobgr24(src,dst,mpi->w,mpi->planes[1]);
else
palette8torgb24(src,dst,mpi->w,mpi->planes[1]);
break;
case 32:
- if (mpi->flags & MP_IMGFLAG_SWAPPED)
+ if (dmpi->flags & MP_IMGFLAG_SWAPPED)
palette8tobgr32(src,dst,mpi->w,mpi->planes[1]);
else
palette8torgb32(src,dst,mpi->w,mpi->planes[1]);