Browse Source

-strict -1 comment fix

Originally committed as revision 3976 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 21 years ago
parent
commit
53513831da
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      libavcodec/ffv1.c
  2. +1
    -1
      libavcodec/huffyuv.c
  3. +1
    -1
      libavcodec/snow.c

+ 1
- 1
libavcodec/ffv1.c View File

@@ -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;
}


+ 1
- 1
libavcodec/huffyuv.c View File

@@ -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;
}


+ 1
- 1
libavcodec/snow.c View File

@@ -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;
}


Loading…
Cancel
Save