Re: [libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-08 Thread Kostya
On Fri, Apr 08, 2011 at 01:44:09PM +0200, Anton Khirnov wrote: > On Thu, Apr 07, 2011 at 10:28:25AM +0200, Kostya wrote: > > From bb18bdff543fd8c5d3e3c89350520be7932594b9 Mon Sep 17 00:00:00 2001 > > From: Kostya Shishkov > > Date: Thu, 7 Apr 2011 09:45:47 +0200 > > Subject: [PATCH 1/2] introduce

Re: [libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-08 Thread Kostya
On Fri, Apr 08, 2011 at 01:29:10PM +0200, Diego Biurrun wrote: > On Thu, Apr 07, 2011 at 10:28:25AM +0200, Kostya wrote: > > > > --- a/libavcodec/avcodec.h > > +++ b/libavcodec/avcodec.h > > @@ -1089,6 +1097,9 @@ typedef struct AVPacket { > > > > +#define AV_PKT_DATA_NONE 0 ///< no packet side i

Re: [libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-08 Thread Anton Khirnov
On Thu, Apr 07, 2011 at 10:28:25AM +0200, Kostya wrote: > From bb18bdff543fd8c5d3e3c89350520be7932594b9 Mon Sep 17 00:00:00 2001 > From: Kostya Shishkov > Date: Thu, 7 Apr 2011 09:45:47 +0200 > Subject: [PATCH 1/2] introduce side information in AVPacket > > --- > libavcodec/avcodec.h | 21 +++

Re: [libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-08 Thread Diego Biurrun
On Thu, Apr 07, 2011 at 10:28:25AM +0200, Kostya wrote: > > --- a/libavcodec/avcodec.h > +++ b/libavcodec/avcodec.h > @@ -1089,6 +1097,9 @@ typedef struct AVPacket { > > +#define AV_PKT_DATA_NONE 0 ///< no packet side information > +#define AV_PKT_DATA_PAL 1 ///< packet side information contain

Re: [libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-07 Thread Diego Biurrun
On Thu, Apr 07, 2011 at 10:28:25AM +0200, Kostya wrote: > > --- a/libavcodec/avcodec.h > +++ b/libavcodec/avcodec.h > @@ -1054,6 +1054,14 @@ typedef struct AVPacket { > int size; > +/** > + * Additional packet data that may be provided by container. If present by the container Die

Re: [libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-07 Thread Luca Barbato
On 04/07/2011 10:40 AM, Kostya wrote: > Nothing (except for mail size limit in mailer) prevents you from sending such > rename patch. Will do soon =) lu -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero ___ libav-devel mailing list libav-d

Re: [libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-07 Thread Kostya
On Thu, Apr 07, 2011 at 09:53:11AM +0200, Luca Barbato wrote: > On 04/07/2011 06:54 AM, Janne Grunau wrote: > > On Wed, Apr 06, 2011 at 10:26:08PM +0200, Kostya Shishkov wrote: > >> This adds side information to AVPacket > >> > >> --- > >> libavcodec/avcodec.h | 21 + > >> l

Re: [libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-07 Thread Kostya
On Wed, Apr 06, 2011 at 06:33:46PM -0400, Ronald S. Bultje wrote: > Hi, > > On Wed, Apr 6, 2011 at 4:26 PM, Kostya Shishkov > wrote: > > This adds side information to AVPacket > > > > --- > >  libavcodec/avcodec.h  |   21 + > >  libavcodec/avpacket.c |   39 +++

Re: [libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-07 Thread Luca Barbato
On 04/07/2011 06:54 AM, Janne Grunau wrote: > On Wed, Apr 06, 2011 at 10:26:08PM +0200, Kostya Shishkov wrote: >> This adds side information to AVPacket >> >> --- >> libavcodec/avcodec.h | 21 + >> libavcodec/avpacket.c | 39 +++ >> liba

Re: [libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-07 Thread Kostya
On Thu, Apr 07, 2011 at 06:54:29AM +0200, Janne Grunau wrote: > On Wed, Apr 06, 2011 at 10:26:08PM +0200, Kostya Shishkov wrote: > > This adds side information to AVPacket > > > > --- > > libavcodec/avcodec.h | 21 + > > libavcodec/avpacket.c | 39

Re: [libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-06 Thread Alexander Strange
On Apr 6, 2011, at 6:33 PM, Ronald S. Bultje wrote: > Hi, > > On Wed, Apr 6, 2011 at 4:26 PM, Kostya Shishkov > wrote: >> This adds side information to AVPacket >> >> --- >> libavcodec/avcodec.h | 21 + >> libavcodec/avpacket.c | 39 ++

Re: [libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-06 Thread Janne Grunau
On Wed, Apr 06, 2011 at 10:26:08PM +0200, Kostya Shishkov wrote: > This adds side information to AVPacket > > --- > libavcodec/avcodec.h | 21 + > libavcodec/avpacket.c | 39 +++ > libavcodec/version.h |2 +- > 3 files changed, 61

Re: [libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-06 Thread Ronald S. Bultje
Hi, On Wed, Apr 6, 2011 at 4:26 PM, Kostya Shishkov wrote: > This adds side information to AVPacket > > --- >  libavcodec/avcodec.h  |   21 + >  libavcodec/avpacket.c |   39 +++ >  libavcodec/version.h  |    2 +- >  3 files changed, 61 inser

[libav-devel] [PATCH 1/3] introduce side information in AVPacket

2011-04-06 Thread Kostya Shishkov
This adds side information to AVPacket --- libavcodec/avcodec.h | 21 + libavcodec/avpacket.c | 39 +++ libavcodec/version.h |2 +- 3 files changed, 61 insertions(+), 1 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/a