summaryrefslogtreecommitdiff
path: root/libavcodec/sunrast.c
diff options
context:
space:
mode:
authorIvo van Poorten <ivop@euronet.nl>2007-12-28 13:12:47 +0000
committerIvo van Poorten <ivop@euronet.nl>2007-12-28 13:12:47 +0000
commit29e35482e709bbb6d65086cee110e21501bf998c (patch)
treea6d1192ac8be94e7084a1d13e8394bace6bfec5a /libavcodec/sunrast.c
parent3c808d8cc4c9dfbb24274205dcc3183ba95a3a5f (diff)
remove forgotten debug statement
Originally committed as revision 11344 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/sunrast.c')
-rw-r--r--libavcodec/sunrast.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/sunrast.c b/libavcodec/sunrast.c
index 2fe4331028..cdd678201a 100644
--- a/libavcodec/sunrast.c
+++ b/libavcodec/sunrast.c
@@ -120,8 +120,6 @@ static int sunrast_decode_frame(AVCodecContext *avctx, void *data,
return -1;
}
- av_log(avctx, AV_LOG_DEBUG, "maplength %u\n", len);
-
ptr = p->data[1];
for (x=0; x<len; x++, ptr+=4)
*(uint32_t *)ptr = (buf[x]<<16) + (buf[len+x]<<8) + buf[len+len+x];