Re: [FFmpeg-devel] [PATCHv2 1/2] mpegtsenc: Add support for muxing Opus in MPEG-TS
On So, 2015-11-01 at 23:44 +0200, Sebastian Dröge wrote: > > +} else if (st->codec->extradata[18] == 1 && st- > >codec->channels <= 8 && > + st->codec->extradata_size >= 22 + st- > >codec->channels) { Off by one here, this should be 21 and not 22.
[FFmpeg-devel] [PATCHv2 1/2] mpegtsenc: Add support for muxing Opus in MPEG-TS
From: Sebastian Dröge Signed-off-by: Sebastian Dröge --- libavformat/mpegtsenc.c | 180 +++- 1 file changed, 179 insertions(+), 1 deletion(-) diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index 4d74252..0674064 100644 --- a/libavform