Commit c6a9c40d authored by mmu_man's avatar mmu_man

debug stuff only for DEBUG :)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1708 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 51dfefb9
......@@ -403,14 +403,18 @@ static int mace_decode_frame(AVCodecContext *avctx,
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);
......
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