[libav-devel] [PATCH] regtest: fix wma tests

2011-05-09 Thread Mans Rullgard
This adds $DEC_OPTS to the wma decode commands, making tests pass on systems where the bitexact flag is needed. Signed-off-by: Mans Rullgard m...@mansr.com --- tests/codec-regression.sh |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/codec-regression.sh

Re: [libav-devel] [PATCH] regtest: fix wma tests

2011-05-09 Thread Luca Barbato
On 5/9/11 1:01 PM, Mans Rullgard wrote: This adds $DEC_OPTS to the wma decode commands, making tests pass on systems where the bitexact flag is needed. Signed-off-by: Mans Rullgardm...@mansr.com --- tests/codec-regression.sh |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Ok

Re: [libav-devel] [PATCH] Port SMPTE S302M audio decoder from FFmbc 0.3.

2011-05-09 Thread Diego Biurrun
On Thu, May 05, 2011 at 09:41:27AM -0700, Aℓex Converse wrote: On Thu, May 5, 2011 at 2:39 AM, Diego Biurrun di...@biurrun.de wrote: Please trim your quotes, thank you. Maybe if you sent a patch on top of the patch you hijacked there would be less to trim. For your perusal I attached the

Re: [libav-devel] [PATCH] discard cropping values in a consistent way

2011-05-09 Thread Diego Biurrun
On Mon, May 09, 2011 at 03:43:39PM +0200, Diego Biurrun wrote: On Thu, May 05, 2011 at 10:16:43PM +0200, Luca Barbato wrote: On 05/05/2011 05:49 PM, Vittorio Giovara wrote: ping! No more comments means the patch is ok and can be committed, right? :) Yes, but sadly I had been busy so

Re: [libav-devel] [PATCH] Port SMPTE S302M audio decoder from FFmbc 0.3.

2011-05-09 Thread Diego Biurrun
On Mon, May 09, 2011 at 03:34:03PM +0200, Diego Biurrun wrote: On Thu, May 05, 2011 at 09:41:27AM -0700, Aℓex Converse wrote: On Thu, May 5, 2011 at 2:39 AM, Diego Biurrun di...@biurrun.de wrote: Please trim your quotes, thank you. Maybe if you sent a patch on top of the patch you

Re: [libav-devel] [PATCH] discard cropping values in a consistent way

2011-05-09 Thread Luca Barbato
On 5/9/11 3:48 PM, Diego Biurrun wrote: On Mon, May 09, 2011 at 03:43:39PM +0200, Diego Biurrun wrote: On Thu, May 05, 2011 at 10:16:43PM +0200, Luca Barbato wrote: On 05/05/2011 05:49 PM, Vittorio Giovara wrote: ping! No more comments means the patch is ok and can be committed, right? :)

[libav-devel] [PATCH 1/2] ffmpeg.c: store per-output stream sws flags.

2011-05-09 Thread Anton Khirnov
--- ffmpeg.c | 16 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 2540a2e..0d5b976 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -245,8 +245,6 @@ static char *forced_key_frames = NULL; static float dts_delta_threshold = 10; -static

[libav-devel] [PATCH 2/2] ffmpeg.c: reset avoptions after each input/output file.

2011-05-09 Thread Anton Khirnov
This is consistent with how all the other options work. --- cmdutils.c |1 + ffmpeg.c |4 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/cmdutils.c b/cmdutils.c index 9da0722..f770c79 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -88,6 +88,7 @@ void uninit_opts(void)

[libav-devel] [PATCH] udp: Fix receiving RTP data over multicast

2011-05-09 Thread Martin Storsjö
Earlier, AVIO_RDWR was handled as READ, and all the checks for the AVIO_WRONLY flag explicitly meant the write-only case. When changed from old AVIO/URL contants to AVIO_FLAG in 59d96941f0285a5, these comparisons were updated incorrectly, by mapping checks for AVIO_WRONLY to checks for

[libav-devel] [PATCH] rtpproto: Remove an unused variable

2011-05-09 Thread Martin Storsjö
--- libavformat/rtpproto.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c index e1659ee..1340665 100644 --- a/libavformat/rtpproto.c +++ b/libavformat/rtpproto.c @@ -138,15 +138,13 @@ static int rtp_open(URLContext *h,

[libav-devel] [PATCH] mpegtsenc: Clear st-priv_data when freeing it

2011-05-09 Thread Martin Storsjö
If not cleared, the caller might try to free it. --- libavformat/mpegtsenc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index bf66aa0..55a16f7 100644 --- a/libavformat/mpegtsenc.c +++ b/libavformat/mpegtsenc.c @@

Re: [libav-devel] [PATCH] mpegtsenc: Clear st-priv_data when freeing it

2011-05-09 Thread Måns Rullgård
Martin Storsjö mar...@martin.st writes: If not cleared, the caller might try to free it. --- libavformat/mpegtsenc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index bf66aa0..55a16f7 100644 ---

[libav-devel] [PATCH 3/3] mpegaudiodec: group #includes more sanely

2011-05-09 Thread Mans Rullgard
--- libavcodec/mpegaudiodec.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index 0d26414..7fd6bd2 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -28,6 +28,7 @@ #include avcodec.h

[libav-devel] [PATCH 2/3] mpegaudio: remove #if 0 blocks

2011-05-09 Thread Mans Rullgard
Signed-off-by: Mans Rullgard m...@mansr.com --- libavcodec/mpegaudiodec.c | 55 - 1 files changed, 0 insertions(+), 55 deletions(-) diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index c18d752..0d26414 100644 ---

[libav-devel] [PATCH 1/3] mpegaudio: remove CONFIG_MPEGAUDIO_HP option

2011-05-09 Thread Mans Rullgard
The low quality mode is off by default and never tested. The high quality mode is also plenty fast enough. Signed-off-by: Mans Rullgard m...@mansr.com --- configure |3 --- libavcodec/Makefile |8 libavcodec/bfin/mathops.h | 10

Re: [libav-devel] [PATCH 1/2] ffmpeg.c: store per-output stream sws flags.

2011-05-09 Thread Luca Barbato
On 5/9/11 4:37 PM, Anton Khirnov wrote: --- ffmpeg.c | 16 1 files changed, 8 insertions(+), 8 deletions(-) Ok ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH 2/2] ffmpeg.c: reset avoptions after each input/output file.

2011-05-09 Thread Luca Barbato
On 5/9/11 4:37 PM, Anton Khirnov wrote: This is consistent with how all the other options work. Ok ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH] udp: Fix receiving RTP data over multicast

2011-05-09 Thread Luca Barbato
On 5/9/11 4:40 PM, Martin Storsjö wrote: This patch updates the flag comparisons to check for the same Ok ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH] rtpproto: Remove an unused variable

2011-05-09 Thread Luca Barbato
On 5/9/11 4:40 PM, Martin Storsjö wrote: --- libavformat/rtpproto.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) Ok ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH 1/3] mpegaudio: remove CONFIG_MPEGAUDIO_HP option

2011-05-09 Thread Luca Barbato
On 5/9/11 5:47 PM, Mans Rullgard wrote: The low quality mode is off by default and never tested. The high quality mode is also plenty fast enough. Signed-off-by: Mans Rullgardm...@mansr.com --- configure |3 --- libavcodec/Makefile |8

Re: [libav-devel] [PATCH] Port SMPTE S302M audio decoder from FFmbc 0.3.

2011-05-09 Thread Kieran Kunhya
Ignoring the header modification issues, -channels = ((h 14) 0x03) * 2 + 2; -id = (h 6) 0xff; -bits = ((h 4) 0x03) * 4 + 16; +channels = ((h 14) 0x0003) * 2 + 2; +id = (h 6) 0x00ff; +bits = ((h 4) 0x0003) * 4 + 16; Is

Re: [libav-devel] [PATCH] Port SMPTE S302M audio decoder from FFmbc 0.3.

2011-05-09 Thread Aℓex Converse
On Mon, May 9, 2011 at 7:02 AM, Diego Biurrun di...@biurrun.de wrote: On Mon, May 09, 2011 at 03:34:03PM +0200, Diego Biurrun wrote: On Thu, May 05, 2011 at 09:41:27AM -0700, Aℓex Converse wrote: On Thu, May 5, 2011 at 2:39 AM, Diego Biurrun di...@biurrun.de wrote: Please trim your quotes,

Re: [libav-devel] [PATCH] Port SMPTE S302M audio decoder from FFmbc 0.3.

2011-05-09 Thread Aℓex Converse
2011/5/9 Aℓex Converse aconve...@google.com: On Mon, May 9, 2011 at 7:02 AM, Diego Biurrun di...@biurrun.de wrote: On Mon, May 09, 2011 at 03:34:03PM +0200, Diego Biurrun wrote: On Thu, May 05, 2011 at 09:41:27AM -0700, Aℓex Converse wrote: On Thu, May 5, 2011 at 2:39 AM, Diego Biurrun

[libav-devel] [PATCH 01/18] h264: DSP'ize MBAFF loopfilter.

2011-05-09 Thread Ronald S. Bultje
--- libavcodec/h264_loopfilter.c | 144 +++--- libavcodec/h264dsp.c | 56 +++- libavcodec/h264dsp.h |4 + 3 files changed, 64 insertions(+), 140 deletions(-) diff --git a/libavcodec/h264_loopfilter.c

[libav-devel] [PATCH 02/18] Choose h264 chroma dc dequant function dynamically.

2011-05-09 Thread Ronald S. Bultje
From: Oskar Arvidsson os...@irock.se Needed for high bit depth h264 decoding. Signed-off-by: Ronald S. Bultje rsbul...@gmail.com --- libavcodec/dsputil.h |1 + libavcodec/h264.c | 29 - libavcodec/h264dsp.c |1 + libavcodec/h264dsp.h |1 +

[libav-devel] [PATCH 03/18] Add pixel formats for 9- and 10-bit yuv420p.

2011-05-09 Thread Ronald S. Bultje
From: Oskar Arvidsson os...@irock.se Also add support for these formats in libswscale. Needed for high bit depth h264 decoding. Signed-off-by: Ronald S. Bultje rsbul...@gmail.com --- libavcodec/utils.c|4 +++ libavutil/pixdesc.c | 46

[libav-devel] [PATCH 04/18] Preparatory patch for high bit depth h264 decoding support.

2011-05-09 Thread Ronald S. Bultje
From: Oskar Arvidsson os...@irock.se Signed-off-by: Ronald S. Bultje rsbul...@gmail.com --- libavcodec/h264dsp.c | 259 +- libavcodec/h264dsp_template.c | 285 + 2 files changed, 286 insertions(+), 258

[libav-devel] [PATCH 06/18] Move the functions in h264idct into a new file h264idct_template.c.

2011-05-09 Thread Ronald S. Bultje
From: Oskar Arvidsson os...@irock.se Preparatory patch for high bit depth h264 decoding support. Signed-off-by: Ronald S. Bultje rsbul...@gmail.com --- libavcodec/h264idct.c | 249 +--- libavcodec/h264idct_template.c | 278

[libav-devel] [PATCH 08/18] Preparatory patch for high bit depth h264 decoding support.

2011-05-09 Thread Ronald S. Bultje
From: Oskar Arvidsson os...@irock.se Signed-off-by: Ronald S. Bultje rsbul...@gmail.com --- libavcodec/h264dsp_template.c | 119 ++--- 1 files changed, 75 insertions(+), 44 deletions(-) diff --git a/libavcodec/h264dsp_template.c

[libav-devel] [PATCH 10/18] Template h264idct_template.c with respect to pixel size, etc.

2011-05-09 Thread Ronald S. Bultje
From: Oskar Arvidsson os...@irock.se Preparatory patch for high bit depth h264 decoding support. Signed-off-by: Ronald S. Bultje rsbul...@gmail.com --- libavcodec/h264idct_template.c | 109 +++ 1 files changed, 64 insertions(+), 45 deletions(-) diff --git

[libav-devel] [PATCH 12/18] Make the h264 loop filter bit depth aware.

2011-05-09 Thread Ronald S. Bultje
From: Oskar Arvidsson os...@irock.se Preparatory patch for high bit depth h264 decoding support. Signed-off-by: Ronald S. Bultje rsbul...@gmail.com --- libavcodec/h264_loopfilter.c | 30 ++ 1 files changed, 18 insertions(+), 12 deletions(-) diff --git

[libav-devel] [PATCH 14/18] Add support for higher QP values in h264.

2011-05-09 Thread Ronald S. Bultje
From: Oskar Arvidsson os...@irock.se In high bit depth, the QP values may now be up to (51 + 6*(bit_depth-8)). Preparatory patch for high bit depth h264 decoding support. Signed-off-by: Ronald S. Bultje rsbul...@gmail.com --- libavcodec/h264.c | 19 +++

[libav-devel] [PATCH 18/18] fate: add 10-bit H264 tests.

2011-05-09 Thread Ronald S. Bultje
--- tests/fate/h264.mak| 14 ++ .../h264-conformance-frext-pph10i1_panasonic_a | 10 ++ .../h264-conformance-frext-pph10i2_panasonic_a | 10 ++ .../h264-conformance-frext-pph10i3_panasonic_a | 10 ++

[libav-devel] [PATCH] rtsp: Only do keepalive using GET_PARAMETER if the server supports it

2011-05-09 Thread Martin Storsjö
This is more like what VLC does. If the server doesn't mention supporting GET_PARAMETER in response to an OPTIONS request, VLC doesn't send any keepalive requests at all. After this patch, libavformat will still send OPTIONS keepalives if GET_PARAMETER isn't explicitly said to be supported. Some

[libav-devel] [PATCH 01/18] ffmpeg.c: fix seting of decode_interrupt_cb().

2011-05-09 Thread Anton Khirnov
From: Michael Niedermayer michae...@gmx.at Signed-off-by: Anton Khirnov an...@khirnov.net --- ffmpeg.c |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index bb64f7c..af6787c 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2463,11 +2463,12 @@ static int

[libav-devel] [PATCH 11/18] ffmpeg: fix negative verbosity.

2011-05-09 Thread Anton Khirnov
From: Michael Niedermayer michae...@gmx.at Signed-off-by: Anton Khirnov an...@khirnov.net --- ffmpeg.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 237c4cf..0e693fb 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1385,7 +1385,7 @@ static void

[libav-devel] [PATCH 18/18] ffmpeg: call pre_process_video_frame() only if decoding is needed

2011-05-09 Thread Anton Khirnov
From: Stefano Sabatini stefano.sabatini-l...@poste.it In output_packet(), move the pre_process_video_frame() call inside the if (ist-decoding_needed) { } block. This way pre_process_video_frame() is not called when stream-copy has been selected. Also simplify. Signed-off-by: Stefano Sabatini

[libav-devel] [PATCH 17/18] ffmpeg: reformat resample condition code in transcode()

2011-05-09 Thread Anton Khirnov
From: Stefano Sabatini stefano.sabatini-l...@poste.it Signed-off-by: Stefano Sabatini stefano.sabatini-l...@poste.it Signed-off-by: Anton Khirnov an...@khirnov.net --- ffmpeg.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index

[libav-devel] [PATCH 14/18] ffmpeg: improve reporting if size/pixel format changes

2011-05-09 Thread Anton Khirnov
From: Stefano Sabatini stefano.sabatini-l...@poste.it Use av_log() rather than fprintf(stderr, ...), and show information related to the previous size/pixel format configuration. Consistent with the corresponding message issued in case of audio configuration change. Signed-off-by: Stefano

[libav-devel] [PATCH 16/18] ffmpeg: factorize resampling condition check in do_video_out()

2011-05-09 Thread Anton Khirnov
From: Stefano Sabatini stefano.sabatini-l...@poste.it Simplify and improve readability. Signed-off-by: Stefano Sabatini stefano.sabatini-l...@poste.it Signed-off-by: Anton Khirnov an...@khirnov.net --- ffmpeg.c | 15 +++ 1 files changed, 7 insertions(+), 8 deletions(-) diff --git

[libav-devel] [PATCH 13/18] ffmpeg: remove unused fields AVOutputStream.original_width/height

2011-05-09 Thread Anton Khirnov
From: Stefano Sabatini stefano.sabatini-l...@poste.it Signed-off-by: Stefano Sabatini stefano.sabatini-l...@poste.it Signed-off-by: Anton Khirnov an...@khirnov.net --- ffmpeg.c |7 --- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index

Re: [libav-devel] [PATCH 01/18] ffmpeg.c: fix seting of decode_interrupt_cb().

2011-05-09 Thread Måns Rullgård
Anton Khirnov an...@khirnov.net writes: From: Michael Niedermayer michae...@gmx.at Signed-off-by: Anton Khirnov an...@khirnov.net --- ffmpeg.c |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index bb64f7c..af6787c 100644 --- a/ffmpeg.c

Re: [libav-devel] [PATCH 03/18] cmdutils: remove list_fmts(), simplify

2011-05-09 Thread Måns Rullgård
Anton Khirnov an...@khirnov.net writes: From: Stefano Sabatini stefano.sabatini-l...@poste.it The function was only used in opt_sample_fmt() for listing the sample formats. Move list_fmts() functionality directly into opt_sample_fmt(). Also fix the warning: ffmpeg.c: In function

Re: [libav-devel] [PATCH 05/18] Increase ffmpeg video encoding buffer size to permit encoding of DPX images

2011-05-09 Thread Måns Rullgård
Anton Khirnov an...@khirnov.net writes: From: Peter Ross pr...@xvid.org The header generated by the DPX encoder is 1664 bytes. Signed-off-by: Anton Khirnov an...@khirnov.net --- ffmpeg.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c

Re: [libav-devel] [PATCH 13/18] ffmpeg: remove unused fields AVOutputStream.original_width/height

2011-05-09 Thread Måns Rullgård
Anton Khirnov an...@khirnov.net writes: From: Stefano Sabatini stefano.sabatini-l...@poste.it Signed-off-by: Stefano Sabatini stefano.sabatini-l...@poste.it Signed-off-by: Anton Khirnov an...@khirnov.net --- ffmpeg.c |7 --- 1 files changed, 0 insertions(+), 7 deletions(-) Looks

Re: [libav-devel] [PATCH 07/18] ffmpeg.c: fix segfault in print_report()

2011-05-09 Thread Måns Rullgård
Anton Khirnov an...@khirnov.net writes: From: Michael Niedermayer michae...@gmx.at Signed-off-by: Anton Khirnov an...@khirnov.net --- ffmpeg.c | 13 ++--- 1 files changed, 6 insertions(+), 7 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 016eeb4..fce5843 100644 ---

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

2011-05-09 Thread Anton Khirnov
--- libavcodec/alacenc.c |4 +- libavcodec/avcodec.h | 35 - libavcodec/flacenc.c | 102 ++-- libavcodec/lpc.c | 12 +++--- libavcodec/lpc.h | 17 +++- libavcodec/options.c | 16 +---

[libav-devel] iOS/arm-macosx fixes

2011-05-09 Thread Luca Barbato
I tried to build current libav for ios and beside the know bug in the gas-preprocessor (any per wizard willing to help fixing it?) there is a symbol not marked with X(). Patch attached (since I hadn't configured macosx sendmail properly apparently). lu From

Re: [libav-devel] [PATCH] Add missing CONFIG_AVFILTER check.

2011-05-09 Thread Anton Khirnov
On Sun, 1 May 2011 12:03:20 +0900, Takashi Mochizuki mo...@da2.so-net.ne.jp wrote: Fix configure --disable-avfilter issue. --- ffmpeg.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 050fa98..ed0dc34 100644 --- a/ffmpeg.c +++

Re: [libav-devel] [PATCH 02/18] Add a dummy option -i to ffplay so that it is easy to switch between ffmpeg -i file and ffplay -i file.

2011-05-09 Thread Reinhard Tartler
On Mon, May 09, 2011 at 19:49:32 (CEST), Anton Khirnov wrote: From: Benjamin Larsson benja...@southpole.se Signed-off-by: Michael Niedermayer michae...@gmx.at Signed-off-by: Anton Khirnov an...@khirnov.net --- cmdutils.c |2 ++ cmdutils.h |1 + ffplay.c |1 + 3 files

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

2011-05-09 Thread Justin Ruggles
On 05/09/2011 03:14 PM, Anton Khirnov wrote: --- libavcodec/alacenc.c |4 +- libavcodec/avcodec.h | 35 - libavcodec/flacenc.c | 102 ++-- libavcodec/lpc.c | 12 +++--- libavcodec/lpc.h | 17 +++-

Re: [libav-devel] iOS/arm-macosx fixes

2011-05-09 Thread Måns Rullgård
Luca Barbato lu_z...@gentoo.org writes: Subject: [PATCH] arm: properly mark external symbol call Mark memset using X() in order to unbreak macosx building --- libavcodec/arm/ac3dsp_armv6.S |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

Re: [libav-devel] [PATCH 01/18] ffmpeg.c: fix seting of decode_interrupt_cb().

2011-05-09 Thread Luca Barbato
On 5/9/11 7:49 PM, Anton Khirnov wrote: From: Michael Niedermayermichae...@gmx.at Probably we could just remove the whole [q] read_key thing. The patch seems a bit frail IMHO. Signed-off-by: Anton Khirnovan...@khirnov.net --- ffmpeg.c |7 --- 1 files changed, 4 insertions(+), 3

Re: [libav-devel] [PATCH 07/18] ffmpeg.c: fix segfault in print_report()

2011-05-09 Thread Luca Barbato
On 5/9/11 7:49 PM, Anton Khirnov wrote: From: Michael Niedermayermichae...@gmx.at Signed-off-by: Anton Khirnovan...@khirnov.net I'd call it ffmpeg: factorize quality calculation Calculate quality value once per stream in print_report() lu ___

Re: [libav-devel] [PATCH 01/18] h264: DSP'ize MBAFF loopfilter.

2011-05-09 Thread Luca Barbato
On 5/9/11 6:52 PM, Ronald S. Bultje wrote: --- libavcodec/h264_loopfilter.c | 144 +++--- libavcodec/h264dsp.c | 56 +++- libavcodec/h264dsp.h |4 + 3 files changed, 64 insertions(+), 140 deletions(-) Looks ok I think.

Re: [libav-devel] [PATCH] rtsp: Only do keepalive using GET_PARAMETER if the server supports it

2011-05-09 Thread Ronald S. Bultje
Hi, On Mon, May 9, 2011 at 1:29 PM, Martin Storsjö mar...@martin.st wrote: This is more like what VLC does. If the server doesn't mention supporting GET_PARAMETER in response to an OPTIONS request, VLC doesn't send any keepalive requests at all. After this patch, libavformat will still send

Re: [libav-devel] [PATCH 2/3] mpegaudio: remove #if 0 blocks

2011-05-09 Thread Ronald S. Bultje
Hi, On Mon, May 9, 2011 at 11:47 AM, Mans Rullgard m...@mansr.com wrote: Signed-off-by: Mans Rullgard m...@mansr.com ---  libavcodec/mpegaudiodec.c |   55 -  1 files changed, 0 insertions(+), 55 deletions(-) OK. Ronald

Re: [libav-devel] [PATCH 3/3] mpegaudiodec: group #includes more sanely

2011-05-09 Thread Ronald S. Bultje
Hi, On Mon, May 9, 2011 at 11:47 AM, Mans Rullgard m...@mansr.com wrote: ---  libavcodec/mpegaudiodec.c |    3 +--  1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index 0d26414..7fd6bd2 100644 ---

Re: [libav-devel] [PATCH] discard cropping values in a consistent way

2011-05-09 Thread Ronald S. Bultje
Hi, On Mon, May 9, 2011 at 9:48 AM, Diego Biurrun di...@biurrun.de wrote: On Mon, May 09, 2011 at 03:43:39PM +0200, Diego Biurrun wrote: On Thu, May 05, 2011 at 10:16:43PM +0200, Luca Barbato wrote: On 05/05/2011 05:49 PM, Vittorio Giovara wrote: ping! No more comments means the patch

Re: [libav-devel] [PATCH 07/18] ffmpeg.c: fix segfault in print_report()

2011-05-09 Thread Ronald S. Bultje
Hi, 2011/5/9 Måns Rullgård m...@mansr.com: Anton Khirnov an...@khirnov.net writes: From: Michael Niedermayer michae...@gmx.at Signed-off-by: Anton Khirnov an...@khirnov.net ---  ffmpeg.c |   13 ++---  1 files changed, 6 insertions(+), 7 deletions(-) diff --git a/ffmpeg.c

Re: [libav-devel] [PATCH 02/18] Add a dummy option -i to ffplay so that it is easy to switch between ffmpeg -i file and ffplay -i file.

2011-05-09 Thread Ronald S. Bultje
Hi, On Mon, May 9, 2011 at 1:49 PM, Anton Khirnov an...@khirnov.net wrote: From: Benjamin Larsson benja...@southpole.se @@ -279,6 +279,8 @@ unknown_opt:                     fprintf(stderr, %s: failed to set value '%s' for option '%s'\n, argv[0], arg, opt);                     exit(1);    

[libav-devel] [Announcement] FFmtech board of directors election

2011-05-09 Thread Benjamin Larsson
Hi, it's time to elect a new board for the FFmtech foundation. If you want to candidate or participate in electing the new board then please respond to this email. To be eligible for this you must fulfil the following. People who had svn accounts and were active in the last year are allowed to

Re: [libav-devel] [PATCH 11/18] ffmpeg: fix negative verbosity.

2011-05-09 Thread Ronald S. Bultje
Hi, On Mon, May 9, 2011 at 1:49 PM, Anton Khirnov an...@khirnov.net wrote: From: Michael Niedermayer michae...@gmx.at Signed-off-by: Anton Khirnov an...@khirnov.net ---  ffmpeg.c |    4 ++--  1 files changed, 2 insertions(+), 2 deletions(-) OK. Ronald

Re: [libav-devel] [PATCH 09/18] cmdutils: add OPT_INT check in parse_number_or_die()

2011-05-09 Thread Aℓex Converse
On Mon, May 9, 2011 at 10:49 AM, Anton Khirnov an...@khirnov.net wrote: From: Stefano Sabatini stefano.sabatini-l...@poste.it Check that the value passed for an OPT_INT option is an int, fail otherwise. Signed-off-by: Anton Khirnov an...@khirnov.net ---  cmdutils.c |    2 ++  1 files

Re: [libav-devel] [PATCH] Add an aac sample which uses LTP to fate-aac.

2011-05-09 Thread Ronald S. Bultje
Hi, 2011/4/26 Måns Rullgård m...@mansr.com: Justin Ruggles justin.rugg...@gmail.com writes: --- Sample and reference uploaded to fate-suite.libav.org today. My samples will not be updated until tomorrow at the earliest.  Pushing before I update will be rather pointless.  I'll let you know

Re: [libav-devel] [PATCH] Add an aac sample which uses LTP to fate-aac.

2011-05-09 Thread Måns Rullgård
Ronald S. Bultje rsbul...@gmail.com writes: Hi, 2011/4/26 Måns Rullgård m...@mansr.com: Justin Ruggles justin.rugg...@gmail.com writes: --- Sample and reference uploaded to fate-suite.libav.org today. My samples will not be updated until tomorrow at the earliest.  Pushing before I

Re: [libav-devel] [PATCH 10/18] ffmpeg: use parse_number_and_die() when it makes sense

2011-05-09 Thread Stefano Sabatini
On date Monday 2011-05-09 18:06:51 -0400, Ronald S. Bultje encoded: Hi, On Mon, May 9, 2011 at 1:49 PM, Anton Khirnov an...@khirnov.net wrote: -static void opt_qscale(const char *arg) +static int opt_qscale(const char *opt, const char *arg)  { -    video_qscale = atof(arg); -    if

Re: [libav-devel] [PATCH 1/6] In libx264 wrapper, add -preset and -tune options (cherry picked from commit 0140d3f0921e5cbb6ea8706acb0307f7ff57a133)

2011-05-09 Thread Aℓex Converse
On Wed, Apr 27, 2011 at 10:49 PM, Anton Khirnov an...@khirnov.net wrote: On Wed, 20 Apr 2011 15:53:48 -0700, Alex Converse alex.conve...@gmail.com wrote: diff --git a/cmdutils.c b/cmdutils.c index f1cbd55..4aef03d 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -361,8 +361,9 @@ void

Re: [libav-devel] [PATCH 11/18] ffmpeg: fix negative verbosity.

2011-05-09 Thread Luca Barbato
On 5/9/11 7:49 PM, Anton Khirnov wrote: From: Michael Niedermayermichae...@gmx.at Signed-off-by: Anton Khirnovan...@khirnov.net Why verbosity should be negative? If it isn't supposed to be clip the value on input =| lu ___ libav-devel mailing

Re: [libav-devel] [PATCH 10/18] ffmpeg: use parse_number_and_die() when it makes sense

2011-05-09 Thread Ronald S. Bultje
Hi, On Mon, May 9, 2011 at 7:09 PM, Stefano Sabatini stefano.sabatini-l...@poste.it wrote: On date Monday 2011-05-09 18:06:51 -0400, Ronald S. Bultje encoded: Hi, On Mon, May 9, 2011 at 1:49 PM, Anton Khirnov an...@khirnov.net wrote: -static void opt_qscale(const char *arg) +static int

Re: [libav-devel] [PATCH 11/18] ffmpeg: fix negative verbosity.

2011-05-09 Thread Måns Rullgård
Luca Barbato lu_z...@gentoo.org writes: On 5/9/11 7:49 PM, Anton Khirnov wrote: From: Michael Niedermayermichae...@gmx.at Signed-off-by: Anton Khirnovan...@khirnov.net Why verbosity should be negative? If it isn't supposed to be clip the value on input =| -v -1 is generally quieter than

[libav-devel] [PATCH] ffmpeg: Simplify decode loop condition to not use next_pts

2011-05-09 Thread Alexander Strange
--- ffmpeg.c | 15 --- 1 files changed, 8 insertions(+), 7 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index bb64f7c..088b8e4 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1423,7 +1423,7 @@ static int output_packet(AVInputStream *ist, int ist_index, AVFormatContext *os;