# HG changeset patch # User michael # Date 1270946616 0 # Node ID 88cce1b69115232b5fec57ef7817696d116d4dd4 # Parent 57789f5d12cf1fd4833c0a6e29104bf3c666787e Raise needed score for codec probing in CODEC_ID_PROBE before the last packet. Fixes issue1871 diff -r 57789f5d12cf -r 88cce1b69115 utils.c --- a/utils.c Fri Apr 09 22:39:39 2010 +0000 +++ b/utils.c Sun Apr 11 00:43:36 2010 +0000 @@ -675,7 +675,8 @@ 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(s, st, pd, 1); + //FIXME we dont reduce score to 0 for the case of running out of buffer space in bytes + set_codec_from_probe_data(s, st, pd, st->probe_packets > 0 ? AVPROBE_SCORE_MAX/4 : 0); if(st->codec->codec_id != CODEC_ID_PROBE){ pd->buf_size=0; av_freep(&pd->buf);