aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-26 17:43:53 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-26 18:07:48 +0200
commite708c7fa214d862853fc32a30e63c67bb726ccb3 (patch)
tree2438656a796b5750c01f139044e2bcc7f3f381ca /libavcodec
parente66faf71eb89e4babcf8d48873768faad7847bcb (diff)
downloadffmpeg-e708c7fa214d862853fc32a30e63c67bb726ccb3.tar.gz
j2k: drop disabled debug code
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/j2k.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/libavcodec/j2k.c b/libavcodec/j2k.c
index fdd86d5cce..f5ee97085a 100644
--- a/libavcodec/j2k.c
+++ b/libavcodec/j2k.c
@@ -31,24 +31,6 @@
#define SHL(a, n) ((n)>=0 ? (a) << (n) : (a) >> -(n))
-#if 0
-void ff_j2k_printv(int *tab, int l)
-{
- int i;
- for (i = 0; i < l; i++)
- av_log(NULL, AV_LOG_DEBUG, "%.3d ", tab[i]);
- av_log(NULL, AV_LOG_DEBUG, "\n");
-}
-
-void ff_j2k_printu(uint8_t *tab, int l)
-{
- int i;
- for (i = 0; i < l; i++)
- av_log(NULL, AV_LOG_DEBUG, "%.3hd ", tab[i]);
- av_log(NULL, AV_LOG_DEBUG, "\n");
-}
-#endif
-
/* tag tree routines */
/** allocate the memory for tag tree */