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/mov.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/mov.c')
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 8ec0d19ed2..6c3c95caa2 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -428,7 +428,7 @@ static int mov_read_hdlr(MOVContext *c, AVIOContext *pb, MOVAtom atom) { AVStream *st; uint32_t type; - uint32_t ctype; + uint32_t av_unused ctype; if (c->fc->nb_streams < 1) // meta before first trak return 0; |