# HG changeset patch # User michael # Date 1090973343 0 # Node ID 44c973bfec0fad165bcb9cb1cf5da011ffe36cf9 # Parent 8aff375a986b0a0fc9138141bc91cb2b8b364b77 dont segfault without -strict -1 diff -r 8aff375a986b -r 44c973bfec0f snow.c --- a/snow.c Tue Jul 27 17:38:53 2004 +0000 +++ b/snow.c Wed Jul 28 00:09:03 2004 +0000 @@ -2149,6 +2149,12 @@ int i; int level, orientation, plane_index; + if(avctx->strict_std_compliance >= 0){ + av_log(avctx, AV_LOG_ERROR, "this codec is under development, files encoded with it wont be decodeable with future versions!!!\n" + "use vstrict=-1 to use it anyway\n"); + return -1; + } + common_init(avctx); s->version=0; @@ -2217,12 +2223,6 @@ int used_count= 0; int log2_threshold, level, orientation, plane_index, i; - if(avctx->strict_std_compliance >= 0){ - av_log(avctx, AV_LOG_ERROR, "this codec is under development, files encoded with it wont be decodeable with future versions!!!\n" - "use vstrict=-1 to use it anyway\n"); - return -1; - } - ff_init_cabac_encoder(c, buf, buf_size); ff_init_cabac_states(c, ff_h264_lps_range, ff_h264_mps_state, ff_h264_lps_state, 64);