[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec huffyuv.c, 1.69, 1.70 ffv1.c, 1.36, 1.37
Michael Niedermayer CVS
michael
Fri Apr 14 12:37:43 CEST 2006
Update of /cvsroot/ffmpeg/ffmpeg/libavcodec
In directory mail:/var2/tmp/cvs-serv20149
Modified Files:
huffyuv.c ffv1.c
Log Message:
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
Index: huffyuv.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/huffyuv.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- huffyuv.c 30 Mar 2006 14:13:03 -0000 1.69
+++ huffyuv.c 14 Apr 2006 10:37:40 -0000 1.70
@@ -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;
Index: ffv1.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/ffv1.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- ffv1.c 9 Feb 2006 09:38:03 -0000 1.36
+++ ffv1.c 14 Apr 2006 10:37:40 -0000 1.37
@@ -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;
More information about the ffmpeg-cvslog
mailing list