summaryrefslogtreecommitdiff
path: root/src/libxinevdec/fli.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libxinevdec/fli.c')
-rw-r--r--src/libxinevdec/fli.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/libxinevdec/fli.c b/src/libxinevdec/fli.c
index 4aae7d418..9e2d26d14 100644
--- a/src/libxinevdec/fli.c
+++ b/src/libxinevdec/fli.c
@@ -23,7 +23,7 @@
* avoid when implementing a FLI decoder, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: fli.c,v 1.10 2002/11/20 11:57:46 mroi Exp $
+ * $Id: fli.c,v 1.11 2002/12/06 01:44:06 miguelfreitas Exp $
*/
#include <stdio.h>
@@ -470,18 +470,6 @@ static void fli_decode_data (video_decoder_t *this_gen,
decode_fli_frame(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);