summaryrefslogtreecommitdiff
path: root/src/libxinevdec/msvc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libxinevdec/msvc.c')
-rw-r--r--src/libxinevdec/msvc.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/libxinevdec/msvc.c b/src/libxinevdec/msvc.c
index 78260833f..8a68e63fe 100644
--- a/src/libxinevdec/msvc.c
+++ b/src/libxinevdec/msvc.c
@@ -22,7 +22,7 @@
* based on overview of Microsoft Video-1 algorithm
* by Mike Melanson: http://www.pcisys.net/~melanson/codecs/video1.txt
*
- * $Id: msvc.c,v 1.16 2002/11/20 11:57:47 mroi Exp $
+ * $Id: msvc.c,v 1.17 2002/12/06 01:44:06 miguelfreitas Exp $
*/
#include <stdlib.h>
@@ -291,18 +291,6 @@ static void msvc_decode_data (video_decoder_t *this_gen, buf_element_t *buf) {
}
}
- 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);