Commit a0d70ff9 authored by michael's avatar michael

dont segfault without -strict -1


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3356 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent fa15b37b
......@@ -2149,6 +2149,12 @@ static int encode_init(AVCodecContext *avctx)
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 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size,
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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment