j2k: drop disabled debug code

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-05-26 17:43:53 +02:00
parent e66faf71eb
commit e708c7fa21
1 changed files with 0 additions and 18 deletions

View File

@ -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 */