[FFmpeg-cvslog] r10902 - trunk/libavcodec/adx.c
aurel
subversion
Thu Nov 1 19:03:26 CET 2007
Author: aurel
Date: Thu Nov 1 19:03:26 2007
New Revision: 10902
Log:
remove useless debug func
Modified:
trunk/libavcodec/adx.c
Modified: trunk/libavcodec/adx.c
==============================================================================
--- trunk/libavcodec/adx.c (original)
+++ trunk/libavcodec/adx.c Thu Nov 1 19:03:26 2007
@@ -265,19 +265,6 @@ static int adx_decode_header(AVCodecCont
return offset;
}
-#if 0
-static void dump(unsigned char *buf,size_t len)
-{
- int i;
- for(i=0;i<len;i++) {
- if ((i&15)==0) av_log(NULL, AV_LOG_DEBUG, "%04x ",i);
- av_log(NULL, AV_LOG_DEBUG, "%02x ",buf[i]);
- if ((i&15)==15) av_log(NULL, AV_LOG_DEBUG, "\n");
- }
- av_log(NULL, AV_LOG_ERROR, "\n");
-}
-#endif
-
static int adx_decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
uint8_t *buf0, int buf_size)
More information about the ffmpeg-cvslog
mailing list