[libav-devel] [PATCH] Add support for Opus in MPEG-TS

2014-10-17 Thread Kieran Kunhya
--- libavcodec/opus.c| 11 +--- libavcodec/opus.h|9 +++ libavcodec/opus_parser.c | 139 +- libavformat/mpegts.c | 54 +- 4 files changed, 191 insertions(+), 22 deletions(-) diff --git a/libavcodec/opus.c b/l

Re: [libav-devel] [PATCH] Add support for Opus in MPEG-TS

2014-07-28 Thread Diego Biurrun
On Mon, Jul 28, 2014 at 02:41:54PM +0100, Kieran Kunhya wrote: > --- a/libavcodec/opus_parser.c > +++ b/libavcodec/opus_parser.c > @@ -27,49 +27,161 @@ > > +static int opus_parse(AVCodecParserContext *ctx, AVCodecContext *avctx, > + const uint8_t **poutbuf, int *poutbuf_size

[libav-devel] [PATCH] Add support for Opus in MPEG-TS

2014-07-28 Thread Kieran Kunhya
--- libavcodec/opus.c| 11 +--- libavcodec/opus.h|9 +++ libavcodec/opus_parser.c | 138 +- libavcodec/opusdec.c |1 + libavformat/mpegts.c | 54 ++ 5 files changed, 192 insertions(+), 21 deletions(-)

Re: [libav-devel] [PATCH] Add support for Opus in MPEG-TS

2014-07-26 Thread Anton Khirnov
On Sat, 26 Jul 2014 16:54:05 +0200, Diego Biurrun wrote: > On Sat, Jul 26, 2014 at 03:06:14PM +0100, Kieran Kunhya wrote: > > --- a/libavcodec/opus.c > > +++ b/libavcodec/opus.c > > @@ -290,10 +290,6 @@ av_cold int ff_opus_parse_extradata(AVCodecContext > > *avctx, > >

Re: [libav-devel] [PATCH] Add support for Opus in MPEG-TS

2014-07-26 Thread Diego Biurrun
On Sat, Jul 26, 2014 at 03:06:14PM +0100, Kieran Kunhya wrote: > --- a/libavcodec/opus.c > +++ b/libavcodec/opus.c > @@ -290,10 +290,6 @@ av_cold int ff_opus_parse_extradata(AVCodecContext > *avctx, > OpusContext *s) > { > static const uint8_t default_cha

Re: [libav-devel] [PATCH] Add support for Opus in MPEG-TS

2014-07-26 Thread Anton Khirnov
On Sat, 26 Jul 2014 15:06:14 +0100, Kieran Kunhya wrote: > --- > libavcodec/opus.c| 41 +++ > libavcodec/opus.h| 11 + > libavcodec/opus_parser.c | 101 > -- > libavcodec/opusdec.c |4 +- > libavformat/

[libav-devel] [PATCH] Add support for Opus in MPEG-TS

2014-07-26 Thread Kieran Kunhya
--- libavcodec/opus.c| 41 +++ libavcodec/opus.h| 11 + libavcodec/opus_parser.c | 101 -- libavcodec/opusdec.c |4 +- libavformat/mpegts.c | 52 +++- 5 files changed, 186 inserti