[FFmpeg-devel] [PATCH 3/3] lavf/libsmbclient: implement directory listing callbacks

2015-04-02 Thread Mariusz Szczepańczyk
--- libavformat/libsmbclient.c | 108 + 1 file changed, 108 insertions(+) diff --git a/libavformat/libsmbclient.c b/libavformat/libsmbclient.c index 8290d75..1af8163 100644 --- a/libavformat/libsmbclient.c +++ b/libavformat/libsmbclient.c @@ -28,6 +28,7

[FFmpeg-devel] [PATCH 1/3] lavf/avio: Add new types to AVIODirEntryType, bump minor version

2015-04-02 Thread Mariusz Szczepańczyk
--- doc/APIchanges| 5 + libavformat/avio.h| 5 - libavformat/version.h | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/doc/APIchanges b/doc/APIchanges index b1beb9d..ae67e06 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -15,6 +15,11 @@ libavutil:

[FFmpeg-devel] [PATCH 2/3] doc/examples: Handle new types in avio_list_dir

2015-04-02 Thread Mariusz Szczepańczyk
--- doc/examples/avio_list_dir.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/doc/examples/avio_list_dir.c b/doc/examples/avio_list_dir.c index 37b80c5..281b5af 100644 --- a/doc/examples/avio_list_dir.c +++ b/doc/examples/avio_list_dir.c @@ -41,6 +41,12 @@ static const char *type_stri

[FFmpeg-devel] [PATCH 0/3] [GSoC] directory listing for samba

2015-04-02 Thread Mariusz Szczepańczyk
Hi, this set of patches implements directory listing callbacks for SMB protocol. It also extends AVIODirEntryType enum with few elements needed to cover all relevant file types served by samba. One of the samba types, SMBC_LINK is mapped to AVIO_ENTRY_UNKNOWN, since it doesn't seem to be ever ret

Re: [FFmpeg-devel] [PATCH] doc/protocols: explain FTP truncuation problem

2015-04-02 Thread Michael Niedermayer
On Fri, Apr 03, 2015 at 12:45:34AM +0200, Lukasz Marek wrote: > Signed-off-by: Lukasz Marek > --- > doc/protocols.texi | 6 +- > 1 file changed, 5 insertions(+), 1 deletion(-) content LGTM spelling/grammer, cant comment [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC7

[FFmpeg-devel] [PATCH] doc/protocols: explain FTP truncuation problem

2015-04-02 Thread Lukasz Marek
Signed-off-by: Lukasz Marek --- doc/protocols.texi | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/protocols.texi b/doc/protocols.texi index 2a19b41..73c511c 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -183,7 +183,11 @@ to be seekable. Default value is

Re: [FFmpeg-devel] [PATCH] Fix regression preventing vtag being used as a source option.

2015-04-02 Thread Carl Eugen Hoyos
tim nicholson ffmpeg.org> writes: > As per discussion ["FFmpeg-user] using -vtag on input files" Thank you! Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 3/3] doc: Slightly revise AviSynth version info

2015-04-02 Thread Michael Niedermayer
On Thu, Apr 02, 2015 at 03:38:55PM -0400, Stephen Hutchinson wrote: > --- > doc/general.texi | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB I know you won't believe me, but the highest

Re: [FFmpeg-devel] [PATCH 2/3] avisynth: Bump minimum required version to interface version 6

2015-04-02 Thread Michael Niedermayer
On Thu, Apr 02, 2015 at 03:38:54PM -0400, Stephen Hutchinson wrote: > The AVSC_API changes in the new headers mean that the 2.6 alphas > are just as incompatible as 2.5 is. > --- > libavformat/avisynth.c | 11 ++- > 1 file changed, 6 insertions(+), 5 deletions(-) applied thanks [...] --

Re: [FFmpeg-devel] [PATCH 1/3] avisynth: Fix detection of AviSynth 2.5

2015-04-02 Thread Michael Niedermayer
On Thu, Apr 02, 2015 at 03:38:53PM -0400, Stephen Hutchinson wrote: > In order to safely exit when the user tries to use AviSynth 2.5, > the continue_on_fail value for 2.6's functions need to be set to > 1. Otherwise, the library loader fails before the 'upgrade to > 2.6' log message appears. > --

Re: [FFmpeg-devel] [PATCH] avcodec/pngenc: don't return a value in a void function

2015-04-02 Thread Michael Niedermayer
On Thu, Apr 02, 2015 at 05:19:41PM -0300, James Almer wrote: > Should fix compilation failures with strict compilers > > Signed-off-by: James Almer > --- > libavcodec/pngenc.c | 6 -- > 1 file changed, 4 insertions(+), 2 deletions(-) applied btw, no need to send patches for such things, ju

Re: [FFmpeg-devel] [PATCH 1/2] lavu/dict: fix set function when reuse existing key pointer

2015-04-02 Thread Lukasz Marek
On 02.04.2015 01:09, Michael Niedermayer wrote: On Thu, Apr 02, 2015 at 12:37:34AM +0200, Lukasz Marek wrote: On 01.04.2015 04:33, Michael Niedermayer wrote: On Wed, Apr 01, 2015 at 03:25:23AM +0200, Lukasz Marek wrote: Fixes following scenario: av_dict_set(&d, "key", "old", 0); AVDictionaryE

Re: [FFmpeg-devel] [GSoC] Proof-of-concept HTTP Server

2015-04-02 Thread Nicolas George
Le tridi 13 germinal, an CCXXIII, Stephan Holljes a écrit : > How would http listening work as an input option? I do not see any particular problem. With your current patch, you can do: ffmpeg $input $output_options -listen 1 http://0:1234 ffmpeg -i http://host:1234/ $remote_output It would wor

Re: [FFmpeg-devel] [PATCH 2/2] fate: add AVDictionary tests

2015-04-02 Thread Lukasz Marek
On 02.04.2015 01:43, Michael Niedermayer wrote: On Thu, Apr 02, 2015 at 12:38:20AM +0200, Lukasz Marek wrote: On 01.04.2015 03:25, Lukasz Marek wrote: Signed-off-by: Lukasz Marek --- tests/fate/libavutil.mak | 4 tests/ref/fate/dict | 26 ++ I added more

Re: [FFmpeg-devel] [GSoC] Proof-of-concept HTTP Server

2015-04-02 Thread Stephan Holljes
On Mon, Mar 30, 2015 at 5:19 PM, Nicolas George wrote: > Le nonidi 9 germinal, an CCXXIII, Stephan Holljes a écrit : >> I hope this addresses the issues mentioned. >> I added a new label in case of failure in http_open() in favor of >> duplicated code (i.e. calling av_dict_free() multiple times).

[FFmpeg-devel] [PATCH] avcodec/pngenc: don't return a value in a void function

2015-04-02 Thread James Almer
Should fix compilation failures with strict compilers Signed-off-by: James Almer --- libavcodec/pngenc.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libavcodec/pngenc.c b/libavcodec/pngenc.c index 8699b80..7a9d0b0 100644 --- a/libavcodec/pngenc.c +++ b/libavcodec/pn

[FFmpeg-devel] [PATCH 2/3] avisynth: Bump minimum required version to interface version 6

2015-04-02 Thread Stephen Hutchinson
The AVSC_API changes in the new headers mean that the 2.6 alphas are just as incompatible as 2.5 is. --- libavformat/avisynth.c | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c index 84b7d04..4af58f6 100644 --- a/libavf

[FFmpeg-devel] [PATCH 3/3] doc: Slightly revise AviSynth version info

2015-04-02 Thread Stephen Hutchinson
--- doc/general.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/general.texi b/doc/general.texi index 85ee219..f8e7470 100644 --- a/doc/general.texi +++ b/doc/general.texi @@ -179,8 +179,8 @@ included in compat/avisynth/, which allows the user to enable support w

[FFmpeg-devel] [PATCH 0/3] Fix AviSynth upgrade message

2015-04-02 Thread Stephen Hutchinson
There was a minor regression introduced by adding the new 2.6 functions in avisynth_load_library, because the continue_on_fail value wasn't set correctly. This meant that if the user attempted to use an incompatible version of AviSynth, it wouldn't show the error message telling them to upgrade.

[FFmpeg-devel] [PATCH 1/3] avisynth: Fix detection of AviSynth 2.5

2015-04-02 Thread Stephen Hutchinson
In order to safely exit when the user tries to use AviSynth 2.5, the continue_on_fail value for 2.6's functions need to be set to 1. Otherwise, the library loader fails before the 'upgrade to 2.6' log message appears. --- libavformat/avisynth.c | 18 +- 1 file changed, 9 insertion

Re: [FFmpeg-devel] Patch for High color and High bit-depth support

2015-04-02 Thread Debargha Mukherjee
On Wed, Apr 1, 2015 at 3:11 PM, Debargha Mukherjee wrote: > Updated patch. > > On Wed, Apr 1, 2015 at 3:10 PM, Debargha Mukherjee > wrote: > >> >> >> On Tue, Mar 31, 2015 at 4:16 PM, James Zern wrote: >> >>> On Mon, Mar 30, 2015 at 10:26 AM, Debargha Mukherjee >>> wrote: >>> > On Fri, Mar 27,

Re: [FFmpeg-devel] [PATCH] png: Use libavutil's crc functions instead of zlib's

2015-04-02 Thread Michael Niedermayer
On Thu, Apr 02, 2015 at 03:09:18PM +, Donny Yang wrote: > Signed-off-by: Donny Yang > --- > libavcodec/pngenc.c | 22 -- > 1 file changed, 12 insertions(+), 10 deletions(-) patch applied maybe you want to add a fate test for apng as well ? thanks [...] -- Michael

Re: [FFmpeg-devel] [PATCH] Fix regression preventing vtag being used as a source option.

2015-04-02 Thread Michael Niedermayer
On Thu, Apr 02, 2015 at 05:45:14PM +0100, tim nicholson wrote: > As per discussion ["FFmpeg-user] using -vtag on input files" > > untested (as Carl would say) ;) > -- > Tim. > Key Fingerprint 38CF DB09 3ED0 F607 8B67 6CED 0C0B FC44 8B0B FC83 > ffmpeg_opt.c |2 +- > 1 file changed, 1 inserti

Re: [FFmpeg-devel] [PATCH] libavcodec/exr.c : exr lossy compression B44 based on OpenEXR code

2015-04-02 Thread Michael Niedermayer
On Thu, Apr 02, 2015 at 07:31:07PM +0200, Michael Niedermayer wrote: > On Thu, Apr 02, 2015 at 04:56:18PM +0200, Martin Vignali wrote: > > I doesn't test yet the patch. > > > > But if you need to, > > two samples create with After Effects from ( > > http://fr.wikipedia.org/wiki/FFmpeg#/media/File

Re: [FFmpeg-devel] [PATCH] libavcodec/exr.c : exr lossy compression B44 based on OpenEXR code

2015-04-02 Thread Michael Niedermayer
On Thu, Apr 02, 2015 at 04:56:18PM +0200, Martin Vignali wrote: > I doesn't test yet the patch. > > But if you need to, > two samples create with After Effects from ( > http://fr.wikipedia.org/wiki/FFmpeg#/media/File:FFmpeg_Logo_new.svg) > > EXR B44 Half Float > http://www.datafilehost.com/d/b3

[FFmpeg-devel] [PATCH] Fix regression preventing vtag being used as a source option.

2015-04-02 Thread tim nicholson
As per discussion ["FFmpeg-user] using -vtag on input files" untested (as Carl would say) ;) -- Tim. Key Fingerprint 38CF DB09 3ED0 F607 8B67 6CED 0C0B FC44 8B0B FC83 >From fa1b11ae65f6c0c6cd7f5fa11054d2db93c29af4 Mon Sep 17 00:00:00 2001 From: Tim Nicholson Date: Thu, 2 Apr 2015 17:41:22 +0100

[FFmpeg-devel] [PATCH] png: Use libavutil's crc functions instead of zlib's

2015-04-02 Thread Donny Yang
Signed-off-by: Donny Yang --- libavcodec/pngenc.c | 22 -- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/libavcodec/pngenc.c b/libavcodec/pngenc.c index 4349d1a..8699b80 100644 --- a/libavcodec/pngenc.c +++ b/libavcodec/pngenc.c @@ -27,6 +27,7 @@ #include "a

Re: [FFmpeg-devel] [PATCH] libavcodec/exr.c : exr lossy compression B44 based on OpenEXR code

2015-04-02 Thread Martin Vignali
I doesn't test yet the patch. But if you need to, two samples create with After Effects from ( http://fr.wikipedia.org/wiki/FFmpeg#/media/File:FFmpeg_Logo_new.svg) EXR B44 Half Float http://www.datafilehost.com/d/b3fdd446 EXR B44 Float http://www.datafilehost.com/d/5fea8262 Martin

Re: [FFmpeg-devel] [PATCH] libavcodec/exr.c : exr lossy compression B44 based on OpenEXR code

2015-04-02 Thread Michael Niedermayer
On Thu, Apr 02, 2015 at 07:32:39PM +0530, greeshma wrote: > The patch is now getting applied. > PFA. where can we find EXR B44 samples to test the code? [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Frequently ignored answer#1 FFmpeg bugs should be sent to ou

Re: [FFmpeg-devel] [PATCH] libavcodec/exr.c : exr lossy compression B44 based on OpenEXR code

2015-04-02 Thread greeshma
The patch is now getting applied. PFA. Greeshma On Sat, Mar 28, 2015 at 8:39 AM, Michael Niedermayer wrote: > On Sat, Mar 28, 2015 at 02:33:44AM +0530, greeshma wrote: > > The corrected patch is attached. > > PFA > > > > Greeshma > > > exr.c | 117 >

Re: [FFmpeg-devel] [PATCH] vda: fix h64 decoding, ?vda wants the entire buffer

2015-04-02 Thread Michael Niedermayer
On Thu, Apr 02, 2015 at 11:51:29AM +, Rainer Hochecker wrote: > Michael Niedermayer gmx.at> writes: > > > > > > have you tried this with both annex b and .mp4 style h264 ? > > > > [...] > > I have updated the patch and tested both styles: > https://github.com/FFmpeg/FFmpeg/pull/129 appli

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: Fix profile parameter handling

2015-04-02 Thread Michael Niedermayer
On Wed, Apr 01, 2015 at 05:32:04PM -0700, Philip Langdale wrote: > On Thu, 2 Apr 2015 00:04:07 +0200 > Timo Rothenpieler wrote: > > > It was not possible to set a profile before, the builtin profile > > parameter does not seem to work propperly. > > To be compatible with libx264, this overlays i

Re: [FFmpeg-devel] [PATCH]lavf/mkv: Fix AAC remuxing

2015-04-02 Thread Hendrik Leppkes
On Thu, Apr 2, 2015 at 2:12 PM, Carl Eugen Hoyos wrote: > Carl Eugen Hoyos ag.or.at> writes: > >> On Wednesday 01 April 2015 01:55:57 pm Carl Eugen Hoyos wrote: >> > Attached patch fixes a user-reported regression when >> > remuxing some streams containing aac to mkv. >> >> New patch attached. >

Re: [FFmpeg-devel] [PATCH]lavf/mkv: Fix AAC remuxing

2015-04-02 Thread Carl Eugen Hoyos
Carl Eugen Hoyos ag.or.at> writes: > On Wednesday 01 April 2015 01:55:57 pm Carl Eugen Hoyos wrote: > > Attached patch fixes a user-reported regression when > > remuxing some streams containing aac to mkv. > > New patch attached. Ping, since this fixes a regression. Carl Eugen ___

Re: [FFmpeg-devel] [PATCH] vda: fix h64 decoding, vda wants the entire buffer

2015-04-02 Thread Rainer Hochecker
Michael Niedermayer gmx.at> writes: > > have you tried this with both annex b and .mp4 style h264 ? > > [...] I have updated the patch and tested both styles: https://github.com/FFmpeg/FFmpeg/pull/129 ___ ffmpeg-devel mailing list ffmpeg-devel@ffm

Re: [FFmpeg-devel] [PATCH] Relaxed pattern to find ProRes in MXF.

2015-04-02 Thread tim nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/04/15 10:57, Steve Dierker wrote: > Hello, > >> >> I am currently looking at the whole range of UL's to see if they can >> be tidied up, but that will also take some time, so perhaps in the >> interests of progress use your suggestion for now *b

Re: [FFmpeg-devel] HEVC decoder debug in ffmpeg

2015-04-02 Thread Michael Niedermayer
On Wed, Apr 01, 2015 at 10:41:11PM -0400, Zhan Ma wrote: > Dear experts > > I am trying to do step-by-step debugging of HEVC decoder in ffmpeg for a > detailed study. I created the eclipse project for ffmpeg and then compile > the ffmpeg using --enable-static and --enable-debug. However, it se

Re: [FFmpeg-devel] [PATCH] ffmpeg: Avoid null pointer dereferences

2015-04-02 Thread Michael Niedermayer
On Thu, Apr 02, 2015 at 04:22:19PM +0530, Himangi Saraogi wrote: > --- > ffmpeg.c | 9 +++-- > 1 file changed, 7 insertions(+), 2 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Those who are too smart to engage in politics are

[FFmpeg-devel] [PATCH] filtfmts: Avoid null pointer dereferences

2015-04-02 Thread Himangi Saraogi
--- libavfilter/filtfmts.c | 58 -- 1 file changed, 32 insertions(+), 26 deletions(-) diff --git a/libavfilter/filtfmts.c b/libavfilter/filtfmts.c index c1025b9..d214c6c 100644 --- a/libavfilter/filtfmts.c +++ b/libavfilter/filtfmts.c @@ -34,32 +34,

[FFmpeg-devel] [PATCH] ffmpeg: Avoid null pointer dereferences

2015-04-02 Thread Himangi Saraogi
--- ffmpeg.c | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 67ce1f3..8bf507a 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -3171,17 +3171,22 @@ static int transcode_init(void) const char *in_codec_name = "?"; const char *

Re: [FFmpeg-devel] [PATCH] Relaxed pattern to find ProRes in MXF.

2015-04-02 Thread Steve Dierker
Hello, > > I am currently looking at the whole range of UL's to see if they can > be tidied up, but that will also take some time, so perhaps in the > interests of progress use your suggestion for now *but* change the > inline comment to something like:- > > /* Avid MC7 Prores */ > > That will

Re: [FFmpeg-devel] [PATCH]Support alaw in imkh files

2015-04-02 Thread Carl Eugen Hoyos
Carl Eugen Hoyos ag.or.at> writes: > diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c > index a0b5738..2ade9d4 100644 > --- a/libavformat/mpeg.c > +++ b/libavformat/mpeg.c > -547,6 +547,8 redo: > codec_id = AV_CODEC_ID_ADPCM_ADX; > // Auto-detect AC-3 >

[FFmpeg-devel] [PATCH]Support alaw in imkh files

2015-04-02 Thread Carl Eugen Hoyos
Hi! Attached patch fixes another sample from ticket #4182. Please comment, Carl Eugen diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index a0b5738..2ade9d4 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -547,6 +547,8 @@ redo: codec_id = AV_CODEC_ID_ADPCM_ADX;

Re: [FFmpeg-devel] [PATCH] Relaxed pattern to find ProRes in MXF.

2015-04-02 Thread tim nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/04/15 16:32, Steve Dierker wrote: > Hello, > >> I support this patch if you didn't make the >> file yourself. >> I only had one sample. > > This sample is from the same customer as the other ProRes in MXF sampl e > I uploaded for the bug. (Don