diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-11-01 18:03:26 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-11-01 18:03:26 +0000 |
commit | 4f95f80e2d42f00a595e7e975cda0e6c555b668e (patch) | |
tree | 32585a0136b010b74d4cbb433c1c4aa9b38b6333 /libavcodec | |
parent | 2009c7fc96e0104898161b35f822d43b55576de5 (diff) | |
download | ffmpeg-4f95f80e2d42f00a595e7e975cda0e6c555b668e.tar.gz |
remove useless debug func
Originally committed as revision 10902 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/adx.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libavcodec/adx.c b/libavcodec/adx.c index a0f7373229..6cb0f89396 100644 --- a/libavcodec/adx.c +++ b/libavcodec/adx.c @@ -265,19 +265,6 @@ static int adx_decode_header(AVCodecContext *avctx,const unsigned char *buf,size 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) |