summaryrefslogtreecommitdiff
path: root/src/libxinevdec/qtsmc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libxinevdec/qtsmc.c')
-rw-r--r--src/libxinevdec/qtsmc.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/libxinevdec/qtsmc.c b/src/libxinevdec/qtsmc.c
index 45194b934..e35e14d27 100644
--- a/src/libxinevdec/qtsmc.c
+++ b/src/libxinevdec/qtsmc.c
@@ -23,7 +23,7 @@
* For more information on the SMC format, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: qtsmc.c,v 1.9 2002/11/20 11:57:47 mroi Exp $
+ * $Id: qtsmc.c,v 1.10 2002/12/06 01:44:06 miguelfreitas Exp $
*/
#include <stdio.h>
@@ -582,18 +582,6 @@ static void qtsmc_decode_data (video_decoder_t *this_gen,
decode_qtsmc(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);