Browse Source

ffv1 and ffvhuff havnt changed since a long time and noone proposed any

changes within 1 month after my warning so they are officially no longer
experimental and we will gurantee decodeability of files encoded with
the currenzt ffv1/ffvhuff in the future

Originally committed as revision 5288 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 20 years ago
parent
commit
b548f2b91b
2 changed files with 0 additions and 9 deletions
  1. +0
    -6
      libavcodec/ffv1.c
  2. +0
    -3
      libavcodec/huffyuv.c

+ 0
- 6
libavcodec/ffv1.c View File

@@ -550,12 +550,6 @@ static int encode_init(AVCodecContext *avctx)
FFV1Context *s = avctx->priv_data;
int i;

if(avctx->strict_std_compliance >FF_COMPLIANCE_EXPERIMENTAL){
av_log(avctx, AV_LOG_ERROR, "this codec is under development, files encoded with it may not be decodeable with future versions!!!\n"
"use vstrict=-2 / -strict -2 to use it anyway\n");
return -1;
}

common_init(avctx);

s->version=0;


+ 0
- 3
libavcodec/huffyuv.c View File

@@ -541,9 +541,6 @@ 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>FF_COMPLIANCE_EXPERIMENTAL){
av_log(avctx, AV_LOG_ERROR, "This codec is under development; files encoded with it may not be decodable with future versions!!! Set vstrict=-2 / -strict -2 to use it anyway.\n");
return -1;
}

((uint8_t*)avctx->extradata)[0]= s->predictor;


Loading…
Cancel
Save