Mercurial > libavcodec.hg
changeset 1154:5c6648741fdd libavcodec
debug stuff only for DEBUG :)
author | mmu_man |
---|---|
date | Wed, 26 Mar 2003 16:46:20 +0000 |
parents | 2725c8eb3c81 |
children | c85d33c011ab |
files | mace.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mace.c Wed Mar 26 11:29:45 2003 +0000 +++ b/mace.c Wed Mar 26 16:46:20 2003 +0000 @@ -403,14 +403,18 @@ samples = (short *)data; switch (avctx->codec->id) { case CODEC_ID_MACE3: +#ifdef DEBUG puts("mace_decode_frame[3]()"); +#endif Exp1to3(c, buf, samples, buf_size / 2, avctx->channels, 1); if (avctx->channels == 2) Exp1to3(c, buf, samples+1, buf_size / 2, 2, 2); *data_size = 2 * 3 * buf_size; break; case CODEC_ID_MACE6: +#ifdef DEBUG puts("mace_decode_frame[6]()"); +#endif Exp1to6(c, buf, samples, buf_size, avctx->channels, 1); if (avctx->channels == 2) Exp1to6(c, buf, samples+1, buf_size, 2, 2);