diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-10-30 00:27:04 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-30 21:40:36 +0100 |
commit | 2719ba9ee35f2dd1243e67ae85889bcdbc4afe7b (patch) | |
tree | c34a1f097649fec09fb6d8b6b482c79cf2f52d53 /libavcodec | |
parent | d48e0aed3c17284f4db71f644bcb5a5646c1cbe8 (diff) | |
download | ffmpeg-2719ba9ee35f2dd1243e67ae85889bcdbc4afe7b.tar.gz |
lavc/utils: Make pix_fmt desc pointer const.
Fixes an "initialization discards qualifiers from pointer target type" warning.
(cherry picked from commit f05855414ed4cce97c06ba2a31f4987af47e6d4e)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 4931444583..ca6fe2d8e4 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -279,7 +279,7 @@ void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height, int i; int w_align = 1; int h_align = 1; - AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(s->pix_fmt); + AVPixFmtDescriptor const *desc = av_pix_fmt_desc_get(s->pix_fmt); if (desc) { w_align = 1 << desc->log2_chroma_w; |