diff options
author | Mans Rullgard <mans@mansr.com> | 2011-06-03 12:52:29 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-06-03 12:59:05 +0100 |
commit | 5e1166b31be45b37cbbd14eecfa1b260190ac651 (patch) | |
tree | 76a1a00533c14841937bb52bbdbde9f78c2a0c9d /libavformat/rtpdec.c | |
parent | 94bed8e582eed1268ddc0d2b88cad21d8c638774 (diff) | |
download | ffmpeg-5e1166b31be45b37cbbd14eecfa1b260190ac651.tar.gz |
Mark some variables with av_unused
Most of these variables are only used in av_dlog statements, some
are required but not used by other macros.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavformat/rtpdec.c')
-rw-r--r-- | libavformat/rtpdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index 4623088c38..a910cf08bb 100644 --- a/libavformat/rtpdec.c +++ b/libavformat/rtpdec.c @@ -321,7 +321,7 @@ int rtp_check_and_send_back_rr(RTPDemuxContext *s, int count) avio_flush(pb); len = avio_close_dyn_buf(pb, &buf); if ((len > 0) && buf) { - int result; + int av_unused result; av_dlog(s->ic, "sending %d bytes of RR\n", len); result= ffurl_write(s->rtp_ctx, buf, len); av_dlog(s->ic, "result from ffurl_write: %d\n", result); |