Re: [libav-devel] [PATCH 6/6] fmtconvert: port float_to_int16_interleave() 2-channel x86 inline asm to yasm

2011-10-09 Thread Jason Garrett-Glaser
On Sun, Oct 9, 2011 at 9:48 PM, Justin Ruggles wrote: > --- >  libavcodec/x86/fmtconvert.asm   |   54 ++ >  libavcodec/x86/fmtconvert_mmx.c |   69 +- >  2 files changed, 63 insertions(+), 60 deletions(-) > > diff --git a/libavcodec/x8

Re: [libav-devel] [PATCH 01/15] AVOptions: split av_set_string3 into opt type-specific functions

2011-10-09 Thread Anton Khirnov
ping. -- Anton Khirnov ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH] dnxhddec: handle cid change in bitstream.

2011-10-09 Thread Anton Khirnov
On Thu, 6 Oct 2011 13:04:14 -0700, Alex Converse wrote: > From: Baptiste Coudurier > > --- > libavcodec/dnxhddec.c | 16 +++- > 1 files changed, 11 insertions(+), 5 deletions(-) > Looks fine. -- Anton Khirnov ___ libav-devel maili

[libav-devel] [PATCH 2/2] libx264: support yuv422/444 output.

2011-10-09 Thread Anton Khirnov
--- configure|4 ++-- libavcodec/libx264.c | 24 +++- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 22735e7..b7903b2 100755 --- a/configure +++ b/configure @@ -2905,8 +2905,8 @@ enabled libvpx && { enabled

[libav-devel] [PATCH 1/2] sws: support yuv444p9/10 output.

2011-10-09 Thread Anton Khirnov
--- libswscale/utils.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libswscale/utils.c b/libswscale/utils.c index 4096574..cfe4be9 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -131,10 +131,10 @@ const static FormatEntry format_entries[PIX_FMT_NB] =

[libav-devel] [PATCH 6/6] fmtconvert: port float_to_int16_interleave() 2-channel x86 inline asm to yasm

2011-10-09 Thread Justin Ruggles
--- libavcodec/x86/fmtconvert.asm | 54 ++ libavcodec/x86/fmtconvert_mmx.c | 69 +- 2 files changed, 63 insertions(+), 60 deletions(-) diff --git a/libavcodec/x86/fmtconvert.asm b/libavcodec/x86/fmtconvert.asm index 734a7f6..06

[libav-devel] [PATCH 4/6] fmtconvert: check compile-time x86 instruction set flags

2011-10-09 Thread Justin Ruggles
--- libavcodec/x86/fmtconvert_mmx.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/x86/fmtconvert_mmx.c b/libavcodec/x86/fmtconvert_mmx.c index 949dc97..6371a89 100644 --- a/libavcodec/x86/fmtconvert_mmx.c +++ b/libavcodec/x86/fmtconvert_mmx.c @@ -208,19

[libav-devel] [PATCH 5/6] fmtconvert: port int32_to_float_fmul_scalar() x86 inline asm to yasm

2011-10-09 Thread Justin Ruggles
--- libavcodec/x86/dsputil_yasm.asm |8 - libavcodec/x86/fmtconvert.asm | 46 ++ libavcodec/x86/fmtconvert_mmx.c | 59 -- libavutil/x86/x86util.asm | 12 4 files changed, 65 insertions(+), 60 deletions(-

[libav-devel] [PATCH 3/6] fmtconvert: port float_to_int16() x86 inline asm to yasm

2011-10-09 Thread Justin Ruggles
--- libavcodec/x86/fmtconvert.asm | 42 ++ libavcodec/x86/fmtconvert_mmx.c | 89 ++- 2 files changed, 55 insertions(+), 76 deletions(-) diff --git a/libavcodec/x86/fmtconvert.asm b/libavcodec/x86/fmtconvert.asm index f85ecfe..797589b 10064

[libav-devel] [PATCH 1/6] fmtconvert: fix and extend documentation for float_interleave()

2011-10-09 Thread Justin Ruggles
--- libavcodec/fmtconvert.h | 10 +- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/libavcodec/fmtconvert.h b/libavcodec/fmtconvert.h index d774113..1b53401 100644 --- a/libavcodec/fmtconvert.h +++ b/libavcodec/fmtconvert.h @@ -70,7 +70,15 @@ typedef struct FmtConvertCont

[libav-devel] [PATCH 2/6] fmtconvert: use mova instead of defining a new macro

2011-10-09 Thread Justin Ruggles
--- libavcodec/x86/fmtconvert.asm | 74 +++-- 1 files changed, 34 insertions(+), 40 deletions(-) diff --git a/libavcodec/x86/fmtconvert.asm b/libavcodec/x86/fmtconvert.asm index efab87d..f85ecfe 100644 --- a/libavcodec/x86/fmtconvert.asm +++ b/libavcodec/x86/

Re: [libav-devel] [PATCH] mpeg4dec: use unsigned type for startcode in ff_mpeg4_decode_picture_header

2011-10-09 Thread Janne Grunau
On Sun, Oct 09, 2011 at 11:23:47PM +0100, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- > libavcodec/mpeg4videodec.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c > index 0d061ac..cd7de73 100644

[libav-devel] [PATCH] mpeg4dec: use unsigned type for startcode in ff_mpeg4_decode_picture_header

2011-10-09 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- libavcodec/mpeg4videodec.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c index 0d061ac..cd7de73 100644 --- a/libavcodec/mpeg4videodec.c +++ b/libavcodec/mpeg4videodec.c @@ -2101,7

Re: [libav-devel] [PATCH 4/5] mpeg124: use sign_extend() function

2011-10-09 Thread Måns Rullgård
Janne Grunau writes: >> static inline int mpeg1_decode_block_intra(MpegEncContext *s, DCTELEM >> *block, int n) >> diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c >> index 0d061ac..cd7de73 100644 >> --- a/libavcodec/mpeg4videodec.c >> +++ b/libavcodec/mpeg4videodec.c >> @@

Re: [libav-devel] [PATCH 5/5] 4xm: fix signed overflow

2011-10-09 Thread Janne Grunau
On Sun, Oct 09, 2011 at 08:40:02PM +0100, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- > libavcodec/4xm.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c > index 9215789..847ebce 100644 > --- a/libavcodec/4xm.c > +++

Re: [libav-devel] [PATCH 4/5] mpeg124: use sign_extend() function

2011-10-09 Thread Janne Grunau
On Sun, Oct 09, 2011 at 08:40:01PM +0100, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- > libavcodec/ituh263dec.c|5 ++--- > libavcodec/ituh263enc.c|5 ++--- > libavcodec/mpeg12.c|6 ++ > libavcodec/mpeg4videodec.c |2 +- > 4 files changed, 7 insert

Re: [libav-devel] [PATCH 3/5] ac3dec: use get_sbits() instead of manually sign-extending

2011-10-09 Thread Janne Grunau
On Sun, Oct 09, 2011 at 08:40:00PM +0100, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- > libavcodec/ac3dec.c |4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c > index 5046a5c..4b23874 100644 > --- a/libavcodec/

Re: [libav-devel] [PATCH 2/5] mpegvideo_enc: fix a signed overflow

2011-10-09 Thread Janne Grunau
On Sun, Oct 09, 2011 at 08:39:59PM +0100, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- > libavcodec/mpegvideo_enc.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c > index cad267b..706a93b 100644

Re: [libav-devel] [PATCH] wmavoice: fix a signed overflow

2011-10-09 Thread Janne Grunau
On Sun, Oct 09, 2011 at 10:54:14PM +0100, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- > libavcodec/wmavoice.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/libavcodec/wmavoice.c b/libavcodec/wmavoice.c > index cff3f5f..3b805ac 100644 > --- a/libavco

[libav-devel] [PATCH] wmavoice: fix a signed overflow

2011-10-09 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- libavcodec/wmavoice.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/wmavoice.c b/libavcodec/wmavoice.c index cff3f5f..3b805ac 100644 --- a/libavcodec/wmavoice.c +++ b/libavcodec/wmavoice.c @@ -1085,7 +1085,7 @@ static void aw

[libav-devel] [PATCH 1/5] motion_est: make MotionExtContext.map_generation unsigned

2011-10-09 Thread Mans Rullgard
The way this value is used, it should be an unsigned type. While the numerical value has no meaning, unsigned wraparound is relied upon. Signed-off-by: Mans Rullgard --- libavcodec/motion_est.c |2 +- libavcodec/motion_est_template.c | 36 ++-- liba

[libav-devel] [PATCH 4/5] mpeg124: use sign_extend() function

2011-10-09 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- libavcodec/ituh263dec.c|5 ++--- libavcodec/ituh263enc.c|5 ++--- libavcodec/mpeg12.c|6 ++ libavcodec/mpeg4videodec.c |2 +- 4 files changed, 7 insertions(+), 11 deletions(-) diff --git a/libavcodec/ituh263dec.c b/libavcodec/i

[libav-devel] [PATCH 5/5] 4xm: fix signed overflow

2011-10-09 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- libavcodec/4xm.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c index 9215789..847ebce 100644 --- a/libavcodec/4xm.c +++ b/libavcodec/4xm.c @@ -277,7 +277,7 @@ static void init_mv(FourXContext *f){

[libav-devel] [PATCH 3/5] ac3dec: use get_sbits() instead of manually sign-extending

2011-10-09 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- libavcodec/ac3dec.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 5046a5c..4b23874 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -505,9 +505,9 @@ static void ac3_decode_t

[libav-devel] [PATCH 2/5] mpegvideo_enc: fix a signed overflow

2011-10-09 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- libavcodec/mpegvideo_enc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index cad267b..706a93b 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/libavcodec/mpegvideo_enc.c @@ -2023,7

Re: [libav-devel] [PATCH 1/3] new interrupt callback interface, that works per URLContext instead of globally

2011-10-09 Thread Nicolas George
L'octidi 18 vendémiaire, an CCXX, aviad rozenhek a écrit : > I think the proper way to solve this is to explicitly model nested > URLContexts in the API. > in this way, the demuxer could ask the inner-most URLContext if it should be > aborted Luca and me discussed something about it around 2011-03

[libav-devel] [PATCH] golomb: fix get_[us]e_golomb() with >15 value bits

2011-10-09 Thread Mans Rullgard
This allows reading exp-golomb codes with up to MIN_CACHE_BITS-1 leading zeros. The minimum value of MIN_CACHE_BITS is 25. Longer codes will still fail in unpredictable ways. Signed-off-by: Mans Rullgard --- libavcodec/golomb.h | 31 ++- 1 files changed, 22 insert

Re: [libav-devel] [PATCH] fate: run avconv with -nostats flag

2011-10-09 Thread Janne Grunau
On Sun, Oct 09, 2011 at 04:30:28PM +0100, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- > tests/fate-run.sh |2 +- > tests/regression-funcs.sh |2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/fate-run.sh b/tests/fate-run.sh > index 1bab

Re: [libav-devel] [PATCH 3/6] crc: fix signed overflow

2011-10-09 Thread Ronald S. Bultje
Hi, 2011/10/9 Måns Rullgård : > Mans Rullgard writes: > >> This fixes a signed overflow from i << 24 when i == 255 by >> making i unsigned.  The result of the shift is already >> assigned to an variable of unsigned type. >> >> Signed-off-by: Mans Rullgard >> --- >>  libavutil/crc.c |    2 +- >>

Re: [libav-devel] [PATCH 3/6] crc: fix signed overflow

2011-10-09 Thread Måns Rullgård
Mans Rullgard writes: > This fixes a signed overflow from i << 24 when i == 255 by > making i unsigned. The result of the shift is already > assigned to an variable of unsigned type. > > Signed-off-by: Mans Rullgard > --- > libavutil/crc.c |2 +- > 1 files changed, 1 insertions(+), 1 delet

[libav-devel] [PATCH] fate: run avconv with -nostats flag

2011-10-09 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- tests/fate-run.sh |2 +- tests/regression-funcs.sh |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 1babcc8..07cfe74 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -50,7 +5

Re: [libav-devel] [PATCH] [WIP] yuv2planeX10 SIMD

2011-10-09 Thread Ronald S. Bultje
Hi, On Sun, Oct 9, 2011 at 8:21 AM, Kieran Kunhya wrote: > On Sun, Oct 9, 2011 at 12:42 PM, Kieran Kunhya wrote: >> On Sun, Oct 9, 2011 at 5:55 AM, Ronald S. Bultje wrote: >>> On Sat, Oct 8, 2011 at 9:46 PM, Ronald S. Bultje wrote: On Sat, Oct 8, 2011 at 9:44 PM, Ronald S. Bultje w

Re: [libav-devel] [PATCH] [WIP] yuv2planeX10 SIMD

2011-10-09 Thread Kieran Kunhya
On Sun, Oct 9, 2011 at 12:42 PM, Kieran Kunhya wrote: > On Sun, Oct 9, 2011 at 5:55 AM, Ronald S. Bultje wrote: >> Hi, >> >> On Sat, Oct 8, 2011 at 9:46 PM, Ronald S. Bultje wrote: >>> On Sat, Oct 8, 2011 at 9:44 PM, Ronald S. Bultje wrote: On Sat, Oct 8, 2011 at 3:20 PM, Kieran Kunhya >

Re: [libav-devel] [PATCH 5/5] doc/avconv: add forgotten output/per-stream info to -filter

2011-10-09 Thread Janne Grunau
On Sun, Oct 09, 2011 at 04:00:43PM +0200, Anton Khirnov wrote: > --- > doc/avconv.texi |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/doc/avconv.texi b/doc/avconv.texi > index 74e9e77..0abcc9d 100644 > --- a/doc/avconv.texi > +++ b/doc/avconv.texi > @@ -186,7 +186,

Re: [libav-devel] [PATCH 3/5] avconv: in output_packet() don't set decoded_data_size for video.

2011-10-09 Thread Janne Grunau
On Sun, Oct 09, 2011 at 04:00:41PM +0200, Anton Khirnov wrote: > It's only used for audio. > --- > avconv.c |1 - > 1 files changed, 0 insertions(+), 1 deletions(-) > > diff --git a/avconv.c b/avconv.c > index d2cb69f..a5548ec 100644 > --- a/avconv.c > +++ b/avconv.c > @@ -1600,7 +1600,6 @@ s

Re: [libav-devel] [PATCH 2/5] avconv: remove pointless always true condition

2011-10-09 Thread Janne Grunau
On Sun, Oct 09, 2011 at 04:00:40PM +0200, Anton Khirnov wrote: > --- > avconv.c |3 +-- > 1 files changed, 1 insertions(+), 2 deletions(-) > > diff --git a/avconv.c b/avconv.c > index 058c0ee..d2cb69f 100644 > --- a/avconv.c > +++ b/avconv.c > @@ -2157,8 +2157,7 @@ static int transcode_init(O

Re: [libav-devel] [PATCH] avconv: always print stats with AV_LOG_INFO

2011-10-09 Thread Måns Rullgård
Anton Khirnov writes: > It's now possible to disable printing stats during encoding with > -nostats, so there's no reason to print them differently depending on > whether it's last report or not. > --- > avconv.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/avco

Re: [libav-devel] [PATCH] avconv: add presets

2011-10-09 Thread Janne Grunau
On Fri, Oct 07, 2011 at 03:18:27PM +0200, Alexandra Khirnova wrote: > --- > avconv.c| 67 > +++ > doc/avconv.texi | 18 ++ > 2 files changed, 85 insertions(+), 0 deletions(-) > > diff --git a/avconv.c b/avconv.c > index

[libav-devel] [PATCH] avconv: always print stats with AV_LOG_INFO

2011-10-09 Thread Anton Khirnov
It's now possible to disable printing stats during encoding with -nostats, so there's no reason to print them differently depending on whether it's last report or not. --- avconv.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/avconv.c b/avconv.c index f1d23ed..9b69e1d

Re: [libav-devel] [PATCH] avconv: add -stats option to enable/disable printing encoding progress

2011-10-09 Thread Måns Rullgård
Anton Khirnov writes: > --- > avconv.c|6 ++ > doc/avconv.texi |3 +++ > 2 files changed, 9 insertions(+), 0 deletions(-) Looks OK. With this option, I think the stats should be printed at AV_LOG_INFO whether the last one or not. It is not a warning and should thus never b

[libav-devel] [PATCH] avconv: add -stats option to enable/disable printing encoding progress

2011-10-09 Thread Anton Khirnov
--- avconv.c|6 ++ doc/avconv.texi |3 +++ 2 files changed, 9 insertions(+), 0 deletions(-) diff --git a/avconv.c b/avconv.c index a5548ec..f1d23ed 100644 --- a/avconv.c +++ b/avconv.c @@ -132,6 +132,8 @@ static int input_sync; static float dts_delta_threshold = 10; +stat

Re: [libav-devel] [PATCH 4/5] avconv: add -stats option to enable/disable printing encoding progress

2011-10-09 Thread Måns Rullgård
Anton Khirnov writes: > @@ -1313,6 +1315,9 @@ static void print_report(OutputFile *output_files, > static int64_t last_time = -1; > static int qp_histogram[52]; > > +if (!print_stats) > +return; > + > if (!is_last_report) { > int64_t cur_time; > /* dis

Re: [libav-devel] [PATCH] fate: run avconv with log level 'info'

2011-10-09 Thread Måns Rullgård
Anton Khirnov writes: > On Sun, 9 Oct 2011 13:05:59 +0100, Mans Rullgard wrote: >> This provides the right amount of information in error logs. >> >> Signed-off-by: Mans Rullgard >> --- >> This is intended to go with http://patches.libav.org/patch/9651/ >> --- >> tests/fate-run.sh |

Re: [libav-devel] [PATCH 1/5] avconv: factorize common code in transcode_init()

2011-10-09 Thread Janne Grunau
On Sun, Oct 09, 2011 at 04:00:39PM +0200, Anton Khirnov wrote: > --- > avconv.c |8 ++-- > 1 files changed, 2 insertions(+), 6 deletions(-) > > diff --git a/avconv.c b/avconv.c > index c418b7c..058c0ee 100644 > --- a/avconv.c > +++ b/avconv.c > @@ -2059,6 +2059,8 @@ static int transcode_i

Re: [libav-devel] [PATCH] mxfdec: Fix some buffer overreads caused by the misuse of AVPacket related functions.

2011-10-09 Thread Anton Khirnov
On Fri, 7 Oct 2011 18:49:45 -0700, Alex Converse wrote: > --- > libavformat/mxfdec.c | 24 > 1 files changed, 16 insertions(+), 8 deletions(-) > Looks sane. -- Anton Khirnov ___ libav-devel mailing list libav-devel@liba

[libav-devel] [PATCH 5/5] doc/avconv: add forgotten output/per-stream info to -filter

2011-10-09 Thread Anton Khirnov
--- doc/avconv.texi |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/avconv.texi b/doc/avconv.texi index 74e9e77..0abcc9d 100644 --- a/doc/avconv.texi +++ b/doc/avconv.texi @@ -186,7 +186,7 @@ Stop writing to the stream after @var{framecount} frames. Use fixed quality

[libav-devel] [PATCH 3/5] avconv: in output_packet() don't set decoded_data_size for video.

2011-10-09 Thread Anton Khirnov
It's only used for audio. --- avconv.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/avconv.c b/avconv.c index d2cb69f..a5548ec 100644 --- a/avconv.c +++ b/avconv.c @@ -1600,7 +1600,6 @@ static int output_packet(InputStream *ist, int ist_index, (ist-

[libav-devel] [PATCH 4/5] avconv: add -stats option to enable/disable printing encoding progress

2011-10-09 Thread Anton Khirnov
--- avconv.c|6 ++ doc/avconv.texi |3 +++ 2 files changed, 9 insertions(+), 0 deletions(-) diff --git a/avconv.c b/avconv.c index a5548ec..c3ab875 100644 --- a/avconv.c +++ b/avconv.c @@ -132,6 +132,8 @@ static int input_sync; static float dts_delta_threshold = 10; +stat

[libav-devel] [PATCH 2/5] avconv: remove pointless always true condition

2011-10-09 Thread Anton Khirnov
--- avconv.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/avconv.c b/avconv.c index 058c0ee..d2cb69f 100644 --- a/avconv.c +++ b/avconv.c @@ -2157,8 +2157,7 @@ static int transcode_init(OutputFile *output_files, break; } /* t

[libav-devel] [PATCH 1/5] avconv: factorize common code in transcode_init()

2011-10-09 Thread Anton Khirnov
--- avconv.c |8 ++-- 1 files changed, 2 insertions(+), 6 deletions(-) diff --git a/avconv.c b/avconv.c index c418b7c..058c0ee 100644 --- a/avconv.c +++ b/avconv.c @@ -2059,6 +2059,8 @@ static int transcode_init(OutputFile *output_files, } else { if (!ost->enc)

Re: [libav-devel] [PATCH] fate: run avconv with log level 'info'

2011-10-09 Thread Anton Khirnov
On Sun, 9 Oct 2011 13:05:59 +0100, Mans Rullgard wrote: > This provides the right amount of information in error logs. > > Signed-off-by: Mans Rullgard > --- > This is intended to go with http://patches.libav.org/patch/9651/ > --- > tests/fate-run.sh |2 +- > tests/regression-func

Re: [libav-devel] [PATCH] mpeg12enc: use sign_extend() function

2011-10-09 Thread Janne Grunau
On Sun, Oct 09, 2011 at 01:22:59PM +0100, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- > libavcodec/mpeg12enc.c |4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/mpeg12enc.c b/libavcodec/mpeg12enc.c > index 79c46be..f4455be 100644 > --- a/li

Re: [libav-devel] [PATCH] zmbv: remove memcpy() of decoded frame

2011-10-09 Thread Janne Grunau
On Sun, Oct 09, 2011 at 01:23:11PM +0100, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- > libavcodec/zmbv.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/libavcodec/zmbv.c b/libavcodec/zmbv.c > index 10fd903..a9c127e 100644 > --- a/libavcodec/zmbv.c >

[libav-devel] [PATCH] zmbv: remove memcpy() of decoded frame

2011-10-09 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- libavcodec/zmbv.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/zmbv.c b/libavcodec/zmbv.c index 10fd903..a9c127e 100644 --- a/libavcodec/zmbv.c +++ b/libavcodec/zmbv.c @@ -574,7 +574,7 @@ static int decode_frame(AVCodecConte

[libav-devel] [PATCH] mpeg12enc: use sign_extend() function

2011-10-09 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- libavcodec/mpeg12enc.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/mpeg12enc.c b/libavcodec/mpeg12enc.c index 79c46be..f4455be 100644 --- a/libavcodec/mpeg12enc.c +++ b/libavcodec/mpeg12enc.c @@ -27,6 +27,7 @@ #include

Re: [libav-devel] [PATCH 2/2] avconv: raise verbosity level of progress reports

2011-10-09 Thread Måns Rullgård
Anton Khirnov writes: > On Fri, 7 Oct 2011 13:41:11 +0100, Mans Rullgard wrote: >> This restores the old behaviour of allowing printing of >> the stream info without the live progress report, which >> is desirable for saved logs such as FATE. >> >> Signed-off-by: Mans Rullgard >> --- > > Dunn

[libav-devel] [PATCH v2] avidec: fix signed overflow in avi_sync()

2011-10-09 Thread Mans Rullgard
Keeping byte values read from the file as unsigned is consistent with how they are subsequently used and avoids an undefined left shift by 24 when bit 7 is set. Signed-off-by: Mans Rullgard --- libavformat/avidec.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/liba

[libav-devel] [PATCH] fate: run avconv with log level 'info'

2011-10-09 Thread Mans Rullgard
This provides the right amount of information in error logs. Signed-off-by: Mans Rullgard --- This is intended to go with http://patches.libav.org/patch/9651/ --- tests/fate-run.sh |2 +- tests/regression-funcs.sh |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --gi

Re: [libav-devel] [PATCH 2/2] avconv: raise verbosity level of progress reports

2011-10-09 Thread Anton Khirnov
On Fri, 7 Oct 2011 13:41:11 +0100, Mans Rullgard wrote: > This restores the old behaviour of allowing printing of > the stream info without the live progress report, which > is desirable for saved logs such as FATE. > > Signed-off-by: Mans Rullgard > --- Dunno, I like seeing progress by defau

Re: [libav-devel] [PATCH 1/2] avtools: add -v as alias for -loglevel

2011-10-09 Thread Anton Khirnov
On Fri, 7 Oct 2011 13:41:10 +0100, Mans Rullgard wrote: > This saves a bit of typing. > > Signed-off-by: Mans Rullgard > --- Fine with me. -- Anton Khirnov ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo

Re: [libav-devel] [PATCH] [WIP] yuv2planeX10 SIMD

2011-10-09 Thread Kieran Kunhya
On Sun, Oct 9, 2011 at 5:55 AM, Ronald S. Bultje wrote: > Hi, > > On Sat, Oct 8, 2011 at 9:46 PM, Ronald S. Bultje wrote: >> On Sat, Oct 8, 2011 at 9:44 PM, Ronald S. Bultje wrote: >>> On Sat, Oct 8, 2011 at 3:20 PM, Kieran Kunhya >>> wrote: I haven't done the pointer munging trick yet, n

Re: [libav-devel] [PATCH 1/3] new interrupt callback interface, that works per URLContext instead of globally

2011-10-09 Thread aviad rozenhek
On Tue, Sep 27, 2011 at 23:20, Martin Storsjö wrote: > On Tue, 27 Sep 2011, Anton Khirnov wrote: > > >> On Thu, 22 Sep 2011 18:01:55 +0300, Aviad Rozenhek >> wrote: >> >>> --- >>> libavformat/avio.c | 53 ++**+- >>> libavformat/avio.h | 76 +++