[SCM] libav/experimental: Replace puts() by dprintf where appropriate.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:11:54 UTC 2013


The following commit has been merged in the experimental branch:
commit f9cac0a778fbbd0c3c3689c4a946a1ecc2afd0c4
Author: Diego Biurrun <diego at biurrun.de>
Date:   Thu Jan 17 08:30:06 2008 +0000

    Replace puts() by dprintf where appropriate.
    
    Originally committed as revision 11547 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/mace.c b/libavcodec/mace.c
index 9583937..145cf4a 100644
--- a/libavcodec/mace.c
+++ b/libavcodec/mace.c
@@ -409,18 +409,14 @@ 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
+        dprintf(avctx, "mace_decode_frame[3]()");
         Exp1to3(c, buf, samples, buf_size / 2 / avctx->channels, avctx->channels, 1);
         if (avctx->channels == 2)
             Exp1to3(c, buf, samples+1, buf_size / 2 / 2, 2, 2);
         *data_size = 2 * 3 * buf_size;
         break;
     case CODEC_ID_MACE6:
-#ifdef DEBUG
-puts("mace_decode_frame[6]()");
-#endif
+        dprintf(avctx, "mace_decode_frame[6]()");
         Exp1to6(c, buf, samples, buf_size / avctx->channels, avctx->channels, 1);
         if (avctx->channels == 2)
             Exp1to6(c, buf, samples+1, buf_size / 2, 2, 2);

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list