aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
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
parent3eafe1d71c09ffa521e23d4a3b47b163a4f83a93 (diff)
downloadffmpeg-ae4b11df0d9edfdb9e3bb983f17487540d1ceabc.tar.gz
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')
-rw-r--r--libavcodec/snowenc.c6
-rw-r--r--libavcodec/version.h2
2 files changed, 1 insertions, 7 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){
diff --git a/libavcodec/version.h b/libavcodec/version.h
index 381e471ccc..80c71cf709 100644
--- a/libavcodec/version.h
+++ b/libavcodec/version.h
@@ -30,7 +30,7 @@
#define LIBAVCODEC_VERSION_MAJOR 55
#define LIBAVCODEC_VERSION_MINOR 52
-#define LIBAVCODEC_VERSION_MICRO 102
+#define LIBAVCODEC_VERSION_MICRO 103
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \