diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-06 01:44:06 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-06 01:44:06 +0000 |
commit | 4ae936639132b75872ee84444c59d1914cc2292d (patch) | |
tree | 48cbb7520514e8dbaae9d8496011e1f1129165cf /src/libxinevdec/idcinvideo.c | |
parent | 543eb5bd795bbec6814be1642be85f4bc3a13bac (diff) | |
download | xine-lib-4ae936639132b75872ee84444c59d1914cc2292d.tar.gz xine-lib-4ae936639132b75872ee84444c59d1914cc2292d.tar.bz2 |
remove img->copy from all decoders
CVS patchset: 3436
CVS date: 2002/12/06 01:44:06
Diffstat (limited to 'src/libxinevdec/idcinvideo.c')
-rw-r--r-- | src/libxinevdec/idcinvideo.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/libxinevdec/idcinvideo.c b/src/libxinevdec/idcinvideo.c index e774d7d1f..17a7feb3d 100644 --- a/src/libxinevdec/idcinvideo.c +++ b/src/libxinevdec/idcinvideo.c @@ -21,7 +21,7 @@ * the Id CIN format, visit: * http://www.csse.monash.edu.au/~timf/ * - * $Id: idcinvideo.c,v 1.9 2002/11/20 11:57:46 mroi Exp $ + * $Id: idcinvideo.c,v 1.10 2002/12/06 01:44:06 miguelfreitas Exp $ */ #include <stdio.h> @@ -298,18 +298,6 @@ static void idcinvideo_decode_data (video_decoder_t *this_gen, huff_decode(this); yuv444_to_yuy2(&this->yuv_planes, img->base[0], img->pitches[0]); - if (img->copy) { - int height = img->height; - uint8_t *src[3]; - - src[0] = img->base[0]; - - while ((height -= 16) >= 0) { - img->copy(img, src); - src[0] += 16 * img->pitches[0]; - } - } - img->draw(img, this->stream); img->free(img); |