Commit 23664624 authored by Diego Biurrun's avatar Diego Biurrun

Replace #ifdef + av_log() combinations by av_dlog().

parent df96f22d
...@@ -418,8 +418,8 @@ int ff_ivi_decode_blocks(GetBitContext *gb, IVIBandDesc *band, IVITile *tile) ...@@ -418,8 +418,8 @@ int ff_ivi_decode_blocks(GetBitContext *gb, IVIBandDesc *band, IVITile *tile)
break; break;
pos = band->scan[scan_pos]; pos = band->scan[scan_pos];
if (IVI_DEBUG && !val) if (!val)
av_log(NULL, AV_LOG_ERROR, "Val = 0 encountered!\n"); av_dlog(NULL, "Val = 0 encountered!\n");
q = (base_tab[pos] * quant) >> 9; q = (base_tab[pos] * quant) >> 9;
if (q > 1) if (q > 1)
......
...@@ -238,9 +238,9 @@ static int svq1_decode_block_intra (GetBitContext *bitbuf, uint8_t *pixels, int ...@@ -238,9 +238,9 @@ static int svq1_decode_block_intra (GetBitContext *bitbuf, uint8_t *pixels, int
} }
if ((stages > 0) && (level >= 4)) { if ((stages > 0) && (level >= 4)) {
#ifdef DEBUG_SVQ1 av_dlog(s->avctx,
av_log(s->avctx, AV_LOG_INFO, "Error (svq1_decode_block_intra): invalid vector: stages=%i level=%i\n",stages,level); "Error (svq1_decode_block_intra): invalid vector: stages=%i level=%i\n",
#endif stages, level);
return -1; /* invalid vector */ return -1; /* invalid vector */
} }
...@@ -288,9 +288,9 @@ static int svq1_decode_block_non_intra (GetBitContext *bitbuf, uint8_t *pixels, ...@@ -288,9 +288,9 @@ static int svq1_decode_block_non_intra (GetBitContext *bitbuf, uint8_t *pixels,
if (stages == -1) continue; /* skip vector */ if (stages == -1) continue; /* skip vector */
if ((stages > 0) && (level >= 4)) { if ((stages > 0) && (level >= 4)) {
#ifdef DEBUG_SVQ1 av_dlog(s->avctx,
av_log(s->avctx, AV_LOG_INFO, "Error (svq1_decode_block_non_intra): invalid vector: stages=%i level=%i\n",stages,level); "Error (svq1_decode_block_non_intra): invalid vector: stages=%i level=%i\n",
#endif stages, level);
return -1; /* invalid vector */ return -1; /* invalid vector */
} }
...@@ -499,9 +499,7 @@ static int svq1_decode_delta_block (MpegEncContext *s, GetBitContext *bitbuf, ...@@ -499,9 +499,7 @@ static int svq1_decode_delta_block (MpegEncContext *s, GetBitContext *bitbuf,
if (result != 0) if (result != 0)
{ {
#ifdef DEBUG_SVQ1 av_dlog(s->avctx, "Error in svq1_motion_inter_block %i\n", result);
av_log(s->avctx, AV_LOG_INFO, "Error in svq1_motion_inter_block %i\n",result);
#endif
break; break;
} }
result = svq1_decode_block_non_intra (bitbuf, current, pitch); result = svq1_decode_block_non_intra (bitbuf, current, pitch);
...@@ -512,9 +510,7 @@ static int svq1_decode_delta_block (MpegEncContext *s, GetBitContext *bitbuf, ...@@ -512,9 +510,7 @@ static int svq1_decode_delta_block (MpegEncContext *s, GetBitContext *bitbuf,
if (result != 0) if (result != 0)
{ {
#ifdef DEBUG_SVQ1 av_dlog(s->avctx, "Error in svq1_motion_inter_4v_block %i\n", result);
av_log(s->avctx, AV_LOG_INFO, "Error in svq1_motion_inter_4v_block %i\n",result);
#endif
break; break;
} }
result = svq1_decode_block_non_intra (bitbuf, current, pitch); result = svq1_decode_block_non_intra (bitbuf, current, pitch);
...@@ -660,9 +656,7 @@ static int svq1_decode_frame(AVCodecContext *avctx, ...@@ -660,9 +656,7 @@ static int svq1_decode_frame(AVCodecContext *avctx,
if (result != 0) if (result != 0)
{ {
#ifdef DEBUG_SVQ1 av_dlog(s->avctx, "Error in svq1_decode_frame_header %i\n",result);
av_log(s->avctx, AV_LOG_INFO, "Error in svq1_decode_frame_header %i\n",result);
#endif
return result; return result;
} }
...@@ -729,9 +723,7 @@ static int svq1_decode_frame(AVCodecContext *avctx, ...@@ -729,9 +723,7 @@ static int svq1_decode_frame(AVCodecContext *avctx,
linesize, pmv, x, y); linesize, pmv, x, y);
if (result != 0) if (result != 0)
{ {
#ifdef DEBUG_SVQ1 av_dlog(s->avctx, "Error in svq1_decode_delta_block %i\n",result);
av_log(s->avctx, AV_LOG_INFO, "Error in svq1_decode_delta_block %i\n",result);
#endif
goto err; goto err;
} }
} }
......
...@@ -370,9 +370,7 @@ static int vorbis_parse_setup_hdr_codebooks(vorbis_context *vc) ...@@ -370,9 +370,7 @@ static int vorbis_parse_setup_hdr_codebooks(vorbis_context *vc)
float last = 0.0; float last = 0.0;
unsigned lookup_offset = i; unsigned lookup_offset = i;
#ifdef V_DEBUG av_dlog(vc->avccontext, "Lookup offset %u ,", i);
av_log(vc->avccontext, AV_LOG_INFO, "Lookup offset %u ,", i);
#endif
for (k = 0; k < dim; ++k) { for (k = 0; k < dim; ++k) {
unsigned multiplicand_offset = lookup_offset % codebook_lookup_values; unsigned multiplicand_offset = lookup_offset % codebook_lookup_values;
...@@ -383,12 +381,11 @@ static int vorbis_parse_setup_hdr_codebooks(vorbis_context *vc) ...@@ -383,12 +381,11 @@ static int vorbis_parse_setup_hdr_codebooks(vorbis_context *vc)
} }
tmp_vlc_bits[j] = tmp_vlc_bits[i]; tmp_vlc_bits[j] = tmp_vlc_bits[i];
#ifdef V_DEBUG av_dlog(vc->avccontext, "real lookup offset %u, vector: ", j);
av_log(vc->avccontext, AV_LOG_INFO, "real lookup offset %u, vector: ", j);
for (k = 0; k < dim; ++k) for (k = 0; k < dim; ++k)
av_log(vc->avccontext, AV_LOG_INFO, " %f ", codebook_setup->codevectors[j * dim + k]); av_dlog(vc->avccontext, " %f ",
av_log(vc->avccontext, AV_LOG_INFO, "\n"); codebook_setup->codevectors[j * dim + k]);
#endif av_dlog(vc->avccontext, "\n");
++j; ++j;
} }
......
...@@ -177,15 +177,13 @@ restart_poll: ...@@ -177,15 +177,13 @@ restart_poll:
av_log(context, AV_LOG_ERROR, "Failed to get status: %s\n", strerror(errno)); av_log(context, AV_LOG_ERROR, "Failed to get status: %s\n", strerror(errno));
return AVERROR(EIO); return AVERROR(EIO);
} }
#ifdef DV1394_DEBUG av_dlog(context, "DV1394: status\n"
av_log(context, AV_LOG_DEBUG, "DV1394: status\n"
"\tactive_frame\t%d\n" "\tactive_frame\t%d\n"
"\tfirst_clear_frame\t%d\n" "\tfirst_clear_frame\t%d\n"
"\tn_clear_frames\t%d\n" "\tn_clear_frames\t%d\n"
"\tdropped_frames\t%d\n", "\tdropped_frames\t%d\n",
s.active_frame, s.first_clear_frame, s.active_frame, s.first_clear_frame,
s.n_clear_frames, s.dropped_frames); s.n_clear_frames, s.dropped_frames);
#endif
dv->avail = s.n_clear_frames; dv->avail = s.n_clear_frames;
dv->index = s.first_clear_frame; dv->index = s.first_clear_frame;
...@@ -200,10 +198,8 @@ restart_poll: ...@@ -200,10 +198,8 @@ restart_poll:
} }
} }
#ifdef DV1394_DEBUG av_dlog(context, "index %d, avail %d, done %d\n", dv->index, dv->avail,
av_log(context, AV_LOG_DEBUG, "index %d, avail %d, done %d\n", dv->index, dv->avail,
dv->done); dv->done);
#endif
size = dv_produce_packet(dv->dv_demux, pkt, size = dv_produce_packet(dv->dv_demux, pkt,
dv->ring + (dv->index * DV1394_PAL_FRAME_SIZE), dv->ring + (dv->index * DV1394_PAL_FRAME_SIZE),
......
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