Re: [libav-devel] [PATCH 3/3] avcodec: error out on init if a codec with CODEC_CAP_EXPERIMENTAL is requested

2012-10-19 Thread Luca Barbato
On 10/19/2012 06:58 AM, Nathan Caldwell wrote: and strict_std_compliance is not FF_COMPLIANCE_EXPERIMENTAL. This moves the check from avconv to avcodec_open2(). I like it AVERROR_EXPERIMENTAL isn't defined though. lu ___ libav-devel mailing list

[libav-devel] [PATCH 3/3] avcodec: error out on init if a codec with CODEC_CAP_EXPERIMENTAL is requested

2012-10-18 Thread Nathan Caldwell
and strict_std_compliance is not FF_COMPLIANCE_EXPERIMENTAL. This moves the check from avconv to avcodec_open2(). --- avconv.c | 36 +--- libavcodec/utils.c |6 ++ 2 files changed, 23 insertions(+), 19 deletions(-) diff --git a/avconv.c