Re: [libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-13 Thread Ronald S. Bultje
Hi, On Wed, Apr 13, 2011 at 11:37 AM, Kostya wrote: > On Wed, Apr 13, 2011 at 11:19:26AM -0400, Ronald S. Bultje wrote: >> Hi, >> >> On Wed, Apr 13, 2011 at 11:14 AM, Kostya wrote: >> > On Wed, Apr 13, 2011 at 11:03:26AM -0400, Ronald S. Bultje wrote: >> >> On Wed, Apr 13, 2011 at 10:33 AM, Kost

Re: [libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-13 Thread Kostya
On Wed, Apr 13, 2011 at 11:19:26AM -0400, Ronald S. Bultje wrote: > Hi, > > On Wed, Apr 13, 2011 at 11:14 AM, Kostya wrote: > > On Wed, Apr 13, 2011 at 11:03:26AM -0400, Ronald S. Bultje wrote: > >> On Wed, Apr 13, 2011 at 10:33 AM, Kostya wrote: > >> > Here are improved patches. > >> [..] > >>

Re: [libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-13 Thread Ronald S. Bultje
Hi, On Wed, Apr 13, 2011 at 11:14 AM, Kostya wrote: > On Wed, Apr 13, 2011 at 11:03:26AM -0400, Ronald S. Bultje wrote: >> On Wed, Apr 13, 2011 at 10:33 AM, Kostya wrote: >> > Here are improved patches. >> [..] >> > +     * Additional packet data that can be provided by the container. >> > +    

Re: [libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-13 Thread Kostya
On Wed, Apr 13, 2011 at 11:03:26AM -0400, Ronald S. Bultje wrote: > Hi, > > On Wed, Apr 13, 2011 at 10:33 AM, Kostya wrote: > > Here are improved patches. > [..] > > + * Additional packet data that can be provided by the container. > > + * Packet can contain several types of side informat

Re: [libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-13 Thread Ronald S. Bultje
Hi, On Wed, Apr 13, 2011 at 10:33 AM, Kostya wrote: > Here are improved patches. [..] > + * Additional packet data that can be provided by the container. > + * Packet can contain several types of side information. > + */ > +struct { > +uint8_t *data; > +int si

Re: [libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-13 Thread Kostya
On Tue, Apr 12, 2011 at 09:13:35PM -0400, Ronald S. Bultje wrote: > Hi, > > On Tue, Apr 12, 2011 at 3:44 AM, Luca Barbato wrote: > > On 04/09/2011 03:59 PM, Kostya Shishkov wrote: > >> This implementation should work fine with multiple side information types > >> present. > > > >> +    uint8_t **

Re: [libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-12 Thread Ronald S. Bultje
Hi, On Tue, Apr 12, 2011 at 3:44 AM, Luca Barbato wrote: > On 04/09/2011 03:59 PM, Kostya Shishkov wrote: >> This implementation should work fine with multiple side information types >> present. > >> +    uint8_t **side_data; >> +    int      *side_data_sizes; >> +    int      *side_data_types; >

Re: [libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-12 Thread Luca Barbato
On 04/09/2011 03:59 PM, Kostya Shishkov wrote: > This implementation should work fine with multiple side information types > present. > +uint8_t **side_data; > +int *side_data_sizes; > +int *side_data_types; > +int side_data_elems; Undecided if a AVSideData {

Re: [libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-09 Thread Kostya
On Sat, Apr 09, 2011 at 10:24:53PM +0800, can wu wrote: > On Sat, Apr 9, 2011 at 9:59 PM, Kostya Shishkov > wrote: > > > This implementation should work fine with multiple side information types > > present. > > > > --- > > libavcodec/avcodec.h | 41 + > > libavcodec/avpacket.c

Re: [libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-09 Thread can wu
On Sat, Apr 9, 2011 at 9:59 PM, Kostya Shishkov wrote: > This implementation should work fine with multiple side information types > present. > > --- > libavcodec/avcodec.h | 41 + > libavcodec/avpacket.c | 117 > > libavcodec/v

[libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-09 Thread Kostya Shishkov
This implementation should work fine with multiple side information types present. --- libavcodec/avcodec.h | 41 + libavcodec/avpacket.c | 117 libavcodec/version.h |2 +- 3 files changed, 149 insertions(+), 11 deletions(-