Re: [FFmpeg-devel] [PATCH] configure: fix convoluted shlib code

2014-12-21 Thread Michael Niedermayer
On Sun, Dec 21, 2014 at 03:54:33AM +0100, Michael Niedermayer wrote: > Fixes Ticket 4199 > > Signed-off-by: Michael Niedermayer > --- > configure |4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) forget this patch, this fails to set the default correctly on mingw32 ill send a better

[FFmpeg-devel] [PATCH] configure: fix convoluted shlib code

2014-12-21 Thread Michael Niedermayer
Fixes Ticket 4199 Signed-off-by: Michael Niedermayer --- configure |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 87be058..e73d15c 100755 --- a/configure +++ b/configure @@ -2684,7 +2684,6 @@ docdir_default='${prefix}/share/doc/ffmpeg' incd

[FFmpeg-devel] [PATCH] avfilter/vf_boxblur: generate supported pixfmt list instead of hardcoding

2014-12-21 Thread Michael Niedermayer
This adds support for several more >8bit planar formats Signed-off-by: Michael Niedermayer --- libavfilter/vf_boxblur.c | 26 -- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/libavfilter/vf_boxblur.c b/libavfilter/vf_boxblur.c index d292780..89cf015 10

[FFmpeg-devel] [PATCH 1/2] lavd/avdevice: introduce helper functions for sink/sources listing

2014-12-21 Thread Lukasz Marek
TODO: bump minor, update doc/APIchanges Signed-off-by: Lukasz Marek --- libavdevice/Makefile | 1 + libavdevice/avdevice.c | 39 + libavdevice/avdevice.h | 22 +++ libavdevice/internal.h | 27 +++ libavdevice/utils.c| 59

[FFmpeg-devel] [PATCH 2/2] cmdutils: use helper functions for listing sinks/sources

2014-12-21 Thread Lukasz Marek
List device callback must be able to return valid list without opening device. This callback should return input values for open function, not vice-versa. Read header funtion is very likey to fail without proper configuration provided. Signed-off-by: Lukasz Marek --- cmdutils.c | 27 ++--

[FFmpeg-devel] [PATCH] lavd/avdevice: remove av_ prefix from private function

2014-12-21 Thread Lukasz Marek
Signed-off-by: Lukasz Marek --- libavdevice/avdevice.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/libavdevice/avdevice.c b/libavdevice/avdevice.c index d59e99a..72e573d 100644 --- a/libavdevice/avdevice.c +++ b/libavdevice/avdevice.c @@ -77,8 +77,8

[FFmpeg-devel] [PATCH] tools/probetest: support testing a single specified input format

2014-12-21 Thread Michael Niedermayer
This reduces the time the test takes significantly when only one formats needs to be tested Signed-off-by: Michael Niedermayer --- tools/probetest.c | 23 +-- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/tools/probetest.c b/tools/probetest.c index 78327de.

Re: [FFmpeg-devel] [PATCH] lavfi: Port fspp to FFmpeg

2014-12-21 Thread Loren Merritt
On Fri, 19 Dec 2014, Clément Bsch wrote: > On Fri, Dec 19, 2014 at 04:40:21PM +0100, Michael Niedermayer wrote: > [...] > > then one filter that i remember was requested (longer ago) is > > nnedi3 but that would need to have its asm removed or ported which > > is not trivial i suspect > > > > The

Re: [FFmpeg-devel] [PATCH] tools/probetest: support testing a single specified input format

2014-12-21 Thread Reimar Döffinger
On 21.12.2014, at 21:09, Michael Niedermayer wrote: > +int j; > + > +for (j = i = 1; i +if (av_isdigit(argv[i][0])) { > +if (j++ == 1) { > +retry_count = atoi(argv[i]); > +} else > +max_size = atoi(argv[i]); > +} else

[FFmpeg-devel] [PATCH 2/2] cmdutils: use av_match_name to filter devices

2014-12-21 Thread Lukasz Marek
Device name may be coma-separated list. Use dedicated funtion to compare. Signed-off-by: Lukasz Marek --- cmdutils.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmdutils.c b/cmdutils.c index fb1883a..4a4f311 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -2173,7 +217

[FFmpeg-devel] [PATCH 1/2] lavd/v4l2: implement list device callback

2014-12-21 Thread Lukasz Marek
Signed-off-by: Lukasz Marek --- libavdevice/v4l2.c | 58 ++ 1 file changed, 58 insertions(+) diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index 2969980..9d4d7ae 100644 --- a/libavdevice/v4l2.c +++ b/libavdevice/v4l2.c @@ -1006,6 +1006,6

Re: [FFmpeg-devel] [PATCH] avcodec.h: document needed buffer size for av_get_codec_tag_string()

2014-12-21 Thread Reimar Döffinger
On 21.12.2014, at 00:10, Nicolas George wrote: > Le primidi 1er nivôse, an CCXXIII, Thomas Volkert a écrit : >> If the code is changed, the documentation should be changed as well. > > That will not update applications written with the documentation for the old > version but built with the new ve

Re: [FFmpeg-devel] [PATCH 1/2] lavd/v4l2: implement list device callback

2014-12-21 Thread Lukasz Marek
On 21.12.2014 22:43, Lukasz Marek wrote: Signed-off-by: Lukasz Marek --- libavdevice/v4l2.c | 58 ++ 1 file changed, 58 insertions(+) diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index 2969980..9d4d7ae 100644 --- a/libavdevice/v4l2.

Re: [FFmpeg-devel] [PATCH] tools/probetest: support testing a single specified input format

2014-12-21 Thread Michael Niedermayer
On Sun, Dec 21, 2014 at 10:36:10PM +0100, Reimar Döffinger wrote: > On 21.12.2014, at 21:09, Michael Niedermayer wrote: > > +int j; > > + > > +for (j = i = 1; i > +if (av_isdigit(argv[i][0])) { > > +if (j++ == 1) { > > +retry_count = atoi(argv[i]); > > +

[FFmpeg-devel] [PATCH] tools/probetest: support testing a single specified input format

2014-12-21 Thread Michael Niedermayer
This reduces the time the test takes significantly when only one formats needs to be tested Signed-off-by: Michael Niedermayer --- tools/probetest.c | 37 +++-- 1 file changed, 31 insertions(+), 6 deletions(-) diff --git a/tools/probetest.c b/tools/probetest.c

Re: [FFmpeg-devel] [PATCH] lavd/avdevice: remove av_ prefix from private function

2014-12-21 Thread Michael Niedermayer
On Sun, Dec 21, 2014 at 09:03:49PM +0100, Lukasz Marek wrote: > Signed-off-by: Lukasz Marek > --- > libavdevice/avdevice.c | 20 ++-- > 1 file changed, 10 insertions(+), 10 deletions(-) LGTM [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Its n

Re: [FFmpeg-devel] [PATCH] lavf/tcp: apply minor fixes to documentation

2014-12-21 Thread Michael Niedermayer
On Wed, Nov 12, 2014 at 04:14:11PM +0100, Stefano Sabatini wrote: > In particular, add an Examples section and correct the unit of the > listen_timeout option value, from microseconds to milliseconds. > --- > doc/protocols.texi | 21 +++-- > libavformat/tcp.c | 6 +++--- > 2 file

[FFmpeg-devel] [PATCH] libavformat/mxfdec.c: support demuxing opatom audio without index

2014-12-21 Thread Mark Reid
--- libavformat/mxfdec.c | 66 +--- 1 file changed, 63 insertions(+), 3 deletions(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index 4715169..92c864f 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -152,6 +152,8 @@ typ

[FFmpeg-devel] [PATCH] libavformat/mxfdec.c: support demuxing opatom audio without index

2014-12-21 Thread Mark Reid
hi, Media Composer generates audio OPAtom mxf files that don't have index segments. All the uncompressed pcm audio essence data contained in a single KLV packet. This is my initial attempt to get demuxing working, I'm not too familiar with demuxing audio or generating packets. I'm sure I'm not s

Re: [FFmpeg-devel] [PATCH 2/2] lavfi/vf_zoompan: fix PTS logic.

2014-12-21 Thread Michael Niedermayer
On Mon, Dec 01, 2014 at 04:43:17PM +0100, Nicolas George wrote: > Fix non-monotonic output PTS when input PTS and duration > are set with compatible values. > > Signed-off-by: Nicolas George > --- > libavfilter/vf_zoompan.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) with these 2