summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-03-26 10:50:43 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-03-26 11:02:58 +0100
commitc06bdc60c90d6cc978c783e6d937eeb77a6801f0 (patch)
tree3438facd58e5f490a6fa8d6f4b00a3e78ab528ee /libavformat/rtpdec.c
parent495f08edb444713e8a8915fff25c841dfccf09a5 (diff)
avformat/rtpdec: Remove stray debug av_log()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/rtpdec.c')
-rw-r--r--libavformat/rtpdec.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c
index a83acd1152..037260596a 100644
--- a/libavformat/rtpdec.c
+++ b/libavformat/rtpdec.c
@@ -714,7 +714,6 @@ static int enqueue_packet(RTPDemuxContext *s, uint8_t *buf, int len)
packet->next = *cur;
*cur = packet;
s->queue_len++;
- av_log(0, AV_LOG_ERROR, "queue: %d\n", s->queue_len);
return 0;
}