Re: [FFmpeg-devel] [PATCH 0/3] libhdcd and things

2016-08-22 Thread Burt P.
Hi. On Mon, Aug 22, 2016 at 7:52 PM, James Almer wrote: > A couple comments about the library. > > -The name hdcd_decode2 is still used in some places after your rename > commit, like the installed header and main c file. That is intentional. I want to keep the code there

Re: [FFmpeg-devel] [PATCH] configure: force _WIN32_WINNT >= 0x0502 on mingw32 targets

2016-08-22 Thread James Almer
On 8/22/2016 9:16 PM, Michael Niedermayer wrote: > On Mon, Aug 22, 2016 at 05:48:13PM -0300, James Almer wrote: >> On 8/20/2016 12:03 AM, Michael Niedermayer wrote: >>> On Fri, Aug 19, 2016 at 03:39:58PM -0300, James Almer wrote: Windows versions earlier than XP are not supported.

Re: [FFmpeg-devel] [PATCH 0/3] libhdcd and things

2016-08-22 Thread James Almer
On 8/22/2016 8:01 PM, Burt P wrote: > I have created a stand-alone library of the HDCD decoder from af_hdcd, > and called it libhdcd. [ https://github.com/bp0/libhdcd ] A couple comments about the library. -The name hdcd_decode2 is still used in some places after your rename commit, like the

Re: [FFmpeg-devel] [PATCH] configure: force _WIN32_WINNT >= 0x0502 on mingw32 targets

2016-08-22 Thread Michael Niedermayer
On Mon, Aug 22, 2016 at 05:48:13PM -0300, James Almer wrote: > On 8/20/2016 12:03 AM, Michael Niedermayer wrote: > > On Fri, Aug 19, 2016 at 03:39:58PM -0300, James Almer wrote: > >> Windows versions earlier than XP are not supported. > >> > >> Should fix compilation of command line tools. > >> >

[FFmpeg-devel] [PATCH] webm_chunk: Set pts precision to milliseconds

2016-08-22 Thread Vignesh Venkatasubramanian
Milliseconds is the de-factor precision for timestamps in Matroska/WebM media. Signed-off-by: Vignesh Venkatasubramanian --- libavformat/webm_chunk.c | 5 + 1 file changed, 5 insertions(+) diff --git a/libavformat/webm_chunk.c b/libavformat/webm_chunk.c index

Re: [FFmpeg-devel] [GSoC] Motion Interpolation

2016-08-22 Thread Andy Furniss
Davinder Singh wrote: On Wed, Jun 1, 2016 at 4:13 AM Davinder Singh wrote: [...] final patch attached. please review. this includes bug fixes and various other improvements. also added filter docs. Nice I can see the edges are better than the last version. The

[FFmpeg-devel] [GSoC] Tee muxer improvement project (fifo muxer)

2016-08-22 Thread Jan Sebechlebsky
Hello, GSoC 2016 is almost over, so I am sending brief summary of the project (links to my work are at the end of this e-mail). Original plan was to improve tee muxer so that: 1. outputs will not block each other (occasional long I/O operation on single output will not delay processing of

[FFmpeg-devel] [PATCH 1/3] fate: add test for af_hdcd analyze mode

2016-08-22 Thread Burt P
Signed-off-by: Burt P --- tests/fate/filter-audio.mak | 6 ++ 1 file changed, 6 insertions(+) diff --git a/tests/fate/filter-audio.mak b/tests/fate/filter-audio.mak index d1d9d59..2066fa9 100644 --- a/tests/fate/filter-audio.mak +++ b/tests/fate/filter-audio.mak @@ -238,6

[FFmpeg-devel] [PATCH 3/3] af_hdcd: for easier maintenance alongside libhdcd

2016-08-22 Thread Burt P
Mostly just re-arranges some code to make it easier to update this filter and libhdcd together. filter_frame() is much simpler as a result. * use the HDCD detection data structure and functions from libhdcd * moved detection code out of filter_frame() * moved analyze_mode preparation out of

[FFmpeg-devel] [PATCH 2/3] af_hdcd: check return value of av_frame_copy_props()

2016-08-22 Thread Burt P
Anton Khirnov: "[av_frame_copy_props()] potentially contains memory allocation, so the return value needs to be checked." Signed-off-by: Burt P --- libavfilter/af_hdcd.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libavfilter/af_hdcd.c

[FFmpeg-devel] [PATCH 0/3] libhdcd and things

2016-08-22 Thread Burt P
I have created a stand-alone library of the HDCD decoder from af_hdcd, and called it libhdcd. [ https://github.com/bp0/libhdcd ] I hope to use it in patches/plugins to some media players, and still be able to easily maintain them both together. There is some concern that I wanted to remove the

Re: [FFmpeg-devel] [GSoC] Motion Interpolation

2016-08-22 Thread Davinder Singh
On Wed, Jun 1, 2016 at 4:13 AM Davinder Singh wrote: > [...] > final patch attached. please review. this includes bug fixes and various other improvements. also added filter docs. 0001-added-motion-estimation-and-interpolation-filters-v3F.patch Description: Binary data

Re: [FFmpeg-devel] [PATCH 3/3] avformat: fix decoded creation_time timestamps

2016-08-22 Thread Marton Balint
On Sun, 14 Aug 2016, Marton Balint wrote: On Fri, 1 Jul 2016, Marton Balint wrote: Use proper ISO 8601 timestamps which also signal that they are in UTC. This changes the format of creation_time and modification_date metadata values from 2016-06-01 22:30:00 to

Re: [FFmpeg-devel] [PATCH] configure: force _WIN32_WINNT >= 0x0502 on mingw32 targets

2016-08-22 Thread James Almer
On 8/20/2016 12:03 AM, Michael Niedermayer wrote: > On Fri, Aug 19, 2016 at 03:39:58PM -0300, James Almer wrote: >> Windows versions earlier than XP are not supported. >> >> Should fix compilation of command line tools. >> >> Signed-off-by: James Almer >> --- >> configure | 2

[FFmpeg-devel] [GSoC] [PATCH 2/2] mlpenc: Working MLP/TrueHD encoder

2016-08-22 Thread Jai Luthra
* Multichannel support for TrueHD is experimental There should be downmix substreams present for 2+ channel bitstreams, but ffmpeg decoder doesn't need it. Will add support for this soon. * There might be lossless check failures on LFE channels * 32-bit sample support has been removed

[FFmpeg-devel] [GSoC] [PATCH 1/2] lavc/lpc: Add min_shift parameter in LPC

2016-08-22 Thread Jai Luthra
The min_shift parameter is needed by the MLP encoder Signed-off-by: Jai Luthra --- libavcodec/alacenc.c | 4 +++- libavcodec/flacenc.c | 3 ++- libavcodec/lpc.c | 13 - libavcodec/lpc.h | 2 +- libavcodec/ra144enc.c | 2 +- 5 files changed, 15

Re: [FFmpeg-devel] [PATCH v5 03/11] avformat/fifo: Add fate test

2016-08-22 Thread Marton Balint
On Fri, 12 Aug 2016, Michael Niedermayer wrote: On Fri, Aug 12, 2016 at 12:20:22PM +0200, sebechlebsky...@gmail.com wrote: From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- Changes since the last version of the patch: - fixed

Re: [FFmpeg-devel] [PATCH v12 01/11] avformat: Add fifo pseudo-muxer

2016-08-22 Thread Marton Balint
On Thu, 18 Aug 2016, sebechlebsky...@gmail.com wrote: From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- Changes since the last version of the patch: - fixed mistakes in docs (missing "is", 2xmisspelled "unsuccessful") - removed

Re: [FFmpeg-devel] [PATCH 2/2] MAINTAINERS: Add myself as maintainer of fifo muxer

2016-08-22 Thread Marton Balint
On Sun, 14 Aug 2016, Marton Balint wrote: On Mon, 25 Jul 2016, sebechlebsky...@gmail.com wrote: From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS

[FFmpeg-devel] FFmpeg in Outreachy Round 13 / 2016-december

2016-08-22 Thread Michael Niedermayer
Hi outreachy admins FFmpeg would like to participate in Outreachy again. we have had i believe 2 applicants contact us already on our mailing list. This round, co-ordinators / admins will be Paul B Mahol (durandal_1707 in #ffmpeg-devel on Freenode IRC, onemda AT gmail DOT com), Reynaldo Verdejo

Re: [FFmpeg-devel] [PATCH] doc: Add murge script, for analyzing 3 way conflicts.

2016-08-22 Thread Michael Niedermayer
On Mon, Aug 22, 2016 at 06:39:24PM +0200, Nicolas George wrote: > Le sextidi 6 fructidor, an CCXXIV, Michael Niedermayer a écrit : > > nicolas, ok if i apply it as is ? > > Just like Clément, I was only pointing possible avenues for enhancement. ok applied thx [...] -- Michael GnuPG

Re: [FFmpeg-devel] [PATCH] doc: Add murge script, for analyzing 3 way conflicts.

2016-08-22 Thread Nicolas George
Le sextidi 6 fructidor, an CCXXIV, Michael Niedermayer a écrit : > nicolas, ok if i apply it as is ? Just like Clément, I was only pointing possible avenues for enhancement. Regards, -- Nicolas George signature.asc Description: Digital signature

Re: [FFmpeg-devel] [PATCH] doc: Add murge script, for analyzing 3 way conflicts.

2016-08-22 Thread Michael Niedermayer
On Mon, Aug 22, 2016 at 06:13:05PM +0200, Clément Bœsch wrote: > On Mon, Aug 22, 2016 at 06:08:08PM +0200, Michael Niedermayer wrote: > > On Mon, Aug 22, 2016 at 11:29:45AM +0200, Clément Bœsch wrote: > > > On Thu, Aug 18, 2016 at 06:45:23PM +0200, Michael Niedermayer wrote: > > > > TODO:

Re: [FFmpeg-devel] [PATCH] doc: Add murge script, for analyzing 3 way conflicts.

2016-08-22 Thread Clément Bœsch
On Mon, Aug 22, 2016 at 06:08:08PM +0200, Michael Niedermayer wrote: > On Mon, Aug 22, 2016 at 11:29:45AM +0200, Clément Bœsch wrote: > > On Thu, Aug 18, 2016 at 06:45:23PM +0200, Michael Niedermayer wrote: > > > TODO: tempfiles > > > > > > Signed-off-by: Michael Niedermayer

Re: [FFmpeg-devel] [PATCH] doc: Add murge script, for analyzing 3 way conflicts.

2016-08-22 Thread Michael Niedermayer
On Mon, Aug 22, 2016 at 11:29:45AM +0200, Clément Bœsch wrote: > On Thu, Aug 18, 2016 at 06:45:23PM +0200, Michael Niedermayer wrote: > > TODO: tempfiles > > > > Signed-off-by: Michael Niedermayer > > --- > > doc/libav-merge.txt | 4 > > tools/murge | 13

[FFmpeg-devel] [PATCH] avfilter: add hysteresis filter

2016-08-22 Thread Paul B Mahol
Hi, patch attached. 0001-avfilter-add-hysteresis-filter.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH v2 04/11] avformat/muxers: Add non-blocking mode support for av_write_trailer

2016-08-22 Thread Michael Niedermayer
On Mon, Aug 22, 2016 at 04:27:16PM +0200, Jan Sebechlebsky wrote: > > > On 08/22/2016 09:51 AM, Michael Niedermayer wrote: > >On Thu, Aug 11, 2016 at 02:38:29PM +0200, sebechlebsky...@gmail.com wrote: > >>From: Jan Sebechlebsky > >> > >>This makes av_write_trailer not

Re: [FFmpeg-devel] [GSOC][PATCH 3/4] median compare function for ffv1 me

2016-08-22 Thread Michael Niedermayer
On Thu, Aug 18, 2016 at 02:53:29PM +0300, Станислав Долганов wrote: > Trailing whitespaces were removed. > > 2016-08-17 14:07 GMT+03:00 Станислав Долганов > : > > > Hello, > > > > I'm sending the patch set with implementation of GSoC project -- FFV1 P > > frame

Re: [FFmpeg-devel] [PATCH v2 04/11] avformat/muxers: Add non-blocking mode support for av_write_trailer

2016-08-22 Thread Jan Sebechlebsky
On 08/22/2016 09:51 AM, Michael Niedermayer wrote: On Thu, Aug 11, 2016 at 02:38:29PM +0200, sebechlebsky...@gmail.com wrote: From: Jan Sebechlebsky This makes av_write_trailer not to free the resources if write_trailer call returns AVERROR(EAGAIN) allowing

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: implement floating point decoding

2016-08-22 Thread Thilo Borgmann
Am 16.08.16 um 19:21 schrieb Thilo Borgmann: > Am 12.08.16 um 14:27 schrieb Umair Khan: >> Hi, >> >> On Mon, Aug 8, 2016 at 11:09 PM, Carl Eugen Hoyos wrote: >>> 2016-08-08 19:10 GMT+02:00 Umair Khan : Attached the 3 separate patches. >>> >>> Which

Re: [FFmpeg-devel] [PATCH 1/2] pixdesc: Order function prototypes semantically

2016-08-22 Thread Michael Niedermayer
On Sun, Aug 21, 2016 at 05:09:00PM -0700, Timothy Gu wrote: > --- > libavutil/pixdesc.h | 194 > ++-- > 1 file changed, 97 insertions(+), 97 deletions(-) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Re: [FFmpeg-devel] [PATCH] avfilter: add maskedclamp filter

2016-08-22 Thread Paul B Mahol
On Monday, August 22, 2016, Moritz Barsnick wrote: > On Mon, Aug 22, 2016 at 11:27:12 +0200, Paul B Mahol wrote: > > I have no idea what the result looks like, but perhaps "looks like" is > thinking too unhypothetical. ;-) Anyways: > > > +Clamp the first input stream with the

Re: [FFmpeg-devel] [PATCH] avfilter: add maskedclamp filter

2016-08-22 Thread Moritz Barsnick
On Mon, Aug 22, 2016 at 11:27:12 +0200, Paul B Mahol wrote: I have no idea what the result looks like, but perhaps "looks like" is thinking too unhypothetical. ;-) Anyways: > +Clamp the first input stream with the second input and third input stream. Perhaps: Clamp the first input stream's

Re: [FFmpeg-devel] [PATCH 08/11] avformat/mux: Restore original ts in write_packet on error

2016-08-22 Thread Michael Niedermayer
On Tue, Aug 02, 2016 at 03:24:19PM +0200, sebechlebsky...@gmail.com wrote: > From: Jan Sebechlebsky > > Restore original timestamps in write_packet() if the > actual write operation was not successfull. This allows > to pass the same packet to nonblocking muxer

Re: [FFmpeg-devel] [PATCH v2] tests/fate/vcodec: add dnxhr mov tests

2016-08-22 Thread Michael Niedermayer
On Mon, Aug 22, 2016 at 11:32:31AM +1000, Mark Reid wrote: > --- > tests/fate/vcodec.mak| 18 +- > tests/ref/vsynth/vsynth1-dnxhd-hr-hq-mov | 4 > tests/ref/vsynth/vsynth1-dnxhd-hr-lb-mov | 4 > tests/ref/vsynth/vsynth1-dnxhd-hr-sq-mov

[FFmpeg-devel] [PATCH] avfilter: add maskedclamp filter

2016-08-22 Thread Paul B Mahol
Hi, patch attached. 0001-avfilter-add-maskedclamp-filter.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] doc: Add murge script, for analyzing 3 way conflicts.

2016-08-22 Thread Clément Bœsch
On Thu, Aug 18, 2016 at 06:45:23PM +0200, Michael Niedermayer wrote: > TODO: tempfiles > > Signed-off-by: Michael Niedermayer > --- > doc/libav-merge.txt | 4 > tools/murge | 13 + > 2 files changed, 17 insertions(+) > create mode 100755

Re: [FFmpeg-devel] Outreachy 2016 december

2016-08-22 Thread Michael Niedermayer
On Fri, Aug 19, 2016 at 08:17:48PM +0200, Michael Niedermayer wrote: > On Fri, Aug 19, 2016 at 11:12:20AM +0200, Paul B Mahol wrote: > > On 8/18/16, Michael Niedermayer wrote: > > > On Thu, Aug 18, 2016 at 11:27:49PM +0530, Umair Khan wrote: > > >> On Wed, Aug 17, 2016 at

Re: [FFmpeg-devel] [PATCH 2/6] lavf/vpp: Enable vpp filter, an Intel GPU accelerated scaler.

2016-08-22 Thread Paul B Mahol
On 8/22/16, Nablet Developer wrote: > Hi Paul, > > Do you have any ideas of better name for this? > > The term VPP is Video Processing Pipeline. This > abbreviation is used by Intel in their documentation. > Ex https://software.intel.com/en-us/node/628415 > Do not top post.

Re: [FFmpeg-devel] [PATCH 2/6] lavf/vpp: Enable vpp filter, an Intel GPU accelerated scaler.

2016-08-22 Thread Nablet Developer
Hi Micheal, Sure. Fixed. Will send with other changes (if other comments will require them) On 16.08.2016 21:33, Michael Niedermayer wrote: On Tue, Aug 16, 2016 at 05:10:03PM +0700, Nablet Developer wrote: From: ChaoX A Liu Signed-off-by: ChaoX A Liu

Re: [FFmpeg-devel] [PATCH 2/6] lavf/vpp: Enable vpp filter, an Intel GPU accelerated scaler.

2016-08-22 Thread Nablet Developer
Hi Paul, Do you have any ideas of better name for this? The term VPP is Video Processing Pipeline. This abbreviation is used by Intel in their documentation. Ex https://software.intel.com/en-us/node/628415 On 16.08.2016 17:14, Paul B Mahol wrote: On 8/16/16, Nablet Developer

Re: [FFmpeg-devel] [PATCH v2 04/11] avformat/muxers: Add non-blocking mode support for av_write_trailer

2016-08-22 Thread Michael Niedermayer
On Thu, Aug 11, 2016 at 02:38:29PM +0200, sebechlebsky...@gmail.com wrote: > From: Jan Sebechlebsky > > This makes av_write_trailer not to free the resources if write_trailer > call returns AVERROR(EAGAIN) allowing repeated calls of write_trailer of > non-blocking