Commit be037aaf authored by michael's avatar michael

-strict -1 comment fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3976 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 04d2c4d5
......@@ -552,7 +552,7 @@ static int encode_init(AVCodecContext *avctx)
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");
"use vstrict=-1 / -strict -1 to use it anyway\n");
return -1;
}
......
......@@ -542,7 +542,7 @@ static int encode_init(AVCodecContext *avctx)
if(s->interlaced != ( s->height > 288 ))
av_log(avctx, AV_LOG_INFO, "using huffyuv 2.2.0 or newer interlacing flag\n");
}else if(avctx->strict_std_compliance>=0){
av_log(avctx, AV_LOG_ERROR, "This codec is under development; files encoded with it may not be decodeable with future versions!!! Set vstrict=-1 to use it anyway.\n");
av_log(avctx, AV_LOG_ERROR, "This codec is under development; files encoded with it may not be decodeable with future versions!!! Set vstrict=-1 / -strict -1 to use it anyway.\n");
return -1;
}
......
......@@ -2628,7 +2628,7 @@ static int encode_init(AVCodecContext *avctx)
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");
"use vstrict=-1 / -strict -1 to use it anyway\n");
return -1;
}
......
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