[libav-devel] [PATCH] matroskaenc: Don't set language to empty string, use und

2014-07-20 Thread Jan Gerber
--- libavformat/matroskaenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index b55ad35..aa30b9b 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -681,7 +681,7 @@ static int

[libav-devel] [PATCH] mpegencconetxt: split away rv10 specific data

2014-07-20 Thread Nidhi Makhijani
--- libavcodec/mpegvideo.h | 1 - libavcodec/rv10.c | 13 +++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 7dd4228..3346509 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -542,7 +542,6 @@

Re: [libav-devel] [PATCH 5/5] avformat: Use the mime type information in input probe

2014-07-20 Thread Vittorio Giovara
On Sat, Jul 19, 2014 at 9:19 PM, Andrew Kelley superjo...@gmail.com wrote: On Fri, Jul 11, 2014 at 7:40 AM, Vittorio Giovara vittorio.giov...@gmail.com wrote: Also this should be ifdeffed with FF_API_PROBE_MIME because it's a public type. Is it possible to bump the SONAME version instead

Re: [libav-devel] [PATCH] mpegencconetxt: split away rv10 specific data

2014-07-20 Thread Hendrik Leppkes
Am 20.07.2014 11:21 schrieb Nidhi Makhijani nidhim...@gmail.com: --- libavcodec/mpegvideo.h | 1 - libavcodec/rv10.c | 13 +++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 7dd4228..3346509 100644 ---

Re: [libav-devel] [PATCH] matroskaenc: Don't set language to empty string, use und

2014-07-20 Thread Luca Barbato
On 20/07/14 10:36, Jan Gerber wrote: --- libavformat/matroskaenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Probably ok, whoever pushes, please put spaces around : lu ___ libav-devel mailing list libav-devel@libav.org

[libav-devel] [PATCH 2/2] codec_desc: fix some typos in long codec names

2014-07-20 Thread Anton Khirnov
The rv20 typo spotted by Hendrik Leppkes h.lepp...@gmail.com --- libavcodec/codec_desc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 548c508..c21c57e 100644 --- a/libavcodec/codec_desc.c +++

[libav-devel] [PATCH 1/2] lavc: add a property for marking codecs that support frame reordering

2014-07-20 Thread Anton Khirnov
--- doc/APIchanges | 3 +++ libavcodec/avcodec.h| 10 ++ libavcodec/codec_desc.c | 32 libavcodec/version.h| 2 +- 4 files changed, 30 insertions(+), 17 deletions(-) diff --git a/doc/APIchanges b/doc/APIchanges index 9535b88..8fb0c23

Re: [libav-devel] [PATCH] matroskaenc: Don't set language to empty string, use und

2014-07-20 Thread Anton Khirnov
On Sun, 20 Jul 2014 10:36:35 +0200, Jan Gerber j...@v2v.cc wrote: --- libavformat/matroskaenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index b55ad35..aa30b9b 100644 --- a/libavformat/matroskaenc.c +++

Re: [libav-devel] [PATCH] mpegencconetxt: split away rv10 specific data

2014-07-20 Thread Anton Khirnov
On Sun, 20 Jul 2014 12:33:55 +0200, Hendrik Leppkes h.lepp...@gmail.com wrote: Am 20.07.2014 11:21 schrieb Nidhi Makhijani nidhim...@gmail.com: --- libavcodec/mpegvideo.h | 1 - libavcodec/rv10.c | 13 +++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git

[libav-devel] [PATCH] tiff: decode grayscale 8bit images

2014-07-20 Thread Vittorio Giovara
From: Carl Eugen Hoyos ceho...@ag.or.at --- libavcodec/tiff.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 6c72dc8..69d55c6 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -262,6 +262,9 @@ static int init_image(TiffContext *s,

Re: [libav-devel] [PATCH 5/5] avformat: Use the mime type information in input probe

2014-07-20 Thread Anton Khirnov
On Fri, 11 Jul 2014 17:02:22 +0200, Luca Barbato lu_z...@gentoo.org wrote: On 11/07/14 16:45, wm4 wrote: +#ifdef FF_API_PROBE_MIME +if (match_name(lpd.mime_type, fmt1-mime_type)) +score = FFMAX(score, AVPROBE_SCORE_EXTENSION); Looks good to me conceptually, but I

Re: [libav-devel] [PATCH] Implement input stream throttle

2014-07-20 Thread wm4
On Sat, 19 Jul 2014 19:21:47 -0400 siret...@gmail.com wrote: From: John Peterson john.peters...@hotmail.com Useful to simulate low performance input. The minimum resolution is 1 Kib/s. The input stream packet size setting can be used to test the performance with different packet sizes at

Re: [libav-devel] [PATCH] tiff: decode grayscale 8bit images

2014-07-20 Thread Luca Barbato
On 20/07/14 13:47, Vittorio Giovara wrote: From: Carl Eugen Hoyos ceho...@ag.or.at --- libavcodec/tiff.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 6c72dc8..69d55c6 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -262,6

Re: [libav-devel] [PATCH] Implement input stream throttle

2014-07-20 Thread Luca Barbato
On 20/07/14 13:55, wm4 wrote: On Sat, 19 Jul 2014 19:21:47 -0400 siret...@gmail.com wrote: From: John Peterson john.peters...@hotmail.com Useful to simulate low performance input. The minimum resolution is 1 Kib/s. The input stream packet size setting can be used to test the performance

Re: [libav-devel] [PATCH] mpegencconetxt: split away rv10 specific data

2014-07-20 Thread Diego Biurrun
Hendrik, please snip your quotes :) On Sun, Jul 20, 2014 at 12:33:55PM +0200, Hendrik Leppkes wrote: Am 20.07.2014 11:21 schrieb Nidhi Makhijani nidhim...@gmail.com: --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -542,7 +542,6 @@ typedef struct MpegEncContext { /* RV10

[libav-devel] [PATCH] eamad: use the bytestream2 API instead of AV_RL

2014-07-20 Thread Anton Khirnov
This is safer and possibly fixes invalid reads on truncated data. CC:libav-sta...@libav.org --- Also, the CVE mentioned in the original patch refers to a completely different decoder. A typo? --- libavcodec/eamad.c | 32 +++- 1 file changed, 15 insertions(+), 17

Re: [libav-devel] [PATCH] mpegencconetxt: split away rv10 specific data

2014-07-20 Thread Diego Biurrun
On Sun, Jul 20, 2014 at 02:51:38PM +0530, Nidhi Makhijani wrote: --- libavcodec/mpegvideo.h | 1 - libavcodec/rv10.c | 13 +++-- 2 files changed, 7 insertions(+), 7 deletions(-) LGTM, queueing. Diego ___ libav-devel mailing list

Re: [libav-devel] [PATCH] eamad: use the bytestream2 API instead of AV_RL

2014-07-20 Thread Luca Barbato
On 20/07/14 14:13, Anton Khirnov wrote: This is safer and possibly fixes invalid reads on truncated data. CC:libav-sta...@libav.org --- Also, the CVE mentioned in the original patch refers to a completely different decoder. A typo? --- libavcodec/eamad.c | 32

Re: [libav-devel] [PATCH] matroskaenc: Don't set language to empty string, use und

2014-07-20 Thread j
On 07/20/2014 01:41 PM, Anton Khirnov wrote: @@ -681,7 +681,7 @@ static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv, if ((tag = av_dict_get(st-metadata, title, NULL, 0))) put_ebml_string(pb, MATROSKA_ID_TRACKNAME, tag-value); tag =

Re: [libav-devel] [PATCH] matroskaenc: Don't set language to empty string, use und

2014-07-20 Thread Anton Khirnov
On Sun, 20 Jul 2014 14:49:05 +0200, j...@v2v.cc wrote: On 07/20/2014 01:41 PM, Anton Khirnov wrote: @@ -681,7 +681,7 @@ static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv, if ((tag = av_dict_get(st-metadata, title, NULL, 0))) put_ebml_string(pb,

[libav-devel] [PATCH] eamad: use the bytestream2 API instead of AV_RL

2014-07-20 Thread Anton Khirnov
This is safer and possibly fixes invalid reads on truncated data. CC:libav-sta...@libav.org --- Now with a test for zero-sized malloc --- libavcodec/eamad.c | 37 - 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/libavcodec/eamad.c

Re: [libav-devel] [PATCH] matroskaenc: Don't set language to empty string, use und

2014-07-20 Thread j
On 07/20/2014 03:13 PM, Anton Khirnov wrote: Could you share the sample? This really sounds like a bug elsewhere that should be fixed. Here a short clip http://v2v.cc/~j/samples/emtpy_language.mpg ___ libav-devel mailing list libav-devel@libav.org

Re: [libav-devel] [PATCH] eamad: use the bytestream2 API instead of AV_RL

2014-07-20 Thread Luca Barbato
On 20/07/14 15:18, Anton Khirnov wrote: This is safer and possibly fixes invalid reads on truncated data. CC:libav-sta...@libav.org --- Now with a test for zero-sized malloc --- libavcodec/eamad.c | 37 - 1 file changed, 20 insertions(+), 17

[libav-devel] Invitation to VDD and registration

2014-07-20 Thread Jean-Baptiste Kempf
My dear friends of the libav community, I'd like to invite you to the VideoLAN Dev Days 2014, the 3rd week-end of September, in Dublin, Ireland. Google is providing the hosting. This technical conference about open source multimedia, will see developers from VLC, libav, FFmpeg, x26*, Phonon,

Re: [libav-devel] Travis

2014-07-20 Thread Justin Ruggles
On 07/19/2014 01:22 PM, Reinhard Tartler wrote: On Sat, Jul 19, 2014 at 12:26 PM, Diego Biurrun di...@biurrun.de wrote: On Sat, Jul 19, 2014 at 12:23:58PM -0400, Reinhard Tartler wrote: For release branches, we currently don't have any FATE Farm. It would be great to have something like that,

Re: [libav-devel] Travis

2014-07-20 Thread Justin Ruggles
On 07/20/2014 01:58 PM, Reinhard Tartler wrote: On Sun, Jul 20, 2014 at 1:50 PM, Justin Ruggles justin.rugg...@gmail.com wrote: On 07/19/2014 01:22 PM, Reinhard Tartler wrote: On Sat, Jul 19, 2014 at 12:26 PM, Diego Biurrun di...@biurrun.de wrote: On Sat, Jul 19, 2014 at 12:23:58PM -0400,

Re: [libav-devel] Travis

2014-07-20 Thread Reinhard Tartler
On Sun, Jul 20, 2014 at 1:59 PM, Justin Ruggles justin.rugg...@gmail.com wrote: On 07/20/2014 01:58 PM, Reinhard Tartler wrote: On Sun, Jul 20, 2014 at 1:50 PM, Justin Ruggles justin.rugg...@gmail.com wrote: On 07/19/2014 01:22 PM, Reinhard Tartler wrote: On Sat, Jul 19, 2014 at 12:26 PM,

[libav-devel] Fwd: Bug#753528: libav-tools: Floating point exception is raised when recording vom video4linux2

2014-07-20 Thread Reinhard Tartler
Control: forwarded -1 libav-devel@libav.org Hi, In Debian, we've received this bugreport regarding a bugfix in our video4linux2 handling. Is the patch below acceptable for master? Best, Reinhard -- Forwarded message -- From: Bernhard Übelacker bernha...@vr-web.de Date: Wed,

[libav-devel] Fwd: Bug#749164: Unchecked conversion from double to enum

2014-07-20 Thread Reinhard Tartler
Control: forwarded -1 libav-devel@libav.org Hi, The report below seems legit to me. Can someone confirm or deny this issue? Best, Reinhard -- Forwarded message -- From: Michael Tautschnig m...@debian.org Date: Sat, May 24, 2014 at 12:07 PM Subject: Bug#749164: Unchecked

Re: [libav-devel] Travis

2014-07-20 Thread Vittorio Giovara
On Sun, Jul 20, 2014 at 7:04 PM, Reinhard Tartler siret...@gmail.com wrote: Nevertheless, it would be nice if we could establish a rule of never changing an existing file, but only adding fixed samples instead. Then we wouldn't need to branch in the first place. If disk space was a concern,

Re: [libav-devel] Invitation to VDD and registration

2014-07-20 Thread Vittorio Giovara
On Sun, Jul 20, 2014 at 5:16 PM, Jean-Baptiste Kempf j...@videolan.org wrote: My dear friends of the libav community, I'd like to invite you to the VideoLAN Dev Days 2014, the 3rd week-end of September, in Dublin, Ireland. Google is providing the hosting. This technical conference about open

Re: [libav-devel] [PATCH 120/132] dct-test: Do not duplicate simple_mmx and sse2 permutation tables

2014-07-20 Thread Diego Biurrun
On Thu, Jul 17, 2014 at 09:44:47AM -0700, Diego Biurrun wrote: --- libavcodec/dct-test.c | 16 ++-- libavcodec/x86/idct_permutation.h | 38 ++ libavcodec/x86/idctdsp_init.c | 15 +-- 3 files changed, 41

[libav-devel] [PATCH] dct-test: Move arch-specific bits into arch-specific subdirectories

2014-07-20 Thread Diego Biurrun
--- Rebased now that the patch to deduplicate IDCT tables was dropped. libavcodec/arm/dct-test.c | 40 ++ libavcodec/dct-test.c | 105 ++ libavcodec/ppc/dct-test.c | 32 ++ libavcodec/x86/dct-test.c | 82

Re: [libav-devel] Pull requests on github

2014-07-20 Thread Reinhard Tartler
On Sat, Jul 19, 2014 at 12:35 PM, Reinhard Tartler siret...@gmail.com wrote: On Sat, Jul 19, 2014 at 11:24 AM, Luca Barbato lu_z...@gentoo.org wrote: On 19/07/14 16:42, Reinhard Tartler wrote: Hi, I notice that we currently have 6 open pull requests on github:

Re: [libav-devel] Travis

2014-07-20 Thread Reinhard Tartler
On Sat, Jul 19, 2014 at 4:12 PM, Marc-Antoine ARNAUD arnaud.marcanto...@gmail.com wrote: Impressive ! lot of discussions ;-) Actually the TuttleOFX team Travis to validate build before merge. You can see here: https://github.com/tuttleofx/TuttleOFX/pulls with validated builds:

Re: [libav-devel] Travis

2014-07-20 Thread Andrew Kelley
On Sun, Jul 20, 2014 at 2:02 PM, Reinhard Tartler siret...@gmail.com wrote: Another limitation I found https://travis-ci.com/plans: Your first 100 builds are free! What happens on the 101st build? Would you be willing to sponsor a travis plan? I believe Travis has unlimited free

Re: [libav-devel] Travis

2014-07-20 Thread Timothy Gu
On Sun, Jul 20, 2014 at 2:03 PM, Andrew Kelley superjo...@gmail.com wrote: On Sun, Jul 20, 2014 at 2:02 PM, Reinhard Tartler siret...@gmail.com wrote: Another limitation I found https://travis-ci.com/plans: Your first 100 builds are free! What happens on the 101st build? Would you be

Re: [libav-devel] Travis

2014-07-20 Thread Reinhard Tartler
On Sun, Jul 20, 2014 at 5:20 PM, Timothy Gu timothyg...@gmail.com wrote: On Sun, Jul 20, 2014 at 2:03 PM, Andrew Kelley superjo...@gmail.com wrote: On Sun, Jul 20, 2014 at 2:02 PM, Reinhard Tartler siret...@gmail.com wrote: Another limitation I found https://travis-ci.com/plans: Your

Re: [libav-devel] Invitation to VDD and registration

2014-07-20 Thread Diego Biurrun
On Sun, Jul 20, 2014 at 06:16:13PM +0200, Jean-Baptiste Kempf wrote: I'd like to invite you to the VideoLAN Dev Days 2014, the 3rd week-end of September, in Dublin, Ireland. Google is providing the hosting. Anybody else interested in staying a few days before and/or after VDD to get to know

[libav-devel] [PATCH 2/5] avutil: add AV_PIX_FMT_GRAY16A pixel format

2014-07-20 Thread Vittorio Giovara
--- Black and white gradients never looked better! Vittorio doc/APIchanges | 3 +++ libavutil/pixdesc.c | 19 +++ libavutil/pixfmt.h | 5 + libavutil/version.h | 4 ++-- 4 files changed, 29 insertions(+), 2 deletions(-) diff --git a/doc/APIchanges b/doc/APIchanges

[libav-devel] [PATCH 4/5] png: support reading gray+alpha at 16 bits

2014-07-20 Thread Vittorio Giovara
--- libavcodec/pngdec.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c index 6b085ac..79baf4a 100644 --- a/libavcodec/pngdec.c +++ b/libavcodec/pngdec.c @@ -500,6 +500,9 @@ static int decode_frame(AVCodecContext *avctx, } else if

[libav-devel] [PATCH 1/5] avutil: rename AV_PIX_FMT_Y400A to AV_PIX_FMT_GRAY8A

2014-07-20 Thread Vittorio Giovara
An alias is provided for compatibility. --- I would propose this change because all present (and future) grayscale format somehow have GRAY in their name, which makes them more consistent and easier to grep. Additionally this is not one of the most widespread format and the alias should cover all

[libav-devel] [PATCH 3/5] swscale: support AV_PIX_FMT_GRAY16A as input

2014-07-20 Thread Vittorio Giovara
--- libswscale/input.c| 28 libswscale/swscale-test.c | 4 +++- libswscale/swscale_internal.h | 4 +++- libswscale/swscale_unscaled.c | 1 + libswscale/utils.c| 2 ++ 5 files changed, 37 insertions(+), 2 deletions(-) diff --git

[libav-devel] [PATCH 5/5] tiff: support reading gray+alpha at 16 bits

2014-07-20 Thread Vittorio Giovara
--- libavcodec/tiff.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 69d55c6..71ba5c8 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -265,6 +265,9 @@ static int init_image(TiffContext *s, AVFrame *frame) case 162:

Re: [libav-devel] Invitation to VDD and registration

2014-07-20 Thread John Stebbins
On 07/20/2014 02:49 PM, Diego Biurrun wrote: On Sun, Jul 20, 2014 at 06:16:13PM +0200, Jean-Baptiste Kempf wrote: I'd like to invite you to the VideoLAN Dev Days 2014, the 3rd week-end of September, in Dublin, Ireland. Google is providing the hosting. Anybody else interested in staying a few

Re: [libav-devel] [PATCH] tiff: decode grayscale 8bit images

2014-07-20 Thread Luca Barbato
On 20/07/14 13:57, Luca Barbato wrote: On 20/07/14 13:47, Vittorio Giovara wrote: From: Carl Eugen Hoyos ceho...@ag.or.at --- libavcodec/tiff.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 6c72dc8..69d55c6 100644 ---

Re: [libav-devel] [PATCH] tiff: decode grayscale 8bit images

2014-07-20 Thread Vittorio Giovara
On Mon, Jul 21, 2014 at 12:19 AM, Luca Barbato lu_z...@gentoo.org wrote: On 20/07/14 13:57, Luca Barbato wrote: On 20/07/14 13:47, Vittorio Giovara wrote: From: Carl Eugen Hoyos ceho...@ag.or.at --- libavcodec/tiff.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/tiff.c

Re: [libav-devel] [PATCH 1/5] avutil: rename AV_PIX_FMT_Y400A to AV_PIX_FMT_GRAY8A

2014-07-20 Thread Luca Barbato
On 21/07/14 00:59, Vittorio Giovara wrote: An alias is provided for compatibility. --- I would propose this change because all present (and future) grayscale format somehow have GRAY in their name, which makes them more consistent and easier to grep. Additionally this is not one of the most

Re: [libav-devel] Travis

2014-07-20 Thread Reinhard Tartler
On Sat, Jul 19, 2014 at 12:23 PM, Reinhard Tartler siret...@gmail.com wrote: On Sat, Jul 19, 2014 at 11:44 AM, Marc-Antoine ARNAUD arnaud.marcanto...@gmail.com wrote: Hi, Someone have already tested Travis with LibAV ? We using on projects, and it was very helpfull. I already try to setup

Re: [libav-devel] Travis

2014-07-20 Thread Andrew Kelley
On Sun, Jul 20, 2014 at 4:52 PM, Reinhard Tartler siret...@gmail.com wrote: To answer my own question: I have setup travis to build our release/10 branch: https://travis-ci.org/siretart/libav As you can see, access to the internet seems to be available. The build machine is an amd64 bit