Mercurial > libavcodec.hg
changeset 3259:6baa0bfee0b8 libavcodec
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
author | michael |
---|---|
date | Fri, 14 Apr 2006 10:37:40 +0000 |
parents | 8d42d21e570c |
children | 525c73deb1d5 |
files | ffv1.c huffyuv.c |
diffstat | 2 files changed, 0 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/ffv1.c Mon Apr 10 12:12:26 2006 +0000 +++ b/ffv1.c Fri Apr 14 10:37:40 2006 +0000 @@ -550,12 +550,6 @@ 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;
--- a/huffyuv.c Mon Apr 10 12:12:26 2006 +0000 +++ b/huffyuv.c Fri Apr 14 10:37:40 2006 +0000 @@ -541,9 +541,6 @@ } 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;