diff options
author | Michael Niedermayer <[email protected]> | 2014-10-29 14:15:29 +0100 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2014-12-21 04:40:34 +0100 |
commit | 961bbb98cf146553af858bd3a13a70751df23fa3 (patch) | |
tree | 34742a9ecb0627f85a6fecd962f09c537cb7857f | |
parent | e43872c3a93c584a768643cfb85fc981f3cd4c44 (diff) |
avcodec/utils: Align dimensions by at least their chroma sub-sampling factors.
Fixes: out of array accesses
Fixes: asan_heap-oob_112c6b3_13_012.avi
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
(cherry picked from commit df74811cd53e45fcbbd3b77a1c42416816687c5c)
Signed-off-by: Michael Niedermayer <[email protected]>
-rw-r--r-- | libavcodec/utils.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 4163349d61..75d785e2c1 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -183,6 +183,12 @@ 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); + + if (desc) { + w_align = 1 << desc->log2_chroma_w; + h_align = 1 << desc->log2_chroma_h; + } switch (s->pix_fmt) { case AV_PIX_FMT_YUV420P: @@ -276,8 +282,6 @@ void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height, } break; default: - w_align = 1; - h_align = 1; break; } |