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/utils.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/utils.c')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index b844ab95bc..1050959dcb 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1982,7 +1982,7 @@ static void av_estimate_timings(AVFormatContext *ic, int64_t old_offset) { int i; - AVStream *st; + AVStream av_unused *st; for(i = 0;i < ic->nb_streams; i++) { st = ic->streams[i]; av_dlog(ic, "%d: start_time: %0.3f duration: %0.3f\n", i, |