Re: [libav-devel] [FFmpeg-devel] [PATCH] aac_latm_dec: use aac context and aac m4ac

2011-04-04 Thread Alex Converse
On Mon, Apr 4, 2011 at 5:56 PM, Alex Converse wrote: > On Mon, Mar 7, 2011 at 8:55 AM, Ronald S. Bultje wrote: >> Hi, >> >> On Tue, Mar 1, 2011 at 8:12 AM, Luca Barbato wrote: >>> On 03/01/2011 01:46 PM, Thadeu Lima de Souza Cascardo wrote: When decoding latm config, use the corresponding a

Re: [libav-devel] [FFmpeg-devel] [PATCH] aac_latm_dec: use aac context and aac m4ac

2011-04-04 Thread Alex Converse
On Mon, Mar 7, 2011 at 8:55 AM, Ronald S. Bultje wrote: > Hi, > > On Tue, Mar 1, 2011 at 8:12 AM, Luca Barbato wrote: >> On 03/01/2011 01:46 PM, Thadeu Lima de Souza Cascardo wrote: >>> When decoding latm config, use the corresponding aac context and its >>> m4ac instead of using NULL and a local

Re: [libav-devel] [PATCH] ac3enc: neon optimised extract_exponents

2011-04-04 Thread Luca Barbato
On 04/04/2011 08:13 PM, Mans Rullgard wrote: > --- > libavcodec/arm/ac3dsp_init_arm.c |2 ++ > libavcodec/arm/ac3dsp_neon.S | 20 > 2 files changed, 22 insertions(+), 0 deletions(-) Looks ok. lu -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero __

Re: [libav-devel] [PATCH] Add silence support for AV_SAMPLE_FMT_U8.

2011-04-04 Thread Benjamin Larsson
Ok MvH Benjamin Larsson ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH] Add silence support for AV_SAMPLE_FMT_U8.

2011-04-04 Thread Alex Converse
On Mon, Apr 4, 2011 at 4:07 PM, Alex Converse wrote: > > --- >  ffmpeg.c |   10 +- >  1 files changed, 9 insertions(+), 1 deletions(-) > For those looking for further context: this came from the audio padding discussion. ___ libav-devel mailing

[libav-devel] [PATCH] Add silence support for AV_SAMPLE_FMT_U8.

2011-04-04 Thread Alex Converse
--- ffmpeg.c | 10 +- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 5e50db3..1f7b887 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1390,6 +1390,14 @@ static void print_report(AVFormatContext **output_files, } } +static void generate_silence(u

[libav-devel] [PATCH] oggdec: fix streaming with continuous audio streams (issue2337)

2011-04-04 Thread Clément Bœsch
Hi, Here is the patch for the issue discussed here: http://lists.libav.org/pipermail/libav-devel/2011-April/001220.html. I had to change the ogg_stream struct to add a field; I thought about using another unset field to check if a packet is an initial one or not, but I wasn't able to find one. A

Re: [libav-devel] [PATCH 4/9] avio: make URL_PROTOCOL_FLAG_NESTED_SCHEME internal

2011-04-04 Thread Ronald S. Bultje
Hi, On Mon, Apr 4, 2011 at 2:43 PM, Anton Khirnov wrote: > --- >  libavformat/avio.h |    2 +- >  libavformat/url.h  |    5 + >  2 files changed, 6 insertions(+), 1 deletions(-) This looks OK. Ronald ___ libav-devel mailing list libav-devel@libav.

Re: [libav-devel] [PATCH 7/9] avio: deprecate av_protocol_next().

2011-04-04 Thread Anton Khirnov
On Mon, Apr 04, 2011 at 11:21:51PM +0200, Stefano Sabatini wrote: > On date Monday 2011-04-04 20:43:50 +0200, Anton Khirnov wrote: > > --- > > cmdutils.c | 20 ++-- > > libavformat/avio.c |2 ++ > > libavformat/avio.h |4 +++- > > 3 files changed, 11 insertions(+)

Re: [libav-devel] [PATCH 7/9] avio: deprecate av_protocol_next().

2011-04-04 Thread Stefano Sabatini
On date Monday 2011-04-04 20:43:50 +0200, Anton Khirnov wrote: > --- > cmdutils.c | 20 ++-- > libavformat/avio.c |2 ++ > libavformat/avio.h |4 +++- > 3 files changed, 11 insertions(+), 15 deletions(-) > > diff --git a/cmdutils.c b/cmdutils.c > index 6901f56..b

Re: [libav-devel] [PATCH 2/9] avio: deprecate av_url_read_pause

2011-04-04 Thread Ronald S. Bultje
Hi, On Mon, Apr 4, 2011 at 2:43 PM, Anton Khirnov wrote: > It's not used anywhere internally. > --- >  libavformat/avio.c |    2 ++ >  libavformat/avio.h |    8 +--- >  2 files changed, 3 insertions(+), 7 deletions(-) No reason to save the docs for ffio_read_pause() or so? OK otherwise. Ro

Re: [libav-devel] [PATCH 3/9] avio: deprecate av_url_read_seek

2011-04-04 Thread Ronald S. Bultje
Hi, On Mon, Apr 4, 2011 at 2:43 PM, Anton Khirnov wrote: > It's not used anywhere internally. > > Salvage its documentation for ffio_read_seek. > --- >  libavformat/avio.c          |    2 +- >  libavformat/avio.h          |   21 ++--- >  libavformat/avio_internal.h |   17

Re: [libav-devel] [PATCH] configure: tell user if libva is enabled like the rest of external libs.

2011-04-04 Thread Luca Barbato
On 04/04/2011 10:49 PM, Konstantin Pavlov wrote: > --- > configure |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/configure b/configure > index e86f193..92a809f 100755 > --- a/configure > +++ b/configure > @@ -3131,6 +3131,7 @@ echo "librtmp enabled ${libr

[libav-devel] [PATCH] configure: tell user if libva is enabled like the rest of external libs.

2011-04-04 Thread Konstantin Pavlov
--- configure |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure b/configure index e86f193..92a809f 100755 --- a/configure +++ b/configure @@ -3131,6 +3131,7 @@ echo "librtmp enabled ${librtmp-no}" echo "libschroedinger enabled ${libschroedinger-no}" e

Re: [libav-devel] [PATCH] matroskaenc: don't write an empty Cues element.

2011-04-04 Thread Måns Rullgård
Anton Khirnov writes: > --- > libavformat/matroskaenc.c |9 ++--- > 1 files changed, 6 insertions(+), 3 deletions(-) > > diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c > index e28ac42..c0427f9 100644 > --- a/libavformat/matroskaenc.c > +++ b/libavformat/matroskaenc.c

[libav-devel] [PATCH] matroskaenc: don't write an empty Cues element.

2011-04-04 Thread Anton Khirnov
--- libavformat/matroskaenc.c |9 ++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index e28ac42..c0427f9 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -1140,10 +1140,13 @@ static int mkv_

Re: [libav-devel] [PATCH] doc: clarify configure features

2011-04-04 Thread Måns Rullgård
Janne Grunau writes: > On Mon, Apr 04, 2011 at 05:46:11PM +0200, Luca Barbato wrote: >> This way people will not get surprises regarding the current configure >> behaviour and contributors will have a guideline on what is expected. >> --- >> INSTALL |7 +++ >> 1 files changed, 7 insertio

[libav-devel] [PATCH 8/9] avio: make av_register_protocol2 internal.

2011-04-04 Thread Anton Khirnov
--- libavformat/allformats.c |3 ++- libavformat/avio.c | 10 +++--- libavformat/avio.h |4 +++- libavformat/url.h|7 +++ 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/libavformat/allformats.c b/libavformat/allformats.c index e80d4b0..939

[libav-devel] [PATCH 9/9] avio: move extern url_interrupt_cb declaration from avio.h to url.h

2011-04-04 Thread Anton Khirnov
--- libavformat/applehttp.c |1 + libavformat/avio.h |2 +- libavformat/tcp.c |1 + libavformat/udp.c |1 + libavformat/url.h |2 ++ libavformat/utils.c |1 + 6 files changed, 7 insertions(+), 1 deletions(-) diff --git a/libavformat/applehttp.c b

[libav-devel] [PATCH 7/9] avio: deprecate av_protocol_next().

2011-04-04 Thread Anton Khirnov
--- cmdutils.c | 20 ++-- libavformat/avio.c |2 ++ libavformat/avio.h |4 +++- 3 files changed, 11 insertions(+), 15 deletions(-) diff --git a/cmdutils.c b/cmdutils.c index 6901f56..bae0514 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -653,20 +653,12 @@ void show

[libav-devel] [PATCH 6/9] avio: avio_ prefix for url_set_interrupt_cb.

2011-04-04 Thread Anton Khirnov
--- ffmpeg.c |4 ++-- ffplay.c |4 ++-- libavformat/avio.c |6 +- libavformat/avio.h |3 ++- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 5e50db3..fced345 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2443,7 +2443,7 @@

[libav-devel] [PATCH 5/9] avio: AVIO_ prefixes for URL_ open flags.

2011-04-04 Thread Anton Khirnov
--- libavformat/applehttp.c |4 ++-- libavformat/applehttpproto.c |6 +++--- libavformat/avio.c | 12 ++-- libavformat/avio.h | 29 - libavformat/aviobuf.c| 14 +++--- libavformat/img2.c |4 ++-

[libav-devel] [PATCH 3/9] avio: deprecate av_url_read_seek

2011-04-04 Thread Anton Khirnov
It's not used anywhere internally. Salvage its documentation for ffio_read_seek. --- libavformat/avio.c |2 +- libavformat/avio.h | 21 ++--- libavformat/avio_internal.h | 17 + 3 files changed, 20 insertions(+), 20 deletions(-) diff --gi

[libav-devel] [PATCH 4/9] avio: make URL_PROTOCOL_FLAG_NESTED_SCHEME internal

2011-04-04 Thread Anton Khirnov
--- libavformat/avio.h |2 +- libavformat/url.h |5 + 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/libavformat/avio.h b/libavformat/avio.h index 82d43d4..409e3b8 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -136,10 +136,10 @@ void url_set_interrupt_cb(

[libav-devel] [PATCH 1/9] avio: add a function for iterating though protocol names.

2011-04-04 Thread Anton Khirnov
--- libavformat/avio.c |7 +++ libavformat/avio.h | 11 +++ 2 files changed, 18 insertions(+), 0 deletions(-) diff --git a/libavformat/avio.c b/libavformat/avio.c index 24cec8f..100a04a 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@ -57,6 +57,13 @@ URLProtocol *av_p

[libav-devel] [PATCH 2/9] avio: deprecate av_url_read_pause

2011-04-04 Thread Anton Khirnov
It's not used anywhere internally. --- libavformat/avio.c |2 ++ libavformat/avio.h |8 +--- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/libavformat/avio.c b/libavformat/avio.c index 100a04a..c41a874 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@ -395,12

Re: [libav-devel] [PATCH] doc: clarify configure features

2011-04-04 Thread Janne Grunau
On Mon, Apr 04, 2011 at 05:46:11PM +0200, Luca Barbato wrote: > This way people will not get surprises regarding the current configure > behaviour and contributors will have a guideline on what is expected. > --- > INSTALL |7 +++ > 1 files changed, 7 insertions(+), 0 deletions(-) > > dif

[libav-devel] [PATCH] ac3enc: neon optimised extract_exponents

2011-04-04 Thread Mans Rullgard
--- libavcodec/arm/ac3dsp_init_arm.c |2 ++ libavcodec/arm/ac3dsp_neon.S | 20 2 files changed, 22 insertions(+), 0 deletions(-) diff --git a/libavcodec/arm/ac3dsp_init_arm.c b/libavcodec/arm/ac3dsp_init_arm.c index 92e4a4f..fd78e1e 100644 --- a/libavcodec/arm/ac3ds

Re: [libav-devel] [PATCH] avio: add a function for iterating though protocol names.

2011-04-04 Thread Anton Khirnov
On Mon, Apr 04, 2011 at 03:06:48PM +, Ronald S. Bultje wrote: > Hi, > > On Mon, Apr 4, 2011 at 11:01 AM, Anton Khirnov wrote: > > Lesson learned: don't program while half-asleep. > > > > And now something that actually works :) > [..] > > +const char *avio_enum_protocols(void **opaque) > > +{

Re: [libav-devel] [PATCH] Avio cleanup II

2011-04-04 Thread Anton Khirnov
On Mon, Apr 04, 2011 at 05:50:34PM +0200, aviad rozenhek wrote: > On Mon, Apr 4, 2011 at 16:56, Anton Khirnov wrote: > > > On Mon, Apr 04, 2011 at 02:38:12PM +, Ronald S. Bultje wrote: > > > That said, I'm open to ideas how to expose the functionality you need > > (preferably) through the hig

Re: [libav-devel] [PATCH 02/10] Port drawtext filter by Hemanth from the libavfilter soc repo, with the following additions: * support to anti-aliased glyph rendering * support to UTF-8 text and Unico

2011-04-04 Thread Måns Rullgård
Anton Khirnov writes: > From: Stefano Sabatini > > Signed-off-by: Michael Niedermayer > --- > configure |6 + > doc/filters.texi | 112 > libavfilter/Makefile |1 + > libavfilter/allfilters.c |1 + > libavfilter/vf_drawtext.c | 650 > +

[libav-devel] [PATCH] Factor ff_network_wait_fd and use it on udp proto

2011-04-04 Thread Luca Barbato
Polling is common to the network protocols: udp, tcp and, once merged, sctp. --- libavformat/network.h | 13 +++ libavformat/tcp.c | 14 +-- libavformat/udp.c | 58 +--- 3 files changed, 36 insertions(+), 49 deletions(-) di

Re: [libav-devel] [PATCH 10/10] Reduce picture size for yadif. Signed-off-by: Michael Niedermayer

2011-04-04 Thread Alex Converse
On Tue, Mar 22, 2011 at 10:31 PM, Anton Khirnov wrote: > From: Michael Niedermayer > > --- >  libavfilter/vf_yadif.c |    4 ++-- >  1 files changed, 2 insertions(+), 2 deletions(-) > OK ___ libav-devel mailing list libav-devel@libav.org https://lists.l

Re: [libav-devel] [PATCH] ac3enc: move extract_exponents inner loop to ac3dsp

2011-04-04 Thread Justin Ruggles
On 04/04/2011 12:05 PM, Mans Rullgard wrote: > --- > libavcodec/ac3dsp.c | 23 +++ > libavcodec/ac3dsp.h |2 ++ > libavcodec/ac3enc.c | 21 +++-- > 3 files changed, 28 insertions(+), 18 deletions(-) patch looks good. -Justin _

Re: [libav-devel] [RFC/RFBench] AVX FFT

2011-04-04 Thread Vitor Sessak
On Mon, Apr 4, 2011 at 9:58 AM, Loren Merritt wrote: > On Mon, 4 Apr 2011, Vitor Sessak wrote: >> >> On 04/04/2011 03:44 AM, Loren Merritt wrote: >>> >>> On Fri, 1 Apr 2011, Vitor Sessak wrote: >>> + vextractf128 Z(0), m0, 0 + vextractf128 ZH(0), m1, 0 + vextractf128 Z(1), m0, 1 >>>

[libav-devel] [PATCH] ac3enc: move extract_exponents inner loop to ac3dsp

2011-04-04 Thread Mans Rullgard
--- libavcodec/ac3dsp.c | 23 +++ libavcodec/ac3dsp.h |2 ++ libavcodec/ac3enc.c | 21 +++-- 3 files changed, 28 insertions(+), 18 deletions(-) diff --git a/libavcodec/ac3dsp.c b/libavcodec/ac3dsp.c index cd4d30b..dccad3b 100644 --- a/libavcodec/ac3dsp.

Re: [libav-devel] [PATCH] Avio cleanup II

2011-04-04 Thread Anton Khirnov
All pushed. Even if some of those end up public, current names are still unacceptable. -- Anton Khirnov signature.asc Description: Digital signature ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-dev

Re: [libav-devel] [PATCH] Avio cleanup II

2011-04-04 Thread aviad rozenhek
On Mon, Apr 4, 2011 at 16:56, Anton Khirnov wrote: > On Mon, Apr 04, 2011 at 02:38:12PM +, Ronald S. Bultje wrote: > That said, I'm open to ideas how to expose the functionality you need > (preferably) through the high-level API or in the worst case through a > limited subset of the URLContex

[libav-devel] [PATCH] doc: clarify configure features

2011-04-04 Thread Luca Barbato
This way people will not get surprises regarding the current configure behaviour and contributors will have a guideline on what is expected. --- INSTALL |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/INSTALL b/INSTALL index 2ed04ef..ac5dc5d 100644 --- a/INSTALL +++

Re: [libav-devel] [PATCH] lavc: move some flac-specific options to its private context.

2011-04-04 Thread Justin Ruggles
On 04/04/2011 11:35 AM, Justin Ruggles wrote: > On 04/04/2011 11:30 AM, Ronald S. Bultje wrote: > >> Hi, >> >> On Mon, Apr 4, 2011 at 3:21 PM, Justin Ruggles >> wrote: >>> On 04/02/2011 01:19 PM, Anton Khirnov wrote: +#if FF_API_FLAC_GLOBAL_OPTS /** * Determines which

Re: [libav-devel] [PATCH] lavc: move some flac-specific options to its private context.

2011-04-04 Thread Justin Ruggles
On 04/04/2011 11:30 AM, Ronald S. Bultje wrote: > Hi, > > On Mon, Apr 4, 2011 at 3:21 PM, Justin Ruggles > wrote: >> On 04/02/2011 01:19 PM, Anton Khirnov wrote: >>> +#if FF_API_FLAC_GLOBAL_OPTS >>> /** >>> * Determines which LPC analysis algorithm to use. >>> * - encoding: Set

Re: [libav-devel] [PATCH] lavc: move some flac-specific options to its private context.

2011-04-04 Thread Ronald S. Bultje
Hi, On Mon, Apr 4, 2011 at 3:21 PM, Justin Ruggles wrote: > On 04/02/2011 01:19 PM, Anton Khirnov wrote: >> +#if FF_API_FLAC_GLOBAL_OPTS >>      /** >>       * Determines which LPC analysis algorithm to use. >>       * - encoding: Set by user >>       * - decoding: unused >>       */ >> -    enum

Re: [libav-devel] [PATCH] lavc: move some flac-specific options to its private context.

2011-04-04 Thread Justin Ruggles
On 04/02/2011 01:19 PM, Anton Khirnov wrote: > +#if FF_API_FLAC_GLOBAL_OPTS > /** > * Determines which LPC analysis algorithm to use. > * - encoding: Set by user > * - decoding: unused > */ > -enum AVLPCType lpc_type; > +attribute_deprecated enum AVLPCType lpc_

Re: [libav-devel] [PATCH] Avio cleanup II

2011-04-04 Thread Uoti Urpala
On Mon, 2011-04-04 at 16:56 +0200, Anton Khirnov wrote: > On Mon, Apr 04, 2011 at 02:38:12PM +, Ronald S. Bultje wrote: > > I believe URLContext needs a lot of work, and this is easier if it is > > private. In addition, I believe most users don't need either one API, > > having two is confusing

Re: [libav-devel] [PATCH] avio: add a function for iterating though protocol names.

2011-04-04 Thread Ronald S. Bultje
Hi, On Mon, Apr 4, 2011 at 11:01 AM, Anton Khirnov wrote: > Lesson learned: don't program while half-asleep. > > And now something that actually works :) [..] > +const char *avio_enum_protocols(void **opaque) > +{ > +URLProtocol **p = opaque; > +*p = av_protocol_next(*p); > +return *p

Re: [libav-devel] [PATCH 05/15] avio: make url_open() internal.

2011-04-04 Thread Ronald S. Bultje
Hi, On Thu, Mar 31, 2011 at 4:14 PM, Anton Khirnov wrote: > --- >  libavformat/applehttpproto.c |    3 ++- >  libavformat/avio.c           |   10 +++--- >  libavformat/avio.h           |   14 +- >  libavformat/aviobuf.c        |    3 ++- >  libavformat/concat.c         |    3 ++-

Re: [libav-devel] [PATCH] Avio cleanup II

2011-04-04 Thread Anton Khirnov
On Mon, Apr 04, 2011 at 02:38:12PM +, Ronald S. Bultje wrote: > Hi, > > On Mon, Apr 4, 2011 at 1:39 PM, aviad rozenhek wrote: > > On Mon, Apr 4, 2011 at 15:15, Luca Barbato wrote: > >> > >> On 04/04/2011 01:31 PM, aviad rozenhek wrote: > >> > the High level buffered API is often not good eno

Re: [libav-devel] [PATCH 2/2] Add version check with warning

2011-04-04 Thread Luca Barbato
On 04/04/2011 03:24 PM, Luca Barbato wrote: > VAAPI 0.32 is the minimum version required for the vc1 improvements > --- > configure |4 +++- > 1 files changed, 3 insertions(+), 1 deletions(-) Dropped. -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero ___

Re: [libav-devel] [PATCH] Avio cleanup II

2011-04-04 Thread Ronald S. Bultje
Hi, On Mon, Apr 4, 2011 at 1:39 PM, aviad rozenhek wrote: > On Mon, Apr 4, 2011 at 15:15, Luca Barbato wrote: >> >> On 04/04/2011 01:31 PM, aviad rozenhek wrote: >> > the High level buffered API is often not good enough, as in the case of >> > MPEG-TS over UDP where it loses packets. >> > additi

Re: [libav-devel] [PATCH 2/2] Add version check with warning

2011-04-04 Thread Måns Rullgård
Janne Grunau writes: > On Mon, Apr 04, 2011 at 02:33:47PM +0100, Måns Rullgård wrote: >> Luca Barbato writes: >> >> > VAAPI 0.32 is the minimum version required for the vc1 improvements >> > --- >> > configure |4 +++- >> > 1 files changed, 3 insertions(+), 1 deletions(-) >> > >> > diff --

Re: [libav-devel] [PATCH 1/2] Error out if vaapi is not found

2011-04-04 Thread Luca Barbato
On 04/04/2011 03:33 PM, Måns Rullgård wrote: > I'm not opposed to this, but I suspect it will make some users unhappy, > since vaapi was previously enabled automatically. Is there a way to use vaapi out of box from libav? e.g. ffplay could use it? If it is not wouldn't affect people too much. lu

Re: [libav-devel] [PATCH 2/2] Add version check with warning

2011-04-04 Thread Anton Khirnov
On Mon, Apr 04, 2011 at 03:24:20PM +0200, Luca Barbato wrote: > VAAPI 0.32 is the minimum version required for the vc1 improvements > --- > configure |4 +++- > 1 files changed, 3 insertions(+), 1 deletions(-) > > diff --git a/configure b/configure > index 7755f28..bf99a9b 100755 > --- a/conf

Re: [libav-devel] [PATCH 2/2] Add version check with warning

2011-04-04 Thread Janne Grunau
On Mon, Apr 04, 2011 at 02:33:47PM +0100, Måns Rullgård wrote: > Luca Barbato writes: > > > VAAPI 0.32 is the minimum version required for the vc1 improvements > > --- > > configure |4 +++- > > 1 files changed, 3 insertions(+), 1 deletions(-) > > > > diff --git a/configure b/configure > > i

[libav-devel] [PATCH] Make tcp proto able to listen

2011-04-04 Thread Luca Barbato
this way is possible to have simple micro-server act like ffmpeg -i file.nut -vcodec copy -acodec copy -f nut tcp://foo:1234?listen --- doc/protocols.texi | 17 + libavformat/tcp.c | 25 +++-- 2 files changed, 40 insertions(+), 2 deletions(-) diff --git a

Re: [libav-devel] [PATCH] Avio cleanup II

2011-04-04 Thread aviad rozenhek
On Mon, Apr 4, 2011 at 15:15, Luca Barbato wrote: > On 04/04/2011 01:31 PM, aviad rozenhek wrote: > > the High level buffered API is often not good enough, as in the case of > > MPEG-TS over UDP where it loses packets. > > additionally, the high-level API uses byte-stream semantics, while the > >

Re: [libav-devel] [PATCH 2/2] Add version check with warning

2011-04-04 Thread Måns Rullgård
Luca Barbato writes: > VAAPI 0.32 is the minimum version required for the vc1 improvements > --- > configure |4 +++- > 1 files changed, 3 insertions(+), 1 deletions(-) > > diff --git a/configure b/configure > index 7755f28..bf99a9b 100755 > --- a/configure > +++ b/configure > @@ -2827,7 +28

Re: [libav-devel] [PATCH 1/2] Error out if vaapi is not found

2011-04-04 Thread Måns Rullgård
Luca Barbato writes: > Make the behaviour consistent with the other external deps. > --- > configure |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/configure b/configure > index fab4f2b..7755f28 100755 > --- a/configure > +++ b/configure > @@ -2827,7 +2827,7 @@ fo

Re: [libav-devel] [PATCH 2/2] Add version check with warning

2011-04-04 Thread Luca Barbato
On 04/04/2011 03:24 PM, Luca Barbato wrote: > VAAPI 0.32 is the minimum version required for the vc1 improvements Doubly sent... -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero ___ libav-devel mailing list libav-devel@libav.org https://l

[libav-devel] [PATCH 2/2] Add version check with warning

2011-04-04 Thread Luca Barbato
VAAPI 0.32 is the minimum version required for the vc1 improvements --- configure |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 7755f28..bf99a9b 100755 --- a/configure +++ b/configure @@ -2827,7 +2827,9 @@ for thread in $THREADS_LIST; do d

[libav-devel] [PATCH 2/2] Add version check with warning

2011-04-04 Thread Luca Barbato
VAAPI 0.32 is the minimum version required for the vc1 improvements --- configure |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 7755f28..bf99a9b 100755 --- a/configure +++ b/configure @@ -2827,7 +2827,9 @@ for thread in $THREADS_LIST; do d

[libav-devel] [PATCH 1/2] Error out if vaapi is not found

2011-04-04 Thread Luca Barbato
Make the behaviour consistent with the other external deps. --- configure |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index fab4f2b..7755f28 100755 --- a/configure +++ b/configure @@ -2827,7 +2827,7 @@ for thread in $THREADS_LIST; do done che

Re: [libav-devel] [PATCH] Avio cleanup II

2011-04-04 Thread Luca Barbato
On 04/04/2011 01:31 PM, aviad rozenhek wrote: > the High level buffered API is often not good enough, as in the case of > MPEG-TS over UDP where it loses packets. > additionally, the high-level API uses byte-stream semantics, while the > lower-level API can offer datagram based semantics, > which a

Re: [libav-devel] [RFC/RFBench] AVX FFT

2011-04-04 Thread Loren Merritt
On Mon, 4 Apr 2011, Vitor Sessak wrote: On 04/04/2011 03:44 AM, Loren Merritt wrote: On Fri, 1 Apr 2011, Vitor Sessak wrote: + vextractf128 Z(0), m0, 0 + vextractf128 ZH(0), m1, 0 + vextractf128 Z(1), m0, 1 + vextractf128 ZH(1), m1, 1 + vextractf128 Z(2), m5, 0 + vextractf128 ZH(2), m3, 0 + ve

Re: [libav-devel] [PATCH 03/15] avio: make url_alloc internal.

2011-04-04 Thread Ronald S. Bultje
Hi, On Mon, Apr 4, 2011 at 11:23 AM, Martin Storsjö wrote: > Of these, url_open is the only one used normally, while > url_alloc+url_connect are called explicitly when setting private options. > url_open_protocol is deprecated now, and I don't see too much a need to > keep a public symbol for url

Re: [libav-devel] [PATCH] avio: make url_filesize() internal.

2011-04-04 Thread Ronald S. Bultje
Hi, 2011/4/4 Måns Rullgård : > Anton Khirnov writes: >> --- >>  libavformat/avio.c   |    6 +- >>  libavformat/avio.h   |    8 +--- >>  libavformat/concat.c |    2 +- >>  libavformat/url.h    |    7 +++ >>  4 files changed, 14 insertions(+), 9 deletions(-) > > Looks OK. +1. Ronald _

Re: [libav-devel] [PATCH 6/6] vaapi: allow build against older VA-API 0.31.

2011-04-04 Thread Måns Rullgård
Janne Grunau writes: > On Sun, Apr 03, 2011 at 10:06:15PM +0200, Reinhard Tartler wrote: >> From: Gwenole Beauchesne >> >> --- >> configure |3 +-- >> libavcodec/vaapi_vc1.c |2 ++ >> 2 files changed, 3 insertions(+), 2 deletions(-) >> >> diff --git a/configure b/configur

Re: [libav-devel] [RFC] Handle palette changes signalled by container

2011-04-04 Thread Måns Rullgård
Kostya writes: > On Sat, Apr 02, 2011 at 04:06:44AM -0700, Ronald S. Bultje wrote: >> Hi, >> >> On Sat, Apr 2, 2011 at 2:52 AM, Kostya wrote: >> > I think this can be resolved by passing new palette in AVPacket in some >> > way: >> > 0) do nothing and pretent that problem doesn't exist >> > 1a

Re: [libav-devel] [PATCH] Avio cleanup II

2011-04-04 Thread aviad rozenhek
On Thu, Mar 31, 2011 at 18:14, Anton Khirnov wrote: > Hi, > here comes the sequel to avio cleanup, this time dealing with the > low-level unbuffered (URLContext) API. > > The idea is to make it all private in a new header url.h, removing > some cruft along the way. The users are supposed to use t

Re: [libav-devel] [PATCH] avio: make url_filesize() internal.

2011-04-04 Thread Måns Rullgård
Anton Khirnov writes: > --- > libavformat/avio.c |6 +- > libavformat/avio.h |8 +--- > libavformat/concat.c |2 +- > libavformat/url.h|7 +++ > 4 files changed, 14 insertions(+), 9 deletions(-) Looks OK. -- Måns Rullgård m...@mansr.com

Re: [libav-devel] [PATCH 03/15] avio: make url_alloc internal.

2011-04-04 Thread Martin Storsjö
On Sun, 3 Apr 2011, Ronald S. Bultje wrote: > On Thu, Mar 31, 2011 at 9:14 AM, Anton Khirnov wrote: > > --- > >  libavformat/avio.c |    9 +++-- > >  libavformat/avio.h |   14 +- > >  libavformat/mmsh.c |    5 +++-- > >  libavformat/rtsp.c |    5 +++-- > >  libavformat/url.h  |  

Re: [libav-devel] [PATCH 5/6] vaapi: require version >= 0.32.0.

2011-04-04 Thread Måns Rullgård
Reinhard Tartler writes: > On Sun, Apr 03, 2011 at 22:18:54 (CEST), Måns Rullgård wrote: > >> Reinhard Tartler writes: >> >>> From: Gwenole Beauchesne >>> >>> --- >>> configure |8 +++- >>> 1 files changed, 7 insertions(+), 1 deletions(-) >>> >>> diff --git a/configure b/configure >>>

Re: [libav-devel] [PATCH] avio: add a function for iterating though protocol names.

2011-04-04 Thread Anton Khirnov
Lesson learned: don't program while half-asleep. And now something that actually works :) -- Anton Khirnov From debd62be08d0140832a849490e74b6273c850391 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 4 Apr 2011 08:18:54 +0200 Subject: [PATCH] avio: add a function for iterating though

Re: [libav-devel] [RFC/RFBench] AVX FFT

2011-04-04 Thread Vitor Sessak
On 04/04/2011 03:44 AM, Loren Merritt wrote: On Fri, 1 Apr 2011, Vitor Sessak wrote: + vextractf128 Z(0), m0, 0 + vextractf128 ZH(0), m1, 0 + vextractf128 Z(1), m0, 1 + vextractf128 ZH(1), m1, 1 + vextractf128 Z(2), m5, 0 + vextractf128 ZH(2), m3, 0 + vextractf128 Z(3), m5, 1 + vextractf128 ZH(

Re: [libav-devel] [PATCH 0/3] applehttp demuxer rewrite

2011-04-04 Thread Martin Storsjö
On Thu, 31 Mar 2011, Luca Barbato wrote: > All in all, patch ok, we need to keep the protocol since it still fixes > some issues though. Pushed with the changes Diego suggested. // Martin ___ libav-devel mailing list libav-devel@libav.org https://lists

Re: [libav-devel] [PATCH 2/3] applehttp: Restructure the demuxer to use a custom AVIOContext

2011-04-04 Thread Martin Storsjö
On Fri, 1 Apr 2011, Diego Biurrun wrote: > On Thu, Mar 31, 2011 at 11:19:35PM +0300, Martin Storsjö wrote: > > This avoids issues where EOF at the end of the segment is given > > the variant demuxer. Now the demuxers only see one single data > > stream (as when using the applehttp protocol handler

Re: [libav-devel] [PATCH] Error out if vaapi is not found

2011-04-04 Thread Luca Barbato
On 04/04/2011 07:59 AM, Reinhard Tartler wrote: > We shouldn't require 0.32, bug make use of it if it is available. The > necessary code has just been posted to this list. So I'd change it to a warning instead of a die. lu -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero __

Re: [libav-devel] [PATCH] Error out if vaapi is not found

2011-04-04 Thread Luca Barbato
On 04/04/2011 12:27 AM, Måns Rullgård wrote: > I'm talking about this very patch. Current git master only checks for > the library existence. Since when do we require 0.32? It is still > marked unstable in Gentoo, and other distributions are usually slower. I started this patch as the alternati