]> git.sesse.net Git - ffmpeg/commitdiff
remove forgotten debug statement
authorIvo van Poorten <ivop@euronet.nl>
Fri, 28 Dec 2007 13:12:47 +0000 (13:12 +0000)
committerIvo van Poorten <ivop@euronet.nl>
Fri, 28 Dec 2007 13:12:47 +0000 (13:12 +0000)
Originally committed as revision 11344 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/sunrast.c

index 2fe4331028c3e67e5a7bfc1b75f3c18327d7f4c1..cdd678201a44112c7c1cc634c8957e77430a9797 100644 (file)
@@ -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];