Re: [libav-devel] [PATCH 3/3] swscale: use SwsContext for av_log when available

2011-04-25 Thread Ronald S. Bultje
Hi, On Mon, Apr 25, 2011 at 10:46 PM, Diego Biurrun wrote: > On Tue, Apr 26, 2011 at 12:27:48AM +0200, Janne Grunau wrote: >> --- >>  libswscale/utils.c |   10 +- >>  1 files changed, 5 insertions(+), 5 deletions(-) > > OK > >> --- a/libswscale/utils.c >> +++ b/libswscale/utils.c >> @@ -8

Re: [libav-devel] [PATCH 1/3] swscale: runtime cpu detection

2011-04-25 Thread Ronald S. Bultje
Hi, On Mon, Apr 25, 2011 at 11:18 PM, Janne Grunau wrote: [..] Patch still OK from my point of view. Ronald ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH] aac: add math.h needed for log2f()

2011-04-25 Thread Ronald S. Bultje
Hi, On Tue, Apr 26, 2011 at 6:15 AM, Anton Khirnov wrote: > From: Michael Niedermayer > > Signed-off-by: Michael Niedermayer > Signed-off-by: Anton Khirnov > --- >  libavcodec/aaccoder.c |    1 + >  libavcodec/aacsbr.c   |    1 + >  2 files changed, 2 insertions(+), 0 deletions(-) > > diff --g

[libav-devel] [PATCH] aac: add math.h needed for log2f()

2011-04-25 Thread Anton Khirnov
From: Michael Niedermayer Signed-off-by: Michael Niedermayer Signed-off-by: Anton Khirnov --- libavcodec/aaccoder.c |1 + libavcodec/aacsbr.c |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/libavcodec/aaccoder.c b/libavcodec/aaccoder.c index e7f8cb0..676f532 1006

Re: [libav-devel] [PATCH 2/2] Provide isnan replacement for systems that do not have it.

2011-04-25 Thread Ronald S. Bultje
Hi, On Mon, Apr 11, 2011 at 8:57 AM, Diego Biurrun wrote: > On Mon, Apr 11, 2011 at 09:40:32AM +0400, Konstantin Pavlov wrote: >> >> --- a/libavutil/libm.h >> +++ b/libavutil/libm.h >> @@ -38,6 +38,14 @@ >> >> +#if !HAVE_ISNAN >> +#undef isnan >> +#define isnan(x) \ >> +   (sizeof (x) == sizeof (

Re: [libav-devel] [PATCH 1/2] matroskaenc: fix leak of empty mkv->cues after 9181976

2011-04-25 Thread Ronald S. Bultje
Hi, On Mon, Apr 25, 2011 at 7:59 PM, Janne Grunau wrote: > --- >  libavformat/matroskaenc.c |    2 +- >  1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c > index c0427f9..89de55c 100644 > --- a/libavformat/matroskaenc.c > +++

Re: [libav-devel] [PATCH 4/5] rawvideo codec: support PIX_FMT_BGR48LE and PIX_FMT_BGR48BE

2011-04-25 Thread Ronald S. Bultje
Hi, On Tue, Apr 26, 2011 at 5:09 AM, Anton Khirnov wrote: > From: Peter Ross > > Signed-off-by: Anton Khirnov > --- >  libavcodec/raw.c |    2 ++ >  1 files changed, 2 insertions(+), 0 deletions(-) OK. Ronald ___ libav-devel mailing list libav-devel

Re: [libav-devel] [PATCH 5/5] nut format: support PIX_FMT_BGR48LE and PIX_FMT_BGR48BE

2011-04-25 Thread Ronald S. Bultje
Hi, On Tue, Apr 26, 2011 at 5:09 AM, Anton Khirnov wrote: > From: Peter Ross > > Signed-off-by: Anton Khirnov > --- >  libavformat/nut.c |    2 ++ >  1 files changed, 2 insertions(+), 0 deletions(-) OK. Ronald ___ libav-devel mailing list libav-deve

Re: [libav-devel] [PATCH 1/5] libswcale: PIX_FMT_BGR48LE and PIX_FMT_BGR48BE scaler implementation

2011-04-25 Thread Ronald S. Bultje
Hi, On Tue, Apr 26, 2011 at 5:09 AM, Anton Khirnov wrote: > From: Peter Ross > > Signed-off-by: Anton Khirnov > --- >  libswscale/swscale.c             |   57 > ++ >  libswscale/swscale.h             |    2 +- >  libswscale/swscale_internal.h    |   10 +

Re: [libav-devel] [PATCH 2/5] crop: make the filter accept PIX_FMT_BGR48LE and PIX_FMT_BGR48BE pixel formats

2011-04-25 Thread Ronald S. Bultje
Hi, On Tue, Apr 26, 2011 at 5:09 AM, Anton Khirnov wrote: > From: Peter Ross > > Signed-off-by: Anton Khirnov > --- >  libavfilter/vf_crop.c           |    1 + >  tests/ref/lavfi/pixfmts_crop_le |    2 ++ >  2 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/libavfilter/vf_crop.c

Re: [libav-devel] [PATCH 3/5] hflip: make the filter accept PIX_FMT_BGR48LE and PIX_FMT_BGR48BE pixel formats

2011-04-25 Thread Ronald S. Bultje
Hi, On Tue, Apr 26, 2011 at 5:09 AM, Anton Khirnov wrote: > From: Peter Ross > > Signed-off-by: Anton Khirnov > --- >  libavfilter/vf_hflip.c           |    1 + >  tests/ref/lavfi/pixfmts_hflip_le |    2 ++ >  2 files changed, 3 insertions(+), 0 deletions(-) = 11/35 of your earlier series? Ro

Re: [libav-devel] [PATCH 17/35] yadif: factorise the C filtering.

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: James Darnley > > Signed-off-by: Anton Khirnov > --- >  libavfilter/vf_yadif.c |  150 +++ >  1 files changed, 48 insertions(+), 102 deletions(-) as in the other patches, OK but please

Re: [libav-devel] [PATCH 06/27] documentation: extend documentation for ffmpeg -aspect option

2011-04-25 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 11:49 AM, Reinhard Tartler wrote: > From: Stefano Sabatini > > --- >  doc/ffmpeg.texi |    8 +++- >  1 files changed, 7 insertions(+), 1 deletions(-) > > diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi > index 21c6f2c..0fee4b7 100644 > --- a/doc/ffmpeg.texi > +++ b/

[libav-devel] [PATCH 1/5] libswcale: PIX_FMT_BGR48LE and PIX_FMT_BGR48BE scaler implementation

2011-04-25 Thread Anton Khirnov
From: Peter Ross Signed-off-by: Anton Khirnov --- libswscale/swscale.c | 57 ++ libswscale/swscale.h |2 +- libswscale/swscale_internal.h| 10 +- libswscale/swscale_template.c|7 libswscale/utils.c

[libav-devel] [PATCH 4/5] rawvideo codec: support PIX_FMT_BGR48LE and PIX_FMT_BGR48BE

2011-04-25 Thread Anton Khirnov
From: Peter Ross Signed-off-by: Anton Khirnov --- libavcodec/raw.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/libavcodec/raw.c b/libavcodec/raw.c index c2a060b..7d92aba 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -102,6 +102,8 @@ const PixelFormatTag f

[libav-devel] [PATCH 5/5] nut format: support PIX_FMT_BGR48LE and PIX_FMT_BGR48BE

2011-04-25 Thread Anton Khirnov
From: Peter Ross Signed-off-by: Anton Khirnov --- libavformat/nut.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/libavformat/nut.c b/libavformat/nut.c index 3a6e28f..9a2ee6b 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -65,7 +65,9 @@ const AVCodecTag ff

[libav-devel] [PATCH 2/5] crop: make the filter accept PIX_FMT_BGR48LE and PIX_FMT_BGR48BE pixel formats

2011-04-25 Thread Anton Khirnov
From: Peter Ross Signed-off-by: Anton Khirnov --- libavfilter/vf_crop.c |1 + tests/ref/lavfi/pixfmts_crop_le |2 ++ 2 files changed, 3 insertions(+), 0 deletions(-) diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c index 105c390..9f71b9e 100644 --- a/libavfilter/vf_

[libav-devel] [PATCH 3/5] hflip: make the filter accept PIX_FMT_BGR48LE and PIX_FMT_BGR48BE pixel formats

2011-04-25 Thread Anton Khirnov
From: Peter Ross Signed-off-by: Anton Khirnov --- libavfilter/vf_hflip.c |1 + tests/ref/lavfi/pixfmts_hflip_le |2 ++ 2 files changed, 3 insertions(+), 0 deletions(-) diff --git a/libavfilter/vf_hflip.c b/libavfilter/vf_hflip.c index a232d26..fb8911f 100644 --- a/libavfilter

Re: [libav-devel] [PATCH 35/35] pad: make the filter parametric

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Stefano Sabatini > > Signed-off-by: Stefano Sabatini > Signed-off-by: Anton Khirnov > --- >  doc/filters.texi     |   57 - >  libavfilter/vf_pad.c |  114 > ++-

Re: [libav-devel] [PATCH 34/35] vsrc_movie: add key_frame and pict_type.

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: royger > > Signed-off-by: Roger Pau Monné > Signed-off-by: Michael Niedermayer > Signed-off-by: Anton Khirnov > --- >  libavfilter/vsrc_movie.c |    2 ++ >  1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/liba

Re: [libav-devel] [PATCH 33/35] vsrc_movie: fix leak in request_frame()

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Stefano Sabatini > > Also set movie->picref to NULL, in order to avoid a crash in uninit() > when movie->picref is unreffed again and it was already freed. > > Signed-off-by: Stefano Sabatini > Signed-off-by: Anton Khirnov > ---

Re: [libav-devel] [PATCH 28/35] vsrc_buffer: support changing pixel formats.

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Michael Niedermayer > > Fix issue2217 > > Signed-off-by: Anton Khirnov > --- >  ffmpeg.c                  |    5 ++- >  libavfilter/vsrc_buffer.c |   53 +++- >  libavfilter/vsrc_buffer.h |

Re: [libav-devel] [PATCH 27/35] ffmpeg.c: restructure video filter implementation.

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Michael Niedermayer > > This fixes several bugs like multiple outputs and -aspect mixed with -vf > > Signed-off-by: Anton Khirnov > --- >  ffmpeg.c |  128 ++--- >  1 files c

Re: [libav-devel] [PATCH 26/35] vsrc_buffer: add sample_aspect_ratio fields to arguments.

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Michael Niedermayer > > This fixes aspect handling in ffmpeg. > > This is based on a patch by Baptiste. > > Signed-off-by: Anton Khirnov > --- >  doc/APIchanges            |    3 +++ >  doc/filters.texi          |   11 --

Re: [libav-devel] [PATCH 25/35] lavfi: add fieldorder filter

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Mark Himsley > > Signed-off-by: Stefano Sabatini > Signed-off-by: Anton Khirnov > --- >  Changelog                   |    1 + >  doc/filters.texi            |   33 ++ >  libavfilter/Makefile        |    1 + >  libavfilter/al

Re: [libav-devel] [PATCH 21/35] scale: don't leak sws contexts.

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Michael Niedermayer > > Signed-off-by: Anton Khirnov > --- >  libavfilter/vf_scale.c |    2 ++ >  1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c > index ae04802..

Re: [libav-devel] [PATCH 20/35] scale: implement interlaced scaling.

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Michael Niedermayer > > Fixes issue2632 if interl=1 is used or the automatic interlace detection is > enabled > and works. This has the advantage compared to the patch in issue2632 that it > causes > no speed loss and it also wo

Re: [libav-devel] [PATCH 14/35] yadif: Fix assert() failure

2011-04-25 Thread Ronald S. Bultje
Hi, 2011/4/21 Aℓex Converse : > On Thu, Apr 21, 2011 at 8:46 AM, Diego Biurrun wrote: >> On Wed, Apr 20, 2011 at 09:45:21PM +0200, Anton Khirnov wrote: >>> From: Michael Niedermayer >> >> The log message for this commit is in need of improvement. > > We're going in circles here. Feel free to *su

Re: [libav-devel] [PATCH 11/35] hflip: make the filter accept PIX_FMT_BGR48LE and PIX_FMT_BGR48BE pixel formats

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Peter Ross > > Signed-off-by: Anton Khirnov > --- >  libavfilter/vf_hflip.c           |    1 + >  tests/ref/lavfi/pixfmts_hflip_le |    2 ++ >  2 files changed, 3 insertions(+), 0 deletions(-) OK. Ronald ___

Re: [libav-devel] [PATCH 07/35] drawtext: add shadow support.

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Michael Niedermayer > > Signed-off-by: Michael Niedermayer > Signed-off-by: Anton Khirnov > --- >  libavfilter/vf_drawtext.c |   39 +-- >  1 files changed, 33 insertions(+), 6 deletions(-) OK

Re: [libav-devel] [PATCH 06/35] drawtext: factor draw_glyphs.

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Michael Niedermayer > > Signed-off-by: Michael Niedermayer > Signed-off-by: Anton Khirnov > --- >  libavfilter/vf_drawtext.c |   68 > +++-- >  1 files changed, 41 insertions(+), 27 deleti

Re: [libav-devel] [PATCH 05/35] drawtext: fix and optimize yuv blend.

2011-04-25 Thread Ronald S. Bultje
Hi, On Thu, Apr 21, 2011 at 3:59 PM, Ronald S. Bultje wrote: > Hi, > > On Wed, Apr 20, 2011 at 3:45 PM, Anton Khirnov wrote: >> From: Michael Niedermayer >> >> Signed-off-by: Michael Niedermayer >> Signed-off-by: Anton Khirnov >> --- >>  libavfilter/vf_drawtext.c |   10 ++ >>  1 files

Re: [libav-devel] [PATCH 02/35] drawtext: simplify chroma blend.

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Michael Niedermayer > > Signed-off-by: Michael Niedermayer > Signed-off-by: Anton Khirnov > --- >  libavfilter/vf_drawtext.c |    4 ++-- >  1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavfilter/vf_drawtex

Re: [libav-devel] [PATCH 03/35] drawtext: fix chroma alpha.

2011-04-25 Thread Ronald S. Bultje
Hi, On Fri, Apr 22, 2011 at 11:34 AM, Anton Khirnov wrote: > On Wed, 20 Apr 2011 18:08:17 -0400, "Ronald S. Bultje" > wrote: >> Hi, >> >> On Wed, Apr 20, 2011 at 3:45 PM, Anton Khirnov wrote: >> > From: Michael Niedermayer >> > >> > Signed-off-by: Michael Niedermayer >> > Signed-off-by: Anto

Re: [libav-devel] [PATCH 04/35] drawtext: get rid of divisions in the inner loop.

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Michael Niedermayer > > Signed-off-by: Michael Niedermayer > Signed-off-by: Anton Khirnov > --- >  libavfilter/vf_drawtext.c |   16 >  1 files changed, 8 insertions(+), 8 deletions(-) OK. Ronald __

Re: [libav-devel] [PATCH 01/35] lavfi: Port drawtext filter by Hemanth from the libavfilter soc repo

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Stefano Sabatini > > With the following additions: > * support to anti-aliased glyph rendering > * support to UTF-8 text and Unicode chars rendering > * support for RGB packed formats > * fix minor errors and typos in the filter d

Re: [libav-devel] [PATCH 23/35] scale: fix computation for the "hsub" and "vsub" constants

2011-04-25 Thread Ronald S. Bultje
Hi, On Tue, Apr 26, 2011 at 4:10 AM, Ronald S. Bultje wrote: > Hi, > > On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: >> From: Stefano Sabatini >> >> Signed-off-by: Stefano Sabatini >> Signed-off-by: Anton Khirnov >> --- >>  libavfilter/vf_scale.c |    4 ++-- >>  1 files changed, 2 ins

Re: [libav-devel] [PATCH 24/35] scale: set evaluated value for the "out_w" and "out_h" constants

2011-04-25 Thread Ronald S. Bultje
Hi, On Tue, Apr 26, 2011 at 4:18 AM, Ronald S. Bultje wrote: > Hi, > > On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: >> From: Stefano Sabatini >> >> The constant values were never set, thus the evaluation of expressions >> referencing those constants were resulting in an error. >> >> Si

Re: [libav-devel] [PATCH 22/35] scale: make the filter parametric

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Stefano Sabatini > > Make the filter accept parametric expressions for the output video > size. > > Signed-off-by: Stefano Sabatini > Signed-off-by: Anton Khirnov > --- >  doc/filters.texi       |   60 ++

Re: [libav-devel] [PATCH 24/35] scale: set evaluated value for the "out_w" and "out_h" constants

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Stefano Sabatini > > The constant values were never set, thus the evaluation of expressions > referencing those constants were resulting in an error. > > Signed-off-by: Stefano Sabatini > Signed-off-by: Anton Khirnov > --- >  li

Re: [libav-devel] [PATCH 23/35] scale: fix computation for the "hsub" and "vsub" constants

2011-04-25 Thread Ronald S. Bultje
Hi, On Wed, Apr 20, 2011 at 7:45 PM, Anton Khirnov wrote: > From: Stefano Sabatini > > Signed-off-by: Stefano Sabatini > Signed-off-by: Anton Khirnov > --- >  libavfilter/vf_scale.c |    4 ++-- >  1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavfilter/vf_scale.c b/libavf

Re: [libav-devel] [PATCH 1/3] swscale: runtime cpu detection

2011-04-25 Thread Diego Biurrun
On Tue, Apr 26, 2011 at 01:18:25AM +0200, Janne Grunau wrote: > On Tue, Apr 26, 2011 at 12:56:09AM +0200, Diego Biurrun wrote: > > On Tue, Apr 26, 2011 at 12:27:46AM +0200, Janne Grunau wrote: > > > use AV_CPU_FLAG_* internally and deprecate SWS_CPU_CAPS_*. > > > add cpu_flags to swsContext and use

Re: [libav-devel] [PATCH 1/3] swscale: runtime cpu detection

2011-04-25 Thread Janne Grunau
On Tue, Apr 26, 2011 at 12:56:09AM +0200, Diego Biurrun wrote: > On Tue, Apr 26, 2011 at 12:27:46AM +0200, Janne Grunau wrote: > > use AV_CPU_FLAG_* internally and deprecate SWS_CPU_CAPS_*. > > add cpu_flags to swsContext and use AVOptions to set it. > > auto detection is only done if no SWS_CPU_CA

Re: [libav-devel] [PATCH 1/3] swscale: runtime cpu detection

2011-04-25 Thread Diego Biurrun
On Tue, Apr 26, 2011 at 12:27:46AM +0200, Janne Grunau wrote: > use AV_CPU_FLAG_* internally and deprecate SWS_CPU_CAPS_*. > add cpu_flags to swsContext and use AVOptions to set it. > auto detection is only done if no SWS_CPU_CAPS are set in flags and > cpu_flags does not contain AV_CPU_FLAG_FORCE.

Re: [libav-devel] [PATCH 3/3] swscale: use SwsContext for av_log when available

2011-04-25 Thread Diego Biurrun
On Tue, Apr 26, 2011 at 12:27:48AM +0200, Janne Grunau wrote: > --- > libswscale/utils.c | 10 +- > 1 files changed, 5 insertions(+), 5 deletions(-) OK > --- a/libswscale/utils.c > +++ b/libswscale/utils.c > @@ -817,11 +817,11 @@ int sws_init_context(SwsContext *c, SwsFilter > *srcFil

Re: [libav-devel] [PATCH 2/3] swscale: simplify ff_bfin_get_unscaled_swscale

2011-04-25 Thread Diego Biurrun
On Tue, Apr 26, 2011 at 12:27:47AM +0200, Janne Grunau wrote: > --- > libswscale/bfin/swscale_bfin.c | 20 +--- > 1 files changed, 9 insertions(+), 11 deletions(-) OK > --- a/libswscale/bfin/swscale_bfin.c > +++ b/libswscale/bfin/swscale_bfin.c > @@ -78,15 +78,13 @@ static int

Re: [libav-devel] [PATCH 2/3] swscale: simplify ff_bfin_get_unscaled_swscale

2011-04-25 Thread Luca Barbato
On 4/26/11 12:27 AM, Janne Grunau wrote: --- libswscale/bfin/swscale_bfin.c | 20 +--- 1 files changed, 9 insertions(+), 11 deletions(-) Ok, as well. ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailm

Re: [libav-devel] (no subject)

2011-04-25 Thread Luca Barbato
On 4/26/11 12:27 AM, Janne Grunau wrote: [...] Both patches look ok to me. lu ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH 1/3] swscale: runtime cpu detection

2011-04-25 Thread Janne Grunau
On Tue, Apr 26, 2011 at 12:27:46AM +0200, Janne Grunau wrote: > use AV_CPU_FLAG_* internally and deprecate SWS_CPU_CAPS_*. > add cpu_flags to swsContext and use AVOptions to set it. > auto detection is only done if no SWS_CPU_CAPS are set in flags and > cpu_flags does not contain AV_CPU_FLAG_FORCE.

[libav-devel] [PATCH 1/3] swscale: runtime cpu detection

2011-04-25 Thread Janne Grunau
use AV_CPU_FLAG_* internally and deprecate SWS_CPU_CAPS_*. add cpu_flags to swsContext and use AVOptions to set it. auto detection is only done if no SWS_CPU_CAPS are set in flags and cpu_flags does not contain AV_CPU_FLAG_FORCE. --- doc/APIchanges|3 + libswscale/bfin/swsc

[libav-devel] [PATCH 3/3] swscale: use SwsContext for av_log when available

2011-04-25 Thread Janne Grunau
--- libswscale/utils.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libswscale/utils.c b/libswscale/utils.c index f7866b2..3e31f0c 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -817,11 +817,11 @@ int sws_init_context(SwsContext *c, SwsFilter *srcF

[libav-devel] [PATCH 2/3] swscale: simplify ff_bfin_get_unscaled_swscale

2011-04-25 Thread Janne Grunau
--- libswscale/bfin/swscale_bfin.c | 20 +--- 1 files changed, 9 insertions(+), 11 deletions(-) diff --git a/libswscale/bfin/swscale_bfin.c b/libswscale/bfin/swscale_bfin.c index 02fcfb5..14d970a 100644 --- a/libswscale/bfin/swscale_bfin.c +++ b/libswscale/bfin/swscale_bfin.c @@

[libav-devel] (no subject)

2011-04-25 Thread Janne Grunau
On Fri, Apr 15, 2011 at 11:50:02AM +0200, Stefano Sabatini wrote: > On date Friday 2011-04-15 02:23:50 +0200, Janne Grunau wrote: > > From: Janne Grunau > > > > port swscale to AV_CPU_FLAGS* and use av_get_cpu_flags() for runtime cpu > > detection. Still only used with --enable-runtime-cpudetect.

Re: [libav-devel] [FFmpeg-devel] [RFC][PATCH] Move picture type definitions from libavcodec to libavutil

2011-04-25 Thread Stefano Sabatini
On date Monday 2011-04-25 01:46:48 +0200, Stefano Sabatini encoded: > On date Sunday 2011-04-24 18:43:41 +0200, Stefano Sabatini encoded: > > On date Saturday 2011-04-23 17:28:30 +0200, Stefano Sabatini encoded: > > > On date Saturday 2011-04-23 13:54:52 +0200, Nicolas George encoded: > > > > Le qu

[libav-devel] [PATCH 2/2] matroskaenc: cues->entries/num_entries to 0 after writing them

2011-04-25 Thread Janne Grunau
--- libavformat/matroskaenc.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index 89de55c..29b6566 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -403,7 +403,8 @@ static int64_t mkv_write_

[libav-devel] [PATCH 1/2] matroskaenc: fix leak of empty mkv->cues after 9181976

2011-04-25 Thread Janne Grunau
--- libavformat/matroskaenc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index c0427f9..89de55c 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -404,7 +404,6 @@ static int64_t mkv_write_c

Re: [libav-devel] [PATCH] FFmpeg lavfi cherrypicks

2011-04-25 Thread Anton Khirnov
On Thu, 21 Apr 2011 12:50:11 +0200, Reinhard Tartler wrote: > On Wed, Apr 20, 2011 at 21:45:07 (CEST), Anton Khirnov wrote: > > > Hi, > > this patch series contains all the relevant changes to lavfi not present > > in Libav. > > > > Note that patch 28 "vsrc_buffer: support changing pixel formats

Re: [libav-devel] [PATCH] matroskaenc: fix leak of empty mkv->cues after 9181976

2011-04-25 Thread Anton Khirnov
On Mon, 25 Apr 2011 19:12:26 +0200, Janne Grunau wrote: > --- > libavformat/matroskaenc.c |3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c > index c0427f9..573ec9a 100644 > --- a/libavformat/matroskaenc.c > +++

Re: [libav-devel] [PATCH] dir-local variables for emacs

2011-04-25 Thread Reinhard Tartler
On Mon, Apr 25, 2011 at 18:31:25 (CEST), Diego Biurrun wrote: > On Mon, Apr 25, 2011 at 06:10:40PM +0200, Andrea Crotti wrote: >> --- /dev/null >> +++ b/.dir-locals.el >> @@ -0,0 +1,17 @@ >> + >> + (c-mode . >> + ((compile-command . "make -j2") > > I don't know what to use instead, but '-j

[libav-devel] [PATCH] matroskaenc: fix leak of empty mkv->cues after 9181976

2011-04-25 Thread Janne Grunau
--- libavformat/matroskaenc.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index c0427f9..573ec9a 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -1145,7 +1145,8 @@ static int mkv_write_tr

Re: [libav-devel] [PATCH] ac3: fix memleak in fixed-point encoder

2011-04-25 Thread Justin Ruggles
On 04/25/2011 12:59 PM, Janne Grunau wrote: > caused by typo in mdct_end > --- > libavcodec/ac3enc_fixed.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/libavcodec/ac3enc_fixed.c b/libavcodec/ac3enc_fixed.c > index 720d87d..e643841 100644 > --- a/libavcodec/ac3en

Re: [libav-devel] [PATCH] Add floating-point sample format support to the ac3, eac3, dca, aac, and vorbis decoders.

2011-04-25 Thread Justin Ruggles
On 04/25/2011 12:21 PM, Aℓex Converse wrote: > On Sat, Apr 23, 2011 at 1:35 PM, Ronald S. Bultje wrote: >> Hi, >> >> On Sat, Apr 23, 2011 at 4:00 PM, Justin Ruggles >> wrote: >>> On 04/23/2011 03:55 PM, Justin Ruggles wrote: >>> Based on patches by clsid2 in ffdshow-tryout. --- >>

[libav-devel] [PATCH] ac3: fix memleak in fixed-point encoder

2011-04-25 Thread Janne Grunau
caused by typo in mdct_end --- libavcodec/ac3enc_fixed.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/ac3enc_fixed.c b/libavcodec/ac3enc_fixed.c index 720d87d..e643841 100644 --- a/libavcodec/ac3enc_fixed.c +++ b/libavcodec/ac3enc_fixed.c @@ -36,7 +36,7 @@

Re: [libav-devel] [PATCH] dir-local variables for emacs

2011-04-25 Thread Andrea Crotti
Diego Biurrun writes: > On Mon, Apr 25, 2011 at 06:10:40PM +0200, Andrea Crotti wrote: >> --- /dev/null >> +++ b/.dir-locals.el >> @@ -0,0 +1,17 @@ >> + >> + (c-mode . >> + ((compile-command . "make -j2") > > I don't know what to use instead, but '-j2' is not ideal. The parameter > shoul

[libav-devel] [PATCH] aac latm: fix memory leak caused by multiple calls to aac_decode_init

2011-04-25 Thread Janne Grunau
--- libavcodec/aacdec.c | 13 - 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index 0c6312f..5c7c90d 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -2451,13 +2451,16 @@ static int latm_decode_frame(AVCodecConte

Re: [libav-devel] [PATCH] dir-local variables for emacs

2011-04-25 Thread Diego Biurrun
On Mon, Apr 25, 2011 at 06:10:40PM +0200, Andrea Crotti wrote: > --- /dev/null > +++ b/.dir-locals.el > @@ -0,0 +1,17 @@ > + > + (c-mode . > + ((compile-command . "make -j2") I don't know what to use instead, but '-j2' is not ideal. The parameter should at least be equivalent to the numbe

Re: [libav-devel] [PATCH] Add floating-point sample format support to the ac3, eac3, dca, aac, and vorbis decoders.

2011-04-25 Thread Aℓex Converse
On Sat, Apr 23, 2011 at 1:35 PM, Ronald S. Bultje wrote: > Hi, > > On Sat, Apr 23, 2011 at 4:00 PM, Justin Ruggles > wrote: >> On 04/23/2011 03:55 PM, Justin Ruggles wrote: >> >>> >>> Based on patches by clsid2 in ffdshow-tryout. >>> --- >>>  configure               |    2 ++ >>>  libavcodec/aac.

Re: [libav-devel] [PATCH] AVX FFT

2011-04-25 Thread Reinhard Tartler
On Mon, Apr 25, 2011 at 11:41:11 (CEST), Vitor Sessak wrote: [...] > If the attached patch does not fix this one, I have no idea how to fix > it without having access to actual SB hardware. In the emulator (at > least on 32-bit mode), all WMA/WMV-related FATE tests pass. No need, with your lates

Re: [libav-devel] [PATCH] Remove stray libavcore and _g binary references.

2011-04-25 Thread Aℓex Converse
On Sun, Apr 24, 2011 at 2:21 AM, Reinhard Tartler wrote: > On Sun, Apr 24, 2011 at 10:53:31 (CEST), Diego Biurrun wrote: > >> On Sat, Apr 23, 2011 at 11:50:00AM -0700, Alex Converse wrote: >>> On Sat, Apr 23, 2011 at 5:16 AM, Diego Biurrun wrote: >>> > >>> > --- a/Changelog >>> > +++ b/Changelog

Re: [libav-devel] [PATCH] dir-local variables for emacs

2011-04-25 Thread Andrea Crotti
Vitor Sessak writes: > > Can you also add an ASM mode? An example of FFmpeg asm formatting can > be found at libavcodec/x86/fft_mmx.asm. I'm quite sure that something can be done, but actual the asm-mode tha is selected by default is not derived from cc-mode. This implies that all the magic used

Re: [libav-devel] [PATCH] Eliminate [u]int_fast[8/16/32/64]_t integer types.

2011-04-25 Thread Aℓex Converse
On Mon, Apr 25, 2011 at 7:35 AM, Diego Biurrun wrote: > The _fast integer types provide no realworld benefits, but may > introduce portability issues and are just plain ugly. > --- If anyone is unconvinced that these types are a huge pain in the ass consider: int foo () { uint8_fast_t x = 5; int

Re: [libav-devel] [PATCH] Eliminate [u]int_fast[8/16/32/64]_t integer types.

2011-04-25 Thread Ronald S. Bultje
Hi, On Mon, Apr 25, 2011 at 3:43 PM, Diego Biurrun wrote: > The _fast integer types provide no realworld benefits, but may > introduce portability issues and are just plain ugly. > --- >  libavcodec/alpha/simple_idct_alpha.c |   20 +- >  libavcodec/cavs.h                    |   11 +- >  libavcode

[libav-devel] [PATCH] Eliminate [u]int_fast[8/16/32/64]_t integer types.

2011-04-25 Thread Diego Biurrun
The _fast integer types provide no realworld benefits, but may introduce portability issues and are just plain ugly. --- libavcodec/alpha/simple_idct_alpha.c | 20 +- libavcodec/cavs.h| 11 +- libavcodec/cavsdata.h|8 +- libavcodec/ffv1.c

Re: [libav-devel] [PATCH] dir-local variables for emacs

2011-04-25 Thread Andrea Crotti
Andrea Crotti writes: > > I added some more things to experiment a bit more. > In short now there are two spaces cleanups, the first when the file is > visited and the second before the file is saved. > > If after the first cleanup the file gets modified it gets set in > read-only mode, in this w

Re: [libav-devel] [PATCH] dir-local variables for emacs

2011-04-25 Thread Vitor Sessak
On 04/25/2011 05:03 PM, Andrea Crotti wrote: Diego Biurrun writes: I have the following in my .emacs: (setq c-default-style "k&r") (setq-default c-basic-offset 4) (setq-default indent-tabs-mode nil) I think 4 space indentation with no tabs should also be part of such a default emac

Re: [libav-devel] [PATCH 4/5] Add support for request_sample_format in ffmpeg and ffplay.

2011-04-25 Thread Ronald S. Bultje
Hi, On Mon, Apr 25, 2011 at 2:55 PM, Justin Ruggles wrote: > On 04/25/2011 10:46 AM, Justin Ruggles wrote: > >> On 04/25/2011 10:14 AM, Ronald S. Bultje wrote: >> >>> Hi, >>> >>> On Sun, Apr 24, 2011 at 10:06 PM, Justin Ruggles >>> wrote: >>> [..] diff --git a/ffplay.c b/ffplay.c >>> [..] >

Re: [libav-devel] [PATCH] dir-local variables for emacs

2011-04-25 Thread Andrea Crotti
Diego Biurrun writes: > > I'm a bit suspicious about indent-buffer, that might introduce stray > changes ... I've never had such problems with that, if the settings are correct it should work correctly. Any example? > > Something like this would actually be very useful. > > Diego > > P.S.: Your

Re: [libav-devel] [PATCH] Eliminate [u]int_fast[8/16/32/64]_t integer types.

2011-04-25 Thread Diego Biurrun
On Mon, Apr 25, 2011 at 02:41:00PM +, Ronald S. Bultje wrote: > Hi, > > On Mon, Apr 25, 2011 at 2:35 PM, Diego Biurrun wrote: > > The _fast integer types provide no realworld benefits, but may > > introduce portability issues and are just plain ugly. > > --- > >  libavcodec/alpha/simple_idct_

Re: [libav-devel] [PATCH] dir-local variables for emacs

2011-04-25 Thread Andrea Crotti
Diego Biurrun writes: > > I have the following in my .emacs: > > (setq c-default-style "k&r") > (setq-default c-basic-offset 4) > (setq-default indent-tabs-mode nil) > > I think 4 space indentation with no tabs should also be part of such > a default emacs setup. I added some more things t

Re: [libav-devel] [PATCH] Eliminate [u]int_fast[8/16/32/64]_t integer types.

2011-04-25 Thread Justin Ruggles
On 04/25/2011 10:41 AM, Ronald S. Bultje wrote: > Hi, > > On Mon, Apr 25, 2011 at 2:35 PM, Diego Biurrun wrote: >> The _fast integer types provide no realworld benefits, but may >> introduce portability issues and are just plain ugly. >> --- >> libavcodec/alpha/simple_idct_alpha.c | 20 +- >>

Re: [libav-devel] [PATCH 4/5] Add support for request_sample_format in ffmpeg and ffplay.

2011-04-25 Thread Justin Ruggles
On 04/25/2011 10:46 AM, Justin Ruggles wrote: > On 04/25/2011 10:14 AM, Ronald S. Bultje wrote: > >> Hi, >> >> On Sun, Apr 24, 2011 at 10:06 PM, Justin Ruggles >> wrote: >> [..] >>> diff --git a/ffplay.c b/ffplay.c >> [..] >>> @@ -2416,6 +2416,23 @@ static int decode_thread(void *arg) >>> +/

Re: [libav-devel] [PATCH] win32: include the correct header in cmdutils.c

2011-04-25 Thread Martin Storsjö
On Mon, 25 Apr 2011, lu_z...@gentoo.org wrote: > From: Luca Barbato > > CommandLineToArgvW requires windows.h, include it directly > --- > cmdutils.c |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/cmdutils.c b/cmdutils.c > index f25f61d..d15aba0 100644 > --- a/cm

Re: [libav-devel] [PATCH 5/5] Add floating-point sample format support to the ac3, eac3, dca, aac, and vorbis decoders.

2011-04-25 Thread Justin Ruggles
On 04/25/2011 10:15 AM, Ronald S. Bultje wrote: > Hi, > > On Sun, Apr 24, 2011 at 9:50 PM, Justin Ruggles > wrote: >> Based on patches by clsid2 in ffdshow-tryout. >> --- >> libavcodec/aac.h |2 +- >> libavcodec/aacdec.c| 35 --- >> libavcodec/aac

Re: [libav-devel] [PATCH 4/5] Add support for request_sample_format in ffmpeg and ffplay.

2011-04-25 Thread Ronald S. Bultje
Hi, On Mon, Apr 25, 2011 at 2:46 PM, Justin Ruggles wrote: > possibly... it doesn't do much though. if not for the flags it would > basically be a loop around set_context_opts(). > > i can shorten it if you want. :) > > for (i = 0; i < ic->nb_streams; i++) { >    AVCodecContext *dec = ic->streams

Re: [libav-devel] [PATCH 2/3] Extend and shuffle content

2011-04-25 Thread Diego Biurrun
On Sun, Apr 24, 2011 at 07:13:13PM +0200, Diego Biurrun wrote: > On Sat, Apr 16, 2011 at 01:32:31PM +0200, Luca Barbato wrote: > > We should focus on what we provide first, then how we are organized and > > then on which is our origin. > > I agree that this needs to be split somehow, it's hard to

Re: [libav-devel] [PATCH 4/5] Add support for request_sample_format in ffmpeg and ffplay.

2011-04-25 Thread Justin Ruggles
On 04/25/2011 10:14 AM, Ronald S. Bultje wrote: > Hi, > > On Sun, Apr 24, 2011 at 10:06 PM, Justin Ruggles > wrote: >> --- >> Updated patch. >> Need to initialize resampling if sample rate changes mid-stream. >> >> ffmpeg.c | 63 >>

Re: [libav-devel] [PATCH] Eliminate [u]int_fast[8/16/32/64]_t integer types.

2011-04-25 Thread Ronald S. Bultje
Hi, On Mon, Apr 25, 2011 at 2:35 PM, Diego Biurrun wrote: > The _fast integer types provide no realworld benefits, but may > introduce portability issues and are just plain ugly. > --- >  libavcodec/alpha/simple_idct_alpha.c |   20 +- >  libavcodec/cavs.h                    |   11 +- >  libavcode

[libav-devel] [PATCH] Eliminate [u]int_fast[8/16/32/64]_t integer types.

2011-04-25 Thread Diego Biurrun
The _fast integer types provide no realworld benefits, but may introduce portability issues and are just plain ugly. --- libavcodec/alpha/simple_idct_alpha.c | 20 +- libavcodec/cavs.h| 11 +- libavcodec/cavsdata.h|8 +- libavcodec/ffv1.c

Re: [libav-devel] [PATCH] flashsv: Return more meaningful error values.

2011-04-25 Thread Ronald S. Bultje
Hi, On Mon, Apr 25, 2011 at 2:02 PM, Diego Biurrun wrote: > --- >  libavcodec/flashsv.c    |    2 +- >  libavcodec/flashsvenc.c |    6 +++--- >  2 files changed, 4 insertions(+), 4 deletions(-) OK. Ronald ___ libav-devel mailing list libav-devel@libav

Re: [libav-devel] [PATCH] cosmetics: Group AVERROR values into sensible sets.

2011-04-25 Thread Ronald S. Bultje
Hi, On Mon, Apr 25, 2011 at 2:03 PM, Diego Biurrun wrote: > --- >  libavutil/error.h |    9 + >  1 files changed, 5 insertions(+), 4 deletions(-) Didn't Stefano just make these alphabetical? Let's keep them as they are. No need to make it more complex. The doxy can probably use some impr

Re: [libav-devel] [PATCH 5/5] Add floating-point sample format support to the ac3, eac3, dca, aac, and vorbis decoders.

2011-04-25 Thread Ronald S. Bultje
Hi, On Sun, Apr 24, 2011 at 9:50 PM, Justin Ruggles wrote: > Based on patches by clsid2 in ffdshow-tryout. > --- >  libavcodec/aac.h       |    2 +- >  libavcodec/aacdec.c    |   35 --- >  libavcodec/aacsbr.c    |   11 --- >  libavcodec/aacsbr.h    |    2 +

Re: [libav-devel] [PATCH 4/5] Add support for request_sample_format in ffmpeg and ffplay.

2011-04-25 Thread Ronald S. Bultje
Hi, On Sun, Apr 24, 2011 at 10:06 PM, Justin Ruggles wrote: > --- > Updated patch. > Need to initialize resampling if sample rate changes mid-stream. > >  ffmpeg.c |   63 - >  ffplay.c |   17 >  2 files changed, 78 inser

[libav-devel] [PATCH] cosmetics: Group AVERROR values into sensible sets.

2011-04-25 Thread Diego Biurrun
--- libavutil/error.h |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/libavutil/error.h b/libavutil/error.h index ba12d2b..a754ca7 100644 --- a/libavutil/error.h +++ b/libavutil/error.h @@ -41,16 +41,17 @@ #define AVERROR_DECODER_NOT_FOUND (-MKTAG(0xF8,'D','E','C

[libav-devel] [PATCH] flashsv: Return more meaningful error values.

2011-04-25 Thread Diego Biurrun
--- libavcodec/flashsv.c|2 +- libavcodec/flashsvenc.c |6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/flashsv.c b/libavcodec/flashsv.c index 0fdbfde..1e8afdb 100644 --- a/libavcodec/flashsv.c +++ b/libavcodec/flashsv.c @@ -133,7 +133,7 @@ static in

Re: [libav-devel] [PATCH 3/5] Add APIchanges entry for request_sample_fmt.

2011-04-25 Thread Ronald S. Bultje
Hi, On Sun, Apr 24, 2011 at 9:50 PM, Justin Ruggles wrote: > --- >  doc/APIchanges |    3 +++ >  1 files changed, 3 insertions(+), 0 deletions(-) OK. Ronald ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/li

Re: [libav-devel] [PATCH 2/5] Add request_sample_fmt field to AVCodecContext.

2011-04-25 Thread Ronald S. Bultje
Hi, On Sun, Apr 24, 2011 at 9:50 PM, Justin Ruggles wrote: > This will allow audio decoders to support output of different sample formats > as a runtime option. > --- >  libavcodec/avcodec.h |    7 +++ >  libavcodec/options.c |    6 ++ >  libavcodec/version.h |    2 +- >  3 files changed,

Re: [libav-devel] [PATCH 1/5] Add float_interleave() to FmtConvertContext with x86-optimized versions.

2011-04-25 Thread Ronald S. Bultje
Hi, On Sun, Apr 24, 2011 at 9:50 PM, Justin Ruggles wrote: > Partially based on patches by clsid2 in ffdshow-tryout. > ff_float_interleave6() x86 improvements by Loren Merrit. > --- >  libavcodec/fmtconvert.c         |   20 ++ >  libavcodec/fmtconvert.h         |    9 +++ >  libavcodec/x86/fm

Re: [libav-devel] [PATCH] win32: include the correct header in cmdutils.c

2011-04-25 Thread Diego Biurrun
On Mon, Apr 25, 2011 at 03:30:42PM +0200, lu_z...@gentoo.org wrote: > > CommandLineToArgvW requires windows.h, include it directly OK Diego ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

[libav-devel] [PATCH] win32: include the correct header in cmdutils.c

2011-04-25 Thread lu_zero
From: Luca Barbato CommandLineToArgvW requires windows.h, include it directly --- cmdutils.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/cmdutils.c b/cmdutils.c index f25f61d..d15aba0 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -156,6 +156,7 @@ static const OptionDef

[libav-devel] [PATCH] mov: Fix composition timestamps on movie fragments.

2011-04-25 Thread Yusuke Nakamura
libav has a bug that libav detects wrong CTS from fragmented ISO base media file formats. This bug occurs, for instance, when there is a track that has some samples with composition time offset and has a track run without sample-composition-time- offsets-present. I attached a patch for this bug an

  1   2   >