Re: [FFmpeg-devel] [PATCH] libutvideo: remove libutvideo wrapper

2014-10-19 Thread Stephen Hutchinson
On Sat, Oct 18, 2014 at 3:05 PM, Michael Niedermayer wrote: > On Sat, Oct 18, 2014 at 03:30:33AM -0400, Stephen Hutchinson wrote: >> The wrappers also don't support the 10-bit variants of Ut Video's >> 4:2:2 codec, but when I last checked, the native one didn't either. > > where can i find a sampl

[FFmpeg-devel] [PATCH] vf_idet frame metadata

2014-10-19 Thread Kevin Mitchell
The attached patch adds the cumulative tff / bff / progressive / undetermined counts to the AVFrame metadata. The use case is to decide which deinterlacing filter to insert in an mpv lua script. From a06cf8a453139964bc7dd7c27612692a3f660b0d Mon Sep 17 00:00:00 2001 From: Kevin Mitchell Date: Sun,

[FFmpeg-devel] [PATCH] lavd: export all symbols with av prefix

2014-10-19 Thread Lukasz Marek
Signed-off-by: Lukasz Marek --- libavdevice/libavdevice.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavdevice/libavdevice.v b/libavdevice/libavdevice.v index 663af85..d7c86ba 100644 --- a/libavdevice/libavdevice.v +++ b/libavdevice/libavdevice.v @@ -1,4 +1,4 @@ LIBAVD

Re: [FFmpeg-devel] [PATCH] ffprobe: Add support for color_trc/color_pri/chroma_loc

2014-10-19 Thread Stefano Sabatini
On date Friday 2014-10-10 05:29:00 +0200, Michael Niedermayer encoded: > Idea from: a2c00d22e71d13b72828147be86aa9e961c6cae6 > Signed-off-by: Michael Niedermayer > --- > doc/ffprobe.xsd|3 +++ > ffprobe.c | 16 > tests/ref/fate/ffprobe_c

[FFmpeg-devel] [PATCH] rtmpproto: Don't mistake app for playpath.

2014-10-19 Thread Kacper Michajłow
App is always first in the url path. This commit fixes the case when URL is provides as "rtmp://server[:port]/app" and playpath is declared in AVOption. Signed-off-by: Kacper Michajłow --- libavformat/rtmpproto.c | 33 +++-- 1 file changed, 19 insertions(+), 14 deleti

[FFmpeg-devel] [PATCH 2/2] avcodec/libutvideodec: Support YUV422P10

2014-10-19 Thread Michael Niedermayer
Based on ConvertToPlanar() from libutvideo libutvideo sadly does not seem to support exporting its internal planar buffers Signed-off-by: Michael Niedermayer --- libavcodec/libutvideodec.cpp | 55 +- 1 file changed, 54 insertions(+), 1 deletion(-) diff

[FFmpeg-devel] [PATCH 1/2] avcodec/libutvideodec: print extradata size if unsupported

2014-10-19 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavcodec/libutvideodec.cpp |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/libutvideodec.cpp b/libavcodec/libutvideodec.cpp index 60dbd15..36dc952 100644 --- a/libavcodec/libutvideodec.cpp +++ b/libavcodec/libutvideodec.cp

Re: [FFmpeg-devel] [PATCH] libutvideo: remove libutvideo wrapper

2014-10-19 Thread Michael Niedermayer
On Sun, Oct 19, 2014 at 03:41:22AM -0400, Stephen Hutchinson wrote: > On Sat, Oct 18, 2014 at 3:05 PM, Michael Niedermayer wrote: > > On Sat, Oct 18, 2014 at 03:30:33AM -0400, Stephen Hutchinson wrote: > >> The wrappers also don't support the 10-bit variants of Ut Video's > >> 4:2:2 codec, but whe

[FFmpeg-devel] [PATCH] libavfi: added option to vf_perspective to specify transformation by giving destinations of corners of source.

2014-10-19 Thread Nicholas Robbins
Signed-off-by: Nicholas Robbins --- doc/filters.texi | 21 +++ libavfilter/vf_perspective.c | 85 +--- 2 files changed, 86 insertions(+), 20 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index b847635..c612052 100644 ---

Re: [FFmpeg-devel] [PATCH] vf_idet frame metadata

2014-10-19 Thread Michael Niedermayer
On Sun, Oct 19, 2014 at 04:33:59AM -0700, Kevin Mitchell wrote: > The attached patch adds the cumulative tff / bff / progressive / > undetermined counts to the AVFrame metadata. The use case is to decide > which deinterlacing filter to insert in an mpv lua script. > vf_idet.c |6 ++ > 1 f

Re: [FFmpeg-devel] [PATCH] lavd/alsa: implement get_device_list callbacks

2014-10-19 Thread wm4
On Sat, 18 Oct 2014 20:36:22 +0200 Lukasz Marek wrote: > --- > libavdevice/alsa-audio-common.c | 60 > + > libavdevice/alsa-audio-dec.c| 6 + > libavdevice/alsa-audio-enc.c| 6 + > libavdevice/alsa-audio.h| 2 ++ > 4 files chang

Re: [FFmpeg-devel] [PATCH] rtmpproto: Don't mistake app for playpath.

2014-10-19 Thread Michael Niedermayer
On Sun, Oct 19, 2014 at 02:12:14PM +0200, Kacper Michajłow wrote: > App is always first in the url path. This commit fixes the case when URL is > provides as "rtmp://server[:port]/app" and playpath is declared in > AVOption. > > Signed-off-by: Kacper Michajłow > --- > libavformat/rtmpproto.c | 3

[FFmpeg-devel] [PATCH] tiffenc: properly compute packet size

2014-10-19 Thread Christophe Gisquet
Hi, the attached patch fixes part of ticket #3874, for the part ffmpeg's encoder is responsible for. The remainder of the issue is decoders not correctly handling unusual chroma subsamplings. Note: I have kept the computation from the width in raw bytes as I suspect this can be the worst case for

Re: [FFmpeg-devel] [PATCH] libavfi: added option to vf_perspective to specify transformation by giving destinations of corners of source.

2014-10-19 Thread Michael Niedermayer
On Sun, Oct 19, 2014 at 09:20:22AM -0400, Nicholas Robbins wrote: > Signed-off-by: Nicholas Robbins > --- > doc/filters.texi | 21 +++ > libavfilter/vf_perspective.c | 85 > +--- > 2 files changed, 86 insertions(+), 20 deletions(-) app

Re: [FFmpeg-devel] [PATCH] rtmpproto: Don't mistake app for playpath.

2014-10-19 Thread Kacper Michajłow
2014-10-19 16:40 GMT+02:00 Michael Niedermayer : > > On Sun, Oct 19, 2014 at 02:12:14PM +0200, Kacper Michajłow wrote: > > App is always first in the url path. This commit fixes the case when URL is > > provides as "rtmp://server[:port]/app" and playpath is declared in > > AVOption. > > > > Signed-

[FFmpeg-devel] [PATCH v2] rtmpproto: Don't mistake app for playpath.

2014-10-19 Thread Kacper Michajłow
For URLs "rtmp://server[:port]/foo" determine what `foo` refers to. If application name has been defined by the user assume that `foo` is a playpath, otherwise assume application name. Signed-off-by: Kacper Michajłow --- libavformat/rtmpproto.c | 39 +-- 1 fil

Re: [FFmpeg-devel] [PATCH v2] rtmpproto: Don't mistake app for playpath.

2014-10-19 Thread Michael Niedermayer
On Sun, Oct 19, 2014 at 06:16:17PM +0200, Kacper Michajłow wrote: > For URLs "rtmp://server[:port]/foo" determine what `foo` refers to. If > application name has been defined by the user assume that `foo` is a > playpath, otherwise assume application name. > > Signed-off-by: Kacper Michajłow app

Re: [FFmpeg-devel] [PATCH] ffprobe: Add support for color_trc/color_pri/chroma_loc

2014-10-19 Thread Michael Niedermayer
On Sun, Oct 19, 2014 at 01:40:38PM +0200, Stefano Sabatini wrote: > On date Friday 2014-10-10 05:29:00 +0200, Michael Niedermayer encoded: > > Idea from: a2c00d22e71d13b72828147be86aa9e961c6cae6 > > Signed-off-by: Michael Niedermayer > > --- > > doc/ffprobe.xsd|3 +++ > > ffpr

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/libutvideodec: print extradata size if unsupported

2014-10-19 Thread Benoit Fouet
Hi, On 19 October 2014 14:52:16 CEST, Michael Niedermayer wrote: >Signed-off-by: Michael Niedermayer >--- > libavcodec/libutvideodec.cpp |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/libavcodec/libutvideodec.cpp >b/libavcodec/libutvideodec.cpp >index 60dbd15..36dc952

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/libutvideodec: Support YUV422P10

2014-10-19 Thread Benoit Fouet
Hi, On 19 October 2014 14:52:17 CEST, Michael Niedermayer wrote: >Based on ConvertToPlanar() from libutvideo >libutvideo sadly does not seem to support exporting its internal planar >buffers > >Signed-off-by: Michael Niedermayer >--- >libavcodec/libutvideodec.cpp | 55 >

[FFmpeg-devel] [PATCH] libavcodec/makefile: prevent from installing disabled headers.

2014-10-19 Thread Matt Oliver
This stops headers based on disabled functionality from being installed. Things like VDA and VDPAU dont work on windows etc. So any attempt to use these headers will result in compilation errors so best not to install them to avoid confusion. Also no point having a header for functionality that was

Re: [FFmpeg-devel] [PATCH] libavcodec/makefile: prevent from installing disabled headers.

2014-10-19 Thread Michael Niedermayer
On Mon, Oct 20, 2014 at 05:53:05AM +1100, Matt Oliver wrote: > This stops headers based on disabled functionality from being installed. > Things like VDA and VDPAU dont work on windows etc. So any attempt to use > these headers will result in compilation errors so best not to install them > to avoi

Re: [FFmpeg-devel] [PATCH 1/5] Introduce new error codes for 4XX and 5XX replies from remote servers

2014-10-19 Thread Michael Niedermayer
On Sat, Oct 18, 2014 at 12:23:59AM +0400, Andrey Utkin wrote: > --- > libavutil/error.c | 6 ++ > libavutil/error.h | 7 +++ > 2 files changed, 13 insertions(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Democracy is the form of gov

[FFmpeg-devel] [PATCH] add both single and mutiple frame detection metadata in vf_idet

2014-10-19 Thread Kevin Mitchell
Thanks for the quick merge. Unfortunately, i realized i only added the metadata for single frame detection. This patch adds both single and multiple frame detection. From 61bd64c4c408c6842e5599fdaed9a4353696c337 Mon Sep 17 00:00:00 2001 From: Kevin Mitchell Date: Sun, 19 Oct 2014 13:32:56 -0700 Su

Re: [FFmpeg-devel] [PATCH] add both single and mutiple frame detection metadata in vf_idet

2014-10-19 Thread Kevin Mitchell
Doh. Not having a good day. Use consistent metadata tags. On Sun, Oct 19, 2014 at 1:37 PM, Kevin Mitchell wrote: > Thanks for the quick merge. Unfortunately, i realized i only added the > metadata for single frame detection. This patch adds both single and > multiple frame detection. From 36235c8

Re: [FFmpeg-devel] [PATCH] add both single and mutiple frame detection metadata in vf_idet

2014-10-19 Thread Clément Bœsch
On Sun, Oct 19, 2014 at 02:34:40PM -0700, Kevin Mitchell wrote: > Doh. Not having a good day. Use consistent metadata tags. > > On Sun, Oct 19, 2014 at 1:37 PM, Kevin Mitchell wrote: > > Thanks for the quick merge. Unfortunately, i realized i only added the > > metadata for single frame detection

Re: [FFmpeg-devel] [PATCH] mxfdec: minor simplification.

2014-10-19 Thread Tomas Härdin
On Sat, 2014-10-18 at 15:26 +0200, Reimar Döffinger wrote: > Signed-off-by: Reimar Döffinger > --- > libavformat/mxfdec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c > index 9306cc6..f916d01 100644 > --- a/libavformat/mxfde

Re: [FFmpeg-devel] [PATCH] add both single and mutiple frame detection metadata in vf_idet

2014-10-19 Thread Kevin Mitchell
I've bumped the minor (not micro) version. I hope that's what was wanted. I also added the requested documentation of the metadata fields. Sorry I guess I was following the bad convention that most of the filter metadata isn't documented. On Sun, Oct 19, 2014 at 2:38 PM, Clément Bœsch wrote: > On

Re: [FFmpeg-devel] [PATCH 2/5] Introduce ff_http_averror()

2014-10-19 Thread Michael Niedermayer
On Sat, Oct 18, 2014 at 12:24:00AM +0400, Andrey Utkin wrote: > int ff_http_averror(int status_code, int default_averror) > > This helper function returns AVERROR_ value from 3-digit HTTP status > code. > > Second argument, default_averror, is used if no specific AVERROR_ is > available. It is in

Re: [FFmpeg-devel] [PATCH 3/5] Use ff_http_averror()

2014-10-19 Thread Michael Niedermayer
On Sat, Oct 18, 2014 at 12:24:01AM +0400, Andrey Utkin wrote: > --- > libavformat/http.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB If you think the mosad wants you dead since a

Re: [FFmpeg-devel] [PATCH] matroskadec: execute seekheads recursively

2014-10-19 Thread Rodger Combs
> On Oct 17, 2014, at 17:40, Michael Niedermayer wrote: > > On Fri, Oct 17, 2014 at 03:27:49PM +0200, Michael Niedermayer wrote: >> On Fri, Oct 17, 2014 at 01:55:35AM -0500, Rodger Combs wrote: >>> On Oct 17, 2014, at 01:52, Rodger Combs wrote: > On Oct 17, 2014, at 01:16,

[FFmpeg-devel] [PATCH] v4l2: Make use of the VIDIOC_ENUM_FRAMESIZES ioctl on OpenBSD

2014-10-19 Thread Brad Smith
Make use of the V4L2 VIDIOC_ENUM_FRAMESIZES ioctl on OpenBSD. diff --git a/configure b/configure index 5b16af9..790a5eb 100755 --- a/configure +++ b/configure @@ -4967,6 +4967,7 @@ check_header linux/videodev2.h check_code cc linux/videodev2.h "struct v4l2_frmsizeenum vfse; vfse.discrete.width

Re: [FFmpeg-devel] patch: fix buf in configure to ensure theHAVE_VSX is only enabled when HAVE_ALTIVECT is enabled

2014-10-19 Thread rongyan
Hi, Do you have any more suggestion on this? Does it better if I renew it on latest version? Thanks. Rong Yan -- The world has enough for everyone's need, but not enough for everyone's greed. -- Original -- From: "rong

Re: [FFmpeg-devel] [PATCH] lavd: export all symbols with av prefix

2014-10-19 Thread Reimar Döffinger
On 19.10.2014, at 13:39, Lukasz Marek wrote: > Signed-off-by: Lukasz Marek > --- > libavdevice/libavdevice.v | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavdevice/libavdevice.v b/libavdevice/libavdevice.v > index 663af85..d7c86ba 100644 > --- a/libavdevice/libavdev

Re: [FFmpeg-devel] [PATCH] libavcodec/makefile: prevent from installing disabled headers.

2014-10-19 Thread Reimar Döffinger
On 19.10.2014, at 20:53, Matt Oliver wrote: > This stops headers based on disabled functionality from being installed. > Things like VDA and VDPAU dont work on windows etc. So any attempt to use > these headers will result in compilation errors so best not to install them > to avoid confusion. Als