On 19/12/13 00:07, Guillaume Martres wrote:
> From: Tudor Suciu <[email protected]>
> 
> ---
>  libavformat/matroskaenc.c | 10 +++++++---
>  1 file changed, 7 insertions(+), 3 deletions(-)
> 
> diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c
> index cc645a5..74c1925 100644
> --- a/libavformat/matroskaenc.c
> +++ b/libavformat/matroskaenc.c
> @@ -607,10 +607,14 @@ static int mkv_write_tracks(AVFormatContext *s)
>              }
>          }
>  
> -        if (mkv->mode == MODE_WEBM && !(codec->codec_id == AV_CODEC_ID_VP8 ||
> -                                        codec->codec_id == 
> AV_CODEC_ID_VORBIS)) {
> +        if (mkv->mode == MODE_WEBM &&
> +            !(codec->codec_id == AV_CODEC_ID_VP8 ||
> +              codec->codec_id == AV_CODEC_ID_VP9 ||
> +              codec->codec_id == AV_CODEC_ID_VORBIS ||
> +              (codec->codec_id == AV_CODEC_ID_OPUS &&
> +               codec->strict_std_compliance <= FF_COMPLIANCE_EXPERIMENTAL))) 
> {

Since when opus back to experimental?

Let me dig a patch adding compliance to muxing. I have it for my nut
experiments.

lu
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to