Re: [libav-devel] [PATCH 3/3] sipr: Drop unused DSPContext

2011-06-18 Thread Ronald S. Bultje
Hi, On Sat, Jun 18, 2011 at 6:47 PM, Alex Converse wrote: > --- >  libavcodec/sipr.c |    2 -- >  libavcodec/sipr.h |    1 - >  2 files changed, 0 insertions(+), 3 deletions(-) OK. Ronald ___ libav-devel mailing list libav-devel@libav.org https://list

Re: [libav-devel] [PATCH 2/3] sipr: include string.h for mem*()

2011-06-18 Thread Ronald S. Bultje
Hi, 2011/6/18 Alex Converse : > --- >  libavcodec/sipr.c |    1 + >  1 files changed, 1 insertions(+), 0 deletions(-) OK. Ronald ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH 1/3] sipr: Use memmove() to copy overlapped buffers.

2011-06-18 Thread Ronald S. Bultje
Hi, On Sat, Jun 18, 2011 at 6:47 PM, Alex Converse wrote: > --- >  libavcodec/sipr.c |    2 +- >  1 files changed, 1 insertions(+), 1 deletions(-) LGTM. Ronald ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo

Re: [libav-devel] [libav-commits] cmdutils: add opt_default2().

2011-06-18 Thread Alex Converse
2011/6/18 Måns Rullgård : > Alex Converse writes: > >> On Thu, Jun 16, 2011 at 11:37 AM, Anton Khirnov wrote: >>> Module: libav >>> Branch: master >>> Commit: 9ba38229e5bd0cf6201a8206b2d8be6335f45f46 >>> >>> Author:    Anton Khirnov >>> Committer: Anton Khirnov >>> Date:      Wed May 25 16:42:4

[libav-devel] [PATCH 3/3] sipr: Drop unused DSPContext

2011-06-18 Thread Alex Converse
--- libavcodec/sipr.c |2 -- libavcodec/sipr.h |1 - 2 files changed, 0 insertions(+), 3 deletions(-) diff --git a/libavcodec/sipr.c b/libavcodec/sipr.c index 85d1419..2e86861 100644 --- a/libavcodec/sipr.c +++ b/libavcodec/sipr.c @@ -496,8 +496,6 @@ static av_cold int sipr_decoder_init(A

[libav-devel] [PATCH 2/3] sipr: include string.h for mem*()

2011-06-18 Thread Alex Converse
--- libavcodec/sipr.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/libavcodec/sipr.c b/libavcodec/sipr.c index f4f12d8..85d1419 100644 --- a/libavcodec/sipr.c +++ b/libavcodec/sipr.c @@ -23,6 +23,7 @@ #include #include +#include #include "libavutil/mathematics

[libav-devel] [PATCH 1/3] sipr: Use memmove() to copy overlapped buffers.

2011-06-18 Thread Alex Converse
--- libavcodec/sipr.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/sipr.c b/libavcodec/sipr.c index 17e7e85..f4f12d8 100644 --- a/libavcodec/sipr.c +++ b/libavcodec/sipr.c @@ -461,7 +461,7 @@ static void decode_frame(SiprContext *ctx, SiprParameters *params,

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Alex Converse
On Sat, Jun 18, 2011 at 2:03 PM, Alex Converse wrote: > 2011/6/18 Måns Rullgård : >> Alex Converse writes: >> >>> 2011/6/18 Måns Rullgård : Alex Converse writes: > 2011/6/18 Måns Rullgård : >> Alex Converse writes: >> >>> 2011/6/18 Måns Rullgård : Yusuke Nakam

Re: [libav-devel] [PATCH 1/3] ac3enc: add int32_t array clipping function to DSPUtil, including x86 versions.

2011-06-18 Thread Justin Ruggles
On 06/17/2011 09:44 PM, Loren Merritt wrote: > On Thu, 16 Jun 2011, Justin Ruggles wrote: > >> On 06/12/2011 04:31 PM, Ronald S. Bultje wrote: >> >>> Hi, >>> >>> On Sat, Jun 11, 2011 at 10:35 AM, Justin Ruggles >>> wrote: --- libavcodec/dsputil.c| 17 +++ libavc

Re: [libav-devel] [PATCH 07/10] lavc: remove a half-working attempt at different defaults for audio/video codecs.

2011-06-18 Thread Anton Khirnov
On Sat, 18 Jun 2011 15:19:53 -0400, Justin Ruggles wrote: > On 06/18/2011 08:52 AM, Anton Khirnov wrote: > > This one seems unrelated. And doesn't COMMON_OPTS already set the > bitexact flag? > This seems to be a leak from an older version. Removed locally. -- Anton Khirnov _

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Alex Converse
2011/6/18 Måns Rullgård : > Alex Converse writes: > >> 2011/6/18 Måns Rullgård : >>> Alex Converse writes: >>> 2011/6/18 Måns Rullgård : > Alex Converse writes: > >> 2011/6/18 Måns Rullgård : >>> Yusuke Nakamura writes: >>> 2011/6/18 Måns Rullgård >>>

Re: [libav-devel] [PATCH] lavf: prevent crash in av_open_input_file() if ap == NULL.

2011-06-18 Thread Anton Khirnov
On Sat, 18 Jun 2011 15:33:59 -0400, "Ronald S. Bultje" wrote: > Needed for proper behaviour in our old API compatibility code. > --- > libavformat/utils.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/libavformat/utils.c b/libavformat/utils.c > index 81bc9b7..7

Re: [libav-devel] [PATCH 04/10] ffplay: use new avcodec_open2 and avformat_find_stream_info API.

2011-06-18 Thread Justin Ruggles
On 06/18/2011 08:52 AM, Anton Khirnov wrote: > +AVDictionary **setup_find_stream_info_opts(AVFormatContext *s) > +{ > +int i; > +AVDictionary **opts; > + > +if (!s->nb_streams) > +return NULL; > +opts = av_mallocz(s->nb_streams * sizeof(*opts)); > +for (i = 0; i < s->nb

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Måns Rullgård
Alex Converse writes: > 2011/6/18 Måns Rullgård : >> Alex Converse writes: >> >>> 2011/6/18 Måns Rullgård : Alex Converse writes: > 2011/6/18 Måns Rullgård : >> Yusuke Nakamura writes: >> >>> 2011/6/18 Måns Rullgård >>> Yusuke Nakamura writes:

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Alex Converse
2011/6/18 Måns Rullgård : > Alex Converse writes: > >> 2011/6/18 Måns Rullgård : >>> Alex Converse writes: >>> 2011/6/18 Måns Rullgård : > Yusuke Nakamura writes: > >> 2011/6/18 Måns Rullgård >> >>> Yusuke Nakamura writes: >>> >>> > This patch fixes my 10L of f

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Måns Rullgård
Alex Converse writes: > 2011/6/18 Måns Rullgård : >> Alex Converse writes: >> >>> 2011/6/18 Måns Rullgård : Yusuke Nakamura writes: > 2011/6/18 Måns Rullgård > >> Yusuke Nakamura writes: >> >> > This patch fixes my 10L of following. >> > >> http://git.lib

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Alex Converse
2011/6/18 Måns Rullgård : > Alex Converse writes: > >> 2011/6/18 Måns Rullgård : >>> Yusuke Nakamura writes: >>> 2011/6/18 Måns Rullgård > Yusuke Nakamura writes: > > > This patch fixes my 10L of following. > > > http://git.libav.org/?p=libav.git;a=commitdiff;h=5f0

Re: [libav-devel] [PATCH 10/10] libmp3lame: use VBR mode by default.

2011-06-18 Thread Justin Ruggles
On 06/18/2011 08:53 AM, Anton Khirnov wrote: > This makes output with defaults settings actually default. > > It's also the first test of codec-specific defaults. > --- > libavcodec/libmp3lame.c | 13 ++--- > 1 files changed, 10 insertions(+), 3 deletions(-) > > diff --git a/libavcode

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Måns Rullgård
Alex Converse writes: > 2011/6/18 Måns Rullgård : >> Yusuke Nakamura writes: >> >>> 2011/6/18 Måns Rullgård >>> Yusuke Nakamura writes: > This patch fixes my 10L of following. > http://git.libav.org/?p=libav.git;a=commitdiff;h=5f0bb0baefd506d684adfa1ad4259c65973b455e >

[libav-devel] [PATCH] lavf: prevent crash in av_open_input_file() if ap == NULL.

2011-06-18 Thread Ronald S. Bultje
Needed for proper behaviour in our old API compatibility code. --- libavformat/utils.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index 81bc9b7..7370c60 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -549,7 +54

Re: [libav-devel] [PATCH 07/10] lavc: remove a half-working attempt at different defaults for audio/video codecs.

2011-06-18 Thread Justin Ruggles
On 06/18/2011 08:52 AM, Anton Khirnov wrote: > It should be replaced with proper per-codec defaults. > --- > libavcodec/options.c |2 +- > tests/lavf-regression.sh |6 +++--- > 2 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/libavcodec/options.c b/libavcodec/options

Re: [libav-devel] [PATCH 06/10] cmdutils: replace opt_default with opt_default2() and remove set_context_opts

2011-06-18 Thread Justin Ruggles
On 06/18/2011 08:52 AM, Anton Khirnov wrote: > --- > cmdutils.c | 108 > +--- > cmdutils.h |3 -- > 2 files changed, 1 insertions(+), 110 deletions(-) > > diff --git a/cmdutils.c b/cmdutils.c > index b3c8e63..8295baa 100644 > --- a/cm

Re: [libav-devel] [PATCH 03/10] ac3dec: add a drc_scale private option

2011-06-18 Thread Justin Ruggles
On 06/18/2011 08:52 AM, Anton Khirnov wrote: > Deprecate corresponding AVCodecContext option. > > This is the first test of decoder private options. > --- > libavcodec/ac3dec.c | 17 + > libavcodec/ac3dec.h |2 ++ > libavcodec/avcodec.h |5 - > libavcodec/options.

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Alex Converse
2011/6/18 Måns Rullgård : > Yusuke Nakamura writes: > >> 2011/6/18 Måns Rullgård >> >>> Yusuke Nakamura writes: >>> >>> > This patch fixes my 10L of following. >>> > >>> http://git.libav.org/?p=libav.git;a=commitdiff;h=5f0bb0baefd506d684adfa1ad4259c65973b455e >>> > >>> > From f3c030ebedabc9a17e3

Re: [libav-devel] [PATCH] Announce Libav 0.7

2011-06-18 Thread Justin Ruggles
On 06/18/2011 02:32 PM, Justin Ruggles wrote: > On 06/18/2011 09:28 AM, Reinhard Tartler wrote: > >> + >> +Like the other release tree, user can expect maintenance and smaller >> +feature updates in the future. Please >> +use http://bugzilla.libav.org";>our new bugtracker to >> +request changes s

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Alex Converse
On Sat, Jun 18, 2011 at 3:21 AM, Diego Biurrun wrote: > On Fri, Jun 17, 2011 at 10:00:49PM -0700, Alex Converse wrote: >> On Fri, Jun 17, 2011 at 2:07 PM, Yusuke Nakamura >> wrote: >> > This patch fixes my 10L of following. >> > http://git.libav.org/?p=libav.git;a=commitdiff;h=5f0bb0baefd506d684a

Re: [libav-devel] [PATCH] changelog: misc typos and wording fixes

2011-06-18 Thread Justin Ruggles
On 06/18/2011 02:12 PM, Diego Biurrun wrote: > -- floating-point sample format support to the ac3, eac3, dca, aac, and > vorbis decoders. > +- floating-point sample format support for AC-3, E-AC-3, DCA, AAC and Vorbis You removed the important word "decoders". -Justin ___

Re: [libav-devel] [PATCH] Announce Libav 0.7

2011-06-18 Thread Justin Ruggles
On 06/18/2011 09:28 AM, Reinhard Tartler wrote: > + > +Like the other release tree, user can expect maintenance and smaller > +feature updates in the future. Please > +use http://bugzilla.libav.org";>our new bugtracker to > +request changes such as bugfixes and new features. > + Like the previou

Re: [libav-devel] [PATCH] Announce Libav 0.7

2011-06-18 Thread Diego Biurrun
On Sat, Jun 18, 2011 at 03:28:40PM +0200, Reinhard Tartler wrote: > > --- a/src/download > +++ b/src/download > @@ -144,26 +144,22 @@ selected changes from the development branch, which > therefore receives much more > > > -While 0.7 is not released yet, we already provide you with a > -previ

Re: [libav-devel] [PATCH] H.264: Add x86 assembly for 10-bit weight/biweight H.264 functions.

2011-06-18 Thread Diego Biurrun
On Sat, Jun 18, 2011 at 01:33:03PM -0400, Daniel Kang wrote: > Mainly ported from 8-bit H.264 weight/biweight. > --- > libavcodec/x86/Makefile |1 + > libavcodec/x86/h264_weight_10bit.asm | 298 > ++ > libavcodec/x86/h264dsp_mmx.c | 61 +

[libav-devel] [PATCH] changelog: misc typos and wording fixes

2011-06-18 Thread Diego Biurrun
--- Changelog | 16 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Changelog b/Changelog index 38f07b1..17a22b7 100644 --- a/Changelog +++ b/Changelog @@ -6,19 +6,19 @@ version : - E-AC-3 audio encoder - ac3enc: add channel coupling support -- floating-point

Re: [libav-devel] [PATCH 17/29] rawdec: make find_pix_fmt() non static.

2011-06-18 Thread Diego Biurrun
On Mon, Jun 13, 2011 at 11:23:57AM +0200, Anton Khirnov wrote: > From: Michael Niedermayer > > Signed-off-by: Michael Niedermayer > Signed-off-by: Anton Khirnov > --- > libavcodec/raw.h|1 + > libavcodec/rawdec.c |8 > 2 files changed, 5 insertions(+), 4 deletions(-) Is t

Re: [libav-devel] [PATCH] Announce Libav 0.7

2011-06-18 Thread Reinhard Tartler
On Sat, Jun 18, 2011 at 18:58:51 (CEST), Ronald S. Bultje wrote: > Hi, > > On Sat, Jun 18, 2011 at 9:28 AM, Reinhard Tartler wrote: >> +This release enables frame-based multithreaded encoding for a number of >> codecs, > > Decoding, not encoding! :-). of course, change locally -- Gruesse/greet

[libav-devel] [PATCH] H.264: Add x86 assembly for 10-bit weight/biweight H.264 functions.

2011-06-18 Thread Daniel Kang
Mainly ported from 8-bit H.264 weight/biweight. --- libavcodec/x86/Makefile |1 + libavcodec/x86/h264_weight_10bit.asm | 298 ++ libavcodec/x86/h264dsp_mmx.c | 61 +++ 3 files changed, 360 insertions(+), 0 deletions(-) create mode 10

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Måns Rullgård
Yusuke Nakamura writes: > 2011/6/19 Måns Rullgård > >> Yusuke Nakamura writes: >> >> > 2011/6/18 Måns Rullgård >> > >> >> Yusuke Nakamura writes: >> >> >> >> > This patch fixes my 10L of following. >> >> > >> >> >> http://git.libav.org/?p=libav.git;a=commitdiff;h=5f0bb0baefd506d684adfa1ad4259

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Yusuke Nakamura
2011/6/19 Måns Rullgård > Yusuke Nakamura writes: > > > 2011/6/18 Måns Rullgård > > > >> Yusuke Nakamura writes: > >> > >> > This patch fixes my 10L of following. > >> > > >> > http://git.libav.org/?p=libav.git;a=commitdiff;h=5f0bb0baefd506d684adfa1ad4259c65973b455e > >> > > >> > From f3c030eb

Re: [libav-devel] [PATCH] Announce Libav 0.7

2011-06-18 Thread Ronald S. Bultje
Hi, On Sat, Jun 18, 2011 at 9:28 AM, Reinhard Tartler wrote: > +This release enables frame-based multithreaded encoding for a number of > codecs, Decoding, not encoding! :-). Ronald ___ libav-devel mailing list libav-devel@libav.org https://lists.lib

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Måns Rullgård
Yusuke Nakamura writes: > 2011/6/18 Måns Rullgård > >> Yusuke Nakamura writes: >> >> > This patch fixes my 10L of following. >> > >> http://git.libav.org/?p=libav.git;a=commitdiff;h=5f0bb0baefd506d684adfa1ad4259c65973b455e >> > >> > From f3c030ebedabc9a17e377c6f91dc417e6578712b Mon Sep 17 00:00

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Yusuke Nakamura
2011/6/18 Måns Rullgård > Yusuke Nakamura writes: > > > This patch fixes my 10L of following. > > > http://git.libav.org/?p=libav.git;a=commitdiff;h=5f0bb0baefd506d684adfa1ad4259c65973b455e > > > > From f3c030ebedabc9a17e377c6f91dc417e6578712b Mon Sep 17 00:00:00 2001 > > From: Yusuke Nakamura

Re: [libav-devel] [PATCH] lavf: add a forgotten NULL check in convert_format_parameters().

2011-06-18 Thread Kostya
On Sat, Jun 18, 2011 at 05:27:22PM +0200, Anton Khirnov wrote: > --- > libavformat/utils.c |3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/libavformat/utils.c b/libavformat/utils.c > index e3485e6..81bc9b7 100644 > --- a/libavformat/utils.c > +++ b/libavformat/util

[libav-devel] [PATCH] lavf: add a forgotten NULL check in convert_format_parameters().

2011-06-18 Thread Anton Khirnov
--- libavformat/utils.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index e3485e6..81bc9b7 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -395,6 +395,9 @@ static AVDictionary *convert_format_parameters(AVForma

[libav-devel] [PATCH] Announce Libav 0.7

2011-06-18 Thread Reinhard Tartler
--- src/download | 26 +++--- src/index| 33 + 2 files changed, 44 insertions(+), 15 deletions(-) diff --git a/src/download b/src/download index 55c231a..6f57bb9 100644 --- a/src/download +++ b/src/download @@ -144,26 +144,22 @@ selected

[libav-devel] [PATCH 05/10] ffmpeg: use new avcodec_open2 and avformat_find_stream_info API.

2011-06-18 Thread Anton Khirnov
--- ffmpeg.c | 53 - 1 files changed, 28 insertions(+), 25 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index b284087..f9c52c9 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -298,6 +298,7 @@ typedef struct AVOutputStream { #endif int sws_flag

[libav-devel] [PATCH 09/10] lavc: add support for codec-specific defaults.

2011-06-18 Thread Anton Khirnov
--- libavcodec/avcodec.h |7 +++ libavcodec/internal.h |5 + libavcodec/options.c | 11 +++ 3 files changed, 23 insertions(+), 0 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index f1a176b..234116a 100644 --- a/libavcodec/avcodec.h +++ b/libavco

[libav-devel] [PATCH 08/10] lavc: make avcodec_alloc_context3 officially public.

2011-06-18 Thread Anton Khirnov
Deprecate avcodec_alloc_context/2. --- cmdutils.c |2 +- ffmpeg.c |2 +- ffserver.c |4 ++-- libavcodec/api-example.c |8 libavcodec/avcodec.h | 27 ++- libavcodec/motion-test.c |2 +-

[libav-devel] [PATCH 10/10] libmp3lame: use VBR mode by default.

2011-06-18 Thread Anton Khirnov
This makes output with defaults settings actually default. It's also the first test of codec-specific defaults. --- libavcodec/libmp3lame.c | 13 ++--- 1 files changed, 10 insertions(+), 3 deletions(-) diff --git a/libavcodec/libmp3lame.c b/libavcodec/libmp3lame.c index 68f1bc9..af21be

[libav-devel] [PATCH 07/10] lavc: remove a half-working attempt at different defaults for audio/video codecs.

2011-06-18 Thread Anton Khirnov
It should be replaced with proper per-codec defaults. --- libavcodec/options.c |2 +- tests/lavf-regression.sh |6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/options.c b/libavcodec/options.c index 545887a..a876ce0 100644 --- a/libavcodec/options.c

[libav-devel] [PATCH 02/10] lavf: add avformat_find_stream_info()

2011-06-18 Thread Anton Khirnov
It supports passing options to codecs. --- libavfilter/vsrc_movie.c |2 +- libavformat/avformat.h | 27 +++ libavformat/utils.c | 18 +- 3 files changed, 41 insertions(+), 6 deletions(-) diff --git a/libavfilter/vsrc_movie.c b/libavfilter/vsr

[libav-devel] [PATCH 06/10] cmdutils: replace opt_default with opt_default2() and remove set_context_opts

2011-06-18 Thread Anton Khirnov
--- cmdutils.c | 108 +--- cmdutils.h |3 -- 2 files changed, 1 insertions(+), 110 deletions(-) diff --git a/cmdutils.c b/cmdutils.c index b3c8e63..8295baa 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -49,9 +49,6 @@ #include #endif

[libav-devel] [PATCH 03/10] ac3dec: add a drc_scale private option

2011-06-18 Thread Anton Khirnov
Deprecate corresponding AVCodecContext option. This is the first test of decoder private options. --- libavcodec/ac3dec.c | 17 + libavcodec/ac3dec.h |2 ++ libavcodec/avcodec.h |5 - libavcodec/options.c |2 ++ libavcodec/version.h |3 +++ 5 files changed,

[libav-devel] [PATCH 04/10] ffplay: use new avcodec_open2 and avformat_find_stream_info API.

2011-06-18 Thread Anton Khirnov
--- cmdutils.c | 19 +++ cmdutils.h |5 + ffplay.c | 42 ++ 3 files changed, 46 insertions(+), 20 deletions(-) diff --git a/cmdutils.c b/cmdutils.c index 943a77c..b3c8e63 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -899,6 +899,

[libav-devel] [PATCH 01/10] lavc: introduce avcodec_open2() as a replacement for avcodec_open().

2011-06-18 Thread Anton Khirnov
Adds support for decoder-private options and makes setting other options simpler. --- ffprobe.c |2 +- ffserver.c |2 +- libavcodec/avcodec.h | 39 +++ libavcodec/mpegvideo_enc.c |2 +- libavcodec/utils.c

Re: [libav-devel] [libav-commits] H.264: Add x86 assembly for 10-bit MC Chroma H.264 functions.

2011-06-18 Thread Ronald S. Bultje
Hi, 2011/6/18 Måns Rullgård : > "Daniel Kang " writes: > >> Module: libav >> Branch: master >> Commit: f188a1e0ca12822fd6c607924169d678c7254838 >> >> Author:    Daniel Kang >> Committer: Ronald S. Bultje >> Date:      Sun Jun  5 18:33:23 2011 -0400 >> >> H.264: Add x86 assembly for 10-bit MC Ch

Re: [libav-devel] [PATCH] Fix build if yasm is not available.

2011-06-18 Thread Måns Rullgård
"Ronald S. Bultje" writes: > --- > libavcodec/x86/dsputil_mmx.c |4 +++- > 1 files changed, 3 insertions(+), 1 deletions(-) > > diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c > index b174b83..5c5ecb2 100644 > --- a/libavcodec/x86/dsputil_mmx.c > +++ b/libavcodec/x86

[libav-devel] [PATCH] Fix build if yasm is not available.

2011-06-18 Thread Ronald S. Bultje
--- libavcodec/x86/dsputil_mmx.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c index b174b83..5c5ecb2 100644 --- a/libavcodec/x86/dsputil_mmx.c +++ b/libavcodec/x86/dsputil_mmx.c @@ -2776,10 +2776,12 @@ void

Re: [libav-devel] [libav-commits] H.264: Add x86 assembly for 10-bit MC Chroma H.264 functions.

2011-06-18 Thread Måns Rullgård
"Daniel Kang " writes: > Module: libav > Branch: master > Commit: f188a1e0ca12822fd6c607924169d678c7254838 > > Author:Daniel Kang > Committer: Ronald S. Bultje > Date: Sun Jun 5 18:33:23 2011 -0400 > > H.264: Add x86 assembly for 10-bit MC Chroma H.264 functions. > > Mainly ported fro

Re: [libav-devel] [PATCH] H.264: Add x86 assembly for 10-bit MC Chroma H.264

2011-06-18 Thread Ronald S. Bultje
Hi, On Fri, Jun 17, 2011 at 10:47 PM, Loren Merritt wrote: > On Fri, 17 Jun 2011, Daniel Kang wrote: >> More of Jason's comments addressed. > > lgtm. Pushed. Ronald ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/lis

Re: [libav-devel] [PATCH] h264: drop some ugly casts

2011-06-18 Thread Ronald S. Bultje
Hi, On Sat, Jun 18, 2011 at 1:05 AM, Alex Converse wrote: > --- >  libavcodec/h264.c |    4 ++-- >  1 files changed, 2 insertions(+), 2 deletions(-) OK. Ronald ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo

Re: [libav-devel] [PATCH] flashsv: Add FATE test.

2011-06-18 Thread Måns Rullgård
Diego Biurrun writes: > --- > tests/fate.mak |2 + > tests/ref/fate/fsv1 | 79 > +++ > 2 files changed, 81 insertions(+), 0 deletions(-) > create mode 100644 tests/ref/fate/fsv1 > > This depends on > > http://samples.multimedia.cx/FLV/

[libav-devel] [PATCH] flashsv: Add FATE test.

2011-06-18 Thread Diego Biurrun
--- tests/fate.mak |2 + tests/ref/fate/fsv1 | 79 +++ 2 files changed, 81 insertions(+), 0 deletions(-) create mode 100644 tests/ref/fate/fsv1 This depends on http://samples.multimedia.cx/FLV/flash_screen/screen.flv getting added to t

Re: [libav-devel] [PATCH 1/2] more Changelog additions

2011-06-18 Thread Diego Biurrun
On Sat, Jun 18, 2011 at 10:55:19AM +0200, Reinhard Tartler wrote: > > --- a/Changelog > +++ b/Changelog > @@ -2,17 +2,21 @@ Entries are sorted chronologically from oldest to youngest > within each release, > > > -version : > +version 0.7: > > - E-AC-3 audio encoder > - ac3enc: add channel

Re: [libav-devel] [libav-commits] cmdutils: add opt_default2().

2011-06-18 Thread İsmail Dönmez
Hi; 2011/6/18 Måns Rullgård > Alex Converse writes: > > > On Thu, Jun 16, 2011 at 11:37 AM, Anton Khirnov wrote: > >> Module: libav > >> Branch: master > >> Commit: 9ba38229e5bd0cf6201a8206b2d8be6335f45f46 > >> > >> Author:Anton Khirnov > >> Committer: Anton Khirnov > >> Date: Wed M

Re: [libav-devel] [libav-commits] cmdutils: add opt_default2().

2011-06-18 Thread Måns Rullgård
Alex Converse writes: > On Thu, Jun 16, 2011 at 11:37 AM, Anton Khirnov wrote: >> Module: libav >> Branch: master >> Commit: 9ba38229e5bd0cf6201a8206b2d8be6335f45f46 >> >> Author:    Anton Khirnov >> Committer: Anton Khirnov >> Date:      Wed May 25 16:42:41 2011 +0200 >> >> cmdutils: add opt_

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Måns Rullgård
Yusuke Nakamura writes: > This patch fixes my 10L of following. > http://git.libav.org/?p=libav.git;a=commitdiff;h=5f0bb0baefd506d684adfa1ad4259c65973b455e > > From f3c030ebedabc9a17e377c6f91dc417e6578712b Mon Sep 17 00:00:00 2001 > From: Yusuke Nakamura > Date: Sun, 5 Jun 2011 01:28:43 +0900 >

Re: [libav-devel] [PATCH] mov: Fix empty edit detection.

2011-06-18 Thread Diego Biurrun
On Fri, Jun 17, 2011 at 10:00:49PM -0700, Alex Converse wrote: > On Fri, Jun 17, 2011 at 2:07 PM, Yusuke Nakamura > wrote: > > This patch fixes my 10L of following. > > http://git.libav.org/?p=libav.git;a=commitdiff;h=5f0bb0baefd506d684adfa1ad4259c65973b455e > > OK You mean "edit list detection"

[libav-devel] [PATCH 2/2] Add Release Notes for the 0.7 release

2011-06-18 Thread Reinhard Tartler
--- RELEASE | 52 1 files changed, 52 insertions(+), 0 deletions(-) create mode 100644 RELEASE diff --git a/RELEASE b/RELEASE new file mode 100644 index 000..970714f --- /dev/null +++ b/RELEASE @@ -0,0 +1,52 @@ +Release Notes +==

[libav-devel] [PATCH 1/2] more Changelog additions

2011-06-18 Thread Reinhard Tartler
--- Changelog |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/Changelog b/Changelog index 38f07b1..5b94f26 100644 --- a/Changelog +++ b/Changelog @@ -2,17 +2,21 @@ Entries are sorted chronologically from oldest to youngest within each release, releases are sorted fr