diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-10-18 20:31:27 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-02-14 21:05:50 +0100 |
commit | dcb6d5b831b32ade33d578ba593b1f65cb77191d (patch) | |
tree | ca2cea1dd9a5a5ac53ad302a4b59ab2f7f557d78 | |
parent | ae51f9bd6c18b5ca1b944a7c90a07bc11a99ab1f (diff) | |
download | ffmpeg-dcb6d5b831b32ade33d578ba593b1f65cb77191d.tar.gz |
avformat/genh: Mark coef_splitted as av_unused
This avoid "libavformat/genh.c:43:14: warning: variable coef_splitted set but not used"
Fewer warnings makes it easier to see new and important warnings
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/genh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/genh.c b/libavformat/genh.c index d8723d51a3..cb1a02f277 100644 --- a/libavformat/genh.c +++ b/libavformat/genh.c @@ -42,7 +42,7 @@ static int genh_read_header(AVFormatContext *s) { unsigned start_offset, header_size, codec, coef_type, coef[2]; GENHDemuxContext *c = s->priv_data; - unsigned coef_splitted[2]; + av_unused unsigned coef_splitted[2]; int align, ch, ret; AVStream *st; |