diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-08-05 02:15:46 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-08-05 02:15:46 +0000 |
commit | 3504467f8b80bcd1645672f978f1c3e2b272c649 (patch) | |
tree | f8e851da250aa1f289f9f99c87c879448d1d6b12 | |
parent | 4f0a995631572982bd9b32e7adac15ca662b407c (diff) | |
download | ffmpeg-streaming-3504467f8b80bcd1645672f978f1c3e2b272c649.zip ffmpeg-streaming-3504467f8b80bcd1645672f978f1c3e2b272c649.tar.gz |
//more debug info
Originally committed as revision 9929 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index d831b71..1f2254d 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -69,7 +69,7 @@ static int mpegps_probe(AVProbeData *p) if(vid || audio) /* invalid VDR files nd short PES streams */ score= AVPROBE_SCORE_MAX/4; -//av_log(NULL, AV_LOG_ERROR, "%d %d %d %d %d\n", sys, priv1, pspack,vid, audio); +//av_log(NULL, AV_LOG_ERROR, "%d %d %d %d %d len:%d\n", sys, priv1, pspack,vid, audio, p->buf_size); if(sys && sys*9 <= pspack*10) return AVPROBE_SCORE_MAX/2+2; // +1 for .mpg if((priv1 || vid || audio) && (priv1+vid+audio)*9 <= pspack*10) |