[SCM] libav/experimental: print at debug level the score at which codec probing succedeed

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:51:22 UTC 2013


The following commit has been merged in the experimental branch:
commit db46c4e14d3346e91e7abd7ac05810d1dbddacb7
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date:   Thu Sep 17 18:46:50 2009 +0000

    print at debug level the score at which codec probing succedeed
    
    Originally committed as revision 19899 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/utils.c b/libavformat/utils.c
index 373157b..4b65010 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -315,12 +315,14 @@ AVInputFormat *av_probe_input_format(AVProbeData *pd, int is_opened){
     return av_probe_input_format2(pd, is_opened, &score);
 }
 
-static int set_codec_from_probe_data(AVStream *st, AVProbeData *pd, int score)
+static int set_codec_from_probe_data(AVFormatContext *s, AVStream *st, AVProbeData *pd, int score)
 {
     AVInputFormat *fmt;
     fmt = av_probe_input_format2(pd, 1, &score);
 
     if (fmt) {
+        av_log(s, AV_LOG_DEBUG, "Probe with size=%d, packets=%d detected %s with score=%d\n",
+               pd->buf_size, MAX_PROBE_PACKETS - st->probe_packets, fmt->name, score);
         if (!strcmp(fmt->name, "mp3")) {
             st->codec->codec_id = CODEC_ID_MP3;
             st->codec->codec_type = CODEC_TYPE_AUDIO;
@@ -595,7 +597,7 @@ int av_read_packet(AVFormatContext *s, AVPacket *pkt)
             memset(pd->buf+pd->buf_size, 0, AVPROBE_PADDING_SIZE);
 
             if(av_log2(pd->buf_size) != av_log2(pd->buf_size - pkt->size)){
-                set_codec_from_probe_data(st, pd, 1);
+                set_codec_from_probe_data(s, st, pd, 1);
                 if(st->codec->codec_id != CODEC_ID_PROBE){
                     pd->buf_size=0;
                     av_freep(&pd->buf);

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list