Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-05-09 00:15:42 +0400
committerMichael Niedermayer <michaelni@gmx.at>2005-05-09 00:15:42 +0400
commit9cd81798187567c1495c595443923951c0c06926 (patch)
treeab1bed1b8a627f75e4aa82e41039293a2c4f51a2 /libavcodec/ffv1.c
parentc998bdd9a03d3efa42bfba447579330d51d033fa (diff)
#defines for strict_std_compliance and split between inofficial extensions and non standarized things
Originally committed as revision 4205 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ffv1.c')
-rw-r--r--libavcodec/ffv1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c
index 107eab1bcc..57ed9adb52 100644
--- a/libavcodec/ffv1.c
+++ b/libavcodec/ffv1.c
@@ -550,9 +550,9 @@ static int encode_init(AVCodecContext *avctx)
FFV1Context *s = avctx->priv_data;
int i;
- if(avctx->strict_std_compliance >= 0){
+ 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=-1 / -strict -1 to use it anyway\n");
+ "use vstrict=-2 / -strict -2 to use it anyway\n");
return -1;
}