diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-20 17:30:48 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-21 02:19:07 +0200 |
commit | a924b83cccf25c03c2f1b68251c0a52621d4e378 (patch) | |
tree | 1b4d8a7ccc758e3de692a67e89c2e1624a8d29d1 /libavformat/nsvdec.c | |
parent | ecf34e8fc2f7c8ec67bf939e3fb621605f4a0697 (diff) | |
download | ffmpeg-a924b83cccf25c03c2f1b68251c0a52621d4e378.tar.gz |
avformat/nsvdec: remove trace log from probe(), this is better done generically not per format
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/nsvdec.c')
-rw-r--r-- | libavformat/nsvdec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c index 5002bd7c4c..de55396508 100644 --- a/libavformat/nsvdec.c +++ b/libavformat/nsvdec.c @@ -723,7 +723,6 @@ static int nsv_probe(AVProbeData *p) { int i, score = 0; - av_log(NULL, AV_LOG_TRACE, "nsv_probe(), buf_size %d\n", p->buf_size); /* check file header */ /* streamed files might not have any header */ if (p->buf[0] == 'N' && p->buf[1] == 'S' && |