# HG changeset patch # User michael # Date 1260742551 0 # Node ID 075674a336416fd0e462c98cbdf1a6d328d154c4 # Parent c0f40f4293cdde276af6af527a71cc0cd0d30037 Debug av_log() about stream probing from ffmbc. diff -r c0f40f4293cd -r 075674a33641 utils.c --- a/utils.c Sun Dec 13 22:12:20 2009 +0000 +++ b/utils.c Sun Dec 13 22:15:51 2009 +0000 @@ -609,7 +609,7 @@ if(st->codec->codec_id == CODEC_ID_PROBE){ AVProbeData *pd = &st->probe_data; - + av_log(s, AV_LOG_DEBUG, "probing stream %d\n", st->index); --st->probe_packets; pd->buf = av_realloc(pd->buf, pd->buf_size+pkt->size+AVPROBE_PADDING_SIZE); @@ -622,6 +622,7 @@ if(st->codec->codec_id != CODEC_ID_PROBE){ pd->buf_size=0; av_freep(&pd->buf); + av_log(s, AV_LOG_DEBUG, "probed stream %d\n", st->index); } } }