summaryrefslogtreecommitdiff
path: root/libavformat/bit.c
diff options
context:
space:
mode:
authorLaurent Aimar <fenrir@videolan.org>2011-09-25 00:11:10 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-25 00:29:44 +0200
commit3b26daedd8271286967481a499b061b0ba8aa9a6 (patch)
tree0e3f7b0701e90e8ba13f7384c1d24e52b84fda8f /libavformat/bit.c
parent78cb39d2b2ad731dd3b984b0c0711b9f1d6de004 (diff)
Removed debug message in the probe function of bit demuxer.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/bit.c')
-rw-r--r--libavformat/bit.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/bit.c b/libavformat/bit.c
index ad55a55cb1..2cec5e95d0 100644
--- a/libavformat/bit.c
+++ b/libavformat/bit.c
@@ -12,7 +12,6 @@ static int probe(AVProbeData *p)
{
int i;
i=AV_RL16(&p->buf[0]);
-av_log(NULL, AV_LOG_ERROR, "bit probe: %x\n", i);
if(i != SYNC_WORD)
return 0;