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

2011-04-18 Thread Ronald S. Bultje
Hi, On Mon, Apr 18, 2011 at 1:04 AM, Reinhard Tartler siret...@tauware.de wrote: On Fri, Apr 15, 2011 at 18:05:48 (CEST), Luca Barbato wrote: diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 109d2a4..df4e617 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@

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

2011-04-18 Thread Martin Storsjö
On Mon, 18 Apr 2011, Ronald S. Bultje wrote: Hi, On Mon, Apr 18, 2011 at 1:04 AM, Reinhard Tartler siret...@tauware.de wrote: On Fri, Apr 15, 2011 at 18:05:48 (CEST), Luca Barbato wrote: diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 109d2a4..df4e617 100644 ---

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

2011-04-18 Thread Reinhard Tartler
On Mon, Apr 18, 2011 at 12:53:50 (CEST), Martin Storsjö wrote: On Mon, 18 Apr 2011, Ronald S. Bultje wrote: Hi, On Mon, Apr 18, 2011 at 1:04 AM, Reinhard Tartler siret...@tauware.de wrote: On Fri, Apr 15, 2011 at 18:05:48 (CEST), Luca Barbato wrote: diff --git a/libavcodec/avcodec.h

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

2011-04-18 Thread Luca Barbato
On 04/18/2011 02:26 PM, Reinhard Tartler wrote: In this case, I seek for approval of the proposed patch to delay the sidechannel introduction via #ifdeffery. The patch should be extended but I agree with the idea. lu -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero

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

2011-04-15 Thread Ronald S. Bultje
Hi, On Fri, Apr 15, 2011 at 12:05 PM, Luca Barbato lu_z...@gentoo.org wrote: +#define DUP_DATA(dst, size, padding) \ +    do { \ +        void *data; \ +        if (padding) { \ +            if ((unsigned)(size) (unsigned)(size) + FF_INPUT_BUFFER_PADDING_SIZE) \ +                return

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

2011-04-15 Thread Ronald S. Bultje
Hi, On Fri, Apr 15, 2011 at 12:07 PM, Ronald S. Bultje rsbul...@gmail.com wrote: On Fri, Apr 15, 2011 at 12:05 PM, Luca Barbato lu_z...@gentoo.org wrote: +#define DUP_DATA(dst, size, padding) \ +    do { \ +        void *data; \ +        if (padding) { \ +            if ((unsigned)(size)

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 contains new

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 kostya.shish...@gmail.com Date: Thu, 7 Apr 2011 09:45:47 +0200 Subject: [PATCH 1/2] introduce side information in AVPacket ---

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 kostya.shish...@gmail.com Date: Thu, 7 Apr 2011 09:45:47 +0200 Subject:

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-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 +++

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 +

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

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 Diego

[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

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 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 kostya.shish...@gmail.com wrote: This adds side information to AVPacket --- libavcodec/avcodec.h | 21 + libavcodec/avpacket.c | 39