Commit e708c7fa authored by Michael Niedermayer's avatar Michael Niedermayer

j2k: drop disabled debug code

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e66faf71
...@@ -31,24 +31,6 @@ ...@@ -31,24 +31,6 @@
#define SHL(a, n) ((n)>=0 ? (a) << (n) : (a) >> -(n)) #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 */ /* tag tree routines */
/** allocate the memory for tag tree */ /** allocate the memory for tag tree */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment