summaryrefslogtreecommitdiff
path: root/libavcodec/snowenc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-03-13 18:16:21 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-03-22 16:52:51 +0100
commitae4b11df0d9edfdb9e3bb983f17487540d1ceabc (patch)
tree1953c0da2ac3d5c149dec91377297cefd8203125 /libavcodec/snowenc.c
parent3eafe1d71c09ffa521e23d4a3b47b163a4f83a93 (diff)
avcodec/snowenc: make snow non experimental
After this commit the created bitstream will be supported by future decoders. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/snowenc.c')
-rw-r--r--libavcodec/snowenc.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/snowenc.c b/libavcodec/snowenc.c
index 219576481f..ace2648639 100644
--- a/libavcodec/snowenc.c
+++ b/libavcodec/snowenc.c
@@ -38,12 +38,6 @@ static av_cold int encode_init(AVCodecContext *avctx)
SnowContext *s = avctx->priv_data;
int plane_index, ret;
- 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!!!\n"
- "Use vstrict=-2 / -strict -2 to use it anyway.\n");
- return -1;
- }
-
if(avctx->prediction_method == DWT_97
&& (avctx->flags & CODEC_FLAG_QSCALE)
&& avctx->global_quality == 0){