# HG changeset patch # User michael # Date 1109263143 0 # Node ID d3885f927bc74b77d4274166d9b96cf2a22f4c4a # Parent 047f7bad4cbbcaac7559db8e305dbf0071b0d852 -strict -1 comment fix diff -r 047f7bad4cbb -r d3885f927bc7 ffv1.c --- a/ffv1.c Thu Feb 24 15:18:02 2005 +0000 +++ b/ffv1.c Thu Feb 24 16:39:03 2005 +0000 @@ -552,7 +552,7 @@ 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; } diff -r 047f7bad4cbb -r d3885f927bc7 huffyuv.c --- a/huffyuv.c Thu Feb 24 15:18:02 2005 +0000 +++ b/huffyuv.c Thu Feb 24 16:39:03 2005 +0000 @@ -542,7 +542,7 @@ 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; } diff -r 047f7bad4cbb -r d3885f927bc7 snow.c --- a/snow.c Thu Feb 24 15:18:02 2005 +0000 +++ b/snow.c Thu Feb 24 16:39:03 2005 +0000 @@ -2628,7 +2628,7 @@ 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; }