# HG changeset patch # User mmu_man # Date 1048697180 0 # Node ID 5c6648741fddb2a2d432724028b60a4829c15757 # Parent 2725c8eb3c81c7b1e7f10e4da18563136703c2ae debug stuff only for DEBUG :) diff -r 2725c8eb3c81 -r 5c6648741fdd mace.c --- 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);