From e8420626d02aa1031ff90a176332d6857a6d9ef2 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sun, 13 Jul 2008 19:41:10 +0000 Subject: RTP: use dprintf(), allow compilation with -DDEBUG Originally committed as revision 14211 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtpenc.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'libavformat/rtpenc.c') diff --git a/libavformat/rtpenc.c b/libavformat/rtpenc.c index f65942db2e..2317f5cc30 100644 --- a/libavformat/rtpenc.c +++ b/libavformat/rtpenc.c @@ -120,9 +120,7 @@ static void rtcp_send_sr(AVFormatContext *s1, int64_t ntp_time) RTPDemuxContext *s = s1->priv_data; uint32_t rtp_ts; -#if defined(DEBUG) - printf("RTCP: %02x %"PRIx64" %x\n", s->payload_type, ntp_time, s->timestamp); -#endif + dprintf(s1, "RTCP: %02x %"PRIx64" %x\n", s->payload_type, ntp_time, s->timestamp); if (s->first_rtcp_ntp_time == AV_NOPTS_VALUE) s->first_rtcp_ntp_time = ntp_time; s->last_rtcp_ntp_time = ntp_time; @@ -146,9 +144,7 @@ void ff_rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len, int m) { RTPDemuxContext *s = s1->priv_data; -#ifdef DEBUG - printf("rtp_send_data size=%d\n", len); -#endif + dprintf(s1, "rtp_send_data size=%d\n", len); /* build the RTP header */ put_byte(s1->pb, (RTP_VERSION << 6)); @@ -301,9 +297,7 @@ static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt) int size= pkt->size; uint8_t *buf1= pkt->data; -#ifdef DEBUG - printf("%d: write len=%d\n", pkt->stream_index, size); -#endif + dprintf(s1, "%d: write len=%d\n", pkt->stream_index, size); rtcp_bytes = ((s->octet_count - s->last_octet_count) * RTCP_TX_RATIO_NUM) / RTCP_TX_RATIO_DEN; -- cgit v1.2.3