diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2014-06-18 16:20:48 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-06-18 22:03:40 +0200 |
commit | 869fc416f7c78ed4e397e0208acd1545771c0502 (patch) | |
tree | 4d40b8abe117da69fe7c873b507fd43680763696 | |
parent | c385313d2590fd26e26bb9bdacddef78162ab490 (diff) | |
download | ffmpeg-869fc416f7c78ed4e397e0208acd1545771c0502.tar.gz |
hevc: Mark num_bins_in_se as unused
Only its size is actually used. Silence a clang warning.
-rw-r--r-- | libavcodec/hevc_cabac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc_cabac.c b/libavcodec/hevc_cabac.c index f2531d41bd..ff55b02cc0 100644 --- a/libavcodec/hevc_cabac.c +++ b/libavcodec/hevc_cabac.c @@ -32,7 +32,7 @@ /** * number of bin by SyntaxElement. */ -static const int8_t num_bins_in_se[] = { +av_unused static const int8_t num_bins_in_se[] = { 1, // sao_merge_flag 1, // sao_type_idx 0, // sao_eo_class |