Browse Source

avcodec/snow: Initialize spatial_decomposition_count to a valid value

Fixes undefined behavior
Fixes: signal_sigsegv_24169e6_3445_cov_3778346427_snow_chroma_bug.avi

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 10 years ago
parent
commit
dd369c9adb
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavcodec/snow.c

+ 1
- 0
libavcodec/snow.c View File

@@ -434,6 +434,7 @@ av_cold int ff_snow_common_init(AVCodecContext *avctx){

s->avctx= avctx;
s->max_ref_frames=1; //just make sure it's not an invalid value in case of no initial keyframe
s->spatial_decomposition_count = 1;

ff_me_cmp_init(&s->mecc, avctx);
ff_hpeldsp_init(&s->hdsp, avctx->flags);


Loading…
Cancel
Save