[FFmpeg-devel] [PATCH] avuti/cpu: add missing check for mmxext to av_force_cpu_flags

2015-03-25 Thread James Almer
Signed-off-by: James Almer --- libavutil/cpu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavutil/cpu.c b/libavutil/cpu.c index 53c1227..1617464 100644 --- a/libavutil/cpu.c +++ b/libavutil/cpu.c @@ -49,6 +49,7 @@ static int flags, checked; void av_force_cpu_flags(int arg){ if (

Re: [FFmpeg-devel] [PATCH] lavfi: add inverse telecine filter

2015-03-25 Thread Carl Eugen Hoyos
Himangi Saraogi gmail.com> writes: > +++ b/Changelog > - libdcadec wrapper > - Drop support for nvenc API before 5.0 > - nvenc H265 encoder > - > +- Detelecine filter Please do not add the empty line. Add a short documentation that emphasizes that the new filter only works with a predefine

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

2015-03-25 Thread Stephan Holljes
I hope this time the patch is formatted correctly. I also attached it in case it is corrupted again. I changed the indentation of the code and used ffurl_open() instead of creating my own listening socket. I am still having some trouble with the Content-Type header. I would guess creating function

Re: [FFmpeg-devel] [PATCH] doc: add a few note for sponsorship candidates.

2015-03-25 Thread Lou Logan
On Wed, 25 Mar 2015 11:10:36 +0100, Nicolas George wrote: > From fca492987eef197aa91a92c2ebe37ac3ff0acc58 Mon Sep 17 00:00:00 2001 > From: Nicolas George > Date: Thu, 19 Mar 2015 21:51:19 +0100 > Subject: [PATCH] doc: add a few note for sponsorship candidates. > +As for FFmpeg, there is not much

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

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

[FFmpeg-devel] [PATCH 3/4] lavu/avstring: add av_append_path_component() funcion

2015-03-25 Thread Mariusz Szczepańczyk
From: Lukasz Marek Convinient function to build paths. --- libavutil/avstring.c| 43 +++ libavutil/avstring.h| 10 ++ tests/ref/fate/avstring | 9 + 3 files changed, 62 insertions(+) diff --git a/libavutil/avstring.c b/libavutil/a

[FFmpeg-devel] [PATCH 0/4] [GSoC] Browsing content on the server qualification task (2nd iteration)

2015-03-25 Thread Mariusz Szczepańczyk
Hi, this set of patches contains my second take on qualification task for "Browsing content on the server" project. Specifically, it adds directory listing api originally written by Lukasz Marek with a couple of fixes responding to the submitted remarks and my implementation of samba protocol.

[FFmpeg-devel] [PATCH 2/4] doc/examples: add directory listing example

2015-03-25 Thread Mariusz Szczepańczyk
From: Lukasz Marek --- .gitignore | 1 + configure| 2 + doc/Makefile | 1 + doc/examples/Makefile| 3 +- doc/examples/avio_list_dir.c | 105 +++ 5 files changed, 111 insertions(+), 1 de

[FFmpeg-devel] [PATCH 1/4] lavf: add directory listing API

2015-03-25 Thread Mariusz Szczepańczyk
From: Lukasz Marek API allows protocol implementations to provide API that allows to list directory content. API is similar to POSIX opendir/readdir/closedir. --- libavformat/avio.c | 74 +++ libavformat/avio.h | 84

Re: [FFmpeg-devel] [PATCH] avfilter/vf_telecine: Fix AV desync by using the first input timestamp

2015-03-25 Thread Michael Niedermayer
On Thu, Mar 26, 2015 at 04:35:28AM +0530, Himangi Saraogi wrote: > --- > libavfilter/vf_telecine.c | 9 - > 1 file changed, 8 insertions(+), 1 deletion(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The real ebay dictionary, page 3 "

[FFmpeg-devel] [PATCH] lavfi: add inverse telecine filter

2015-03-25 Thread Himangi Saraogi
This is an exact inverse of the telecine filter. All parameters passed are same as those to the telecine filter, except for an additional parameter "start_frame" to allow using the filter for a stream that was cut. --- Tested on samples generated using the telecine filter. Changelog

[FFmpeg-devel] [PATCH] avfilter/vf_telecine: Fix AV desync by using the first input timestamp

2015-03-25 Thread Himangi Saraogi
--- libavfilter/vf_telecine.c | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/libavfilter/vf_telecine.c b/libavfilter/vf_telecine.c index a0f28d4..c75395a 100644 --- a/libavfilter/vf_telecine.c +++ b/libavfilter/vf_telecine.c @@ -38,6 +38,7 @@ typedef struct { int

[FFmpeg-devel] Default dynamic range compression on AC3

2015-03-25 Thread Wiebe Cazemier
Hi, What started as a question at the Kodi (XMBC) forum ([1]) on how to turn off Dolby Digital (AC3) dynamic range compression, turned into a patch and then a discussion on Github [2] about the default value for the AC3 dynamic range compression. Kodi, using ffmpeg, didn't set the 'drc_scale'

Re: [FFmpeg-devel] [PATCH 2/2] libavformat/mxfenc: add support for muxing mxf opatom audio

2015-03-25 Thread Mark Reid
On Mar 24, 2015 7:05 AM, "Tomas Härdin" wrote: > > On Sat, 2015-03-21 at 16:45 -0700, Mark Reid wrote: > > --- > > libavformat/mxfenc.c | 100 ++- > > 1 file changed, 83 insertions(+), 17 deletions(-) > > Looks fine as far as I can tell. My only nit

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: Add support for H.265 encoding

2015-03-25 Thread Philip Langdale
On Wed, 25 Mar 2015 21:52:54 + (UTC) Ali KIZIL wrote: > > The update broken the general usage: > > ./ffmpeg -loglevel info -re -i /root/bunny.mp4 -vcodec nvenc -preset > hp -fflags +genpts -vb 24000k -minrate 24000k -maxrate 24000k > -bufsize 48000k -muxrate 26000k -cbr 1 -2pass 0 -r 50 -g

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: Add support for H.265 encoding

2015-03-25 Thread Michael Niedermayer
On Mon, Mar 23, 2015 at 09:41:25PM -0700, Philip Langdale wrote: > Sufficiently new nvenc hardware (GM20x or later) has support for H.265 > encoding. This works the same as the H.264 encoder except the > codec parameters are different. > > Due to the fact that common codec parameters are not share

Re: [FFmpeg-devel] [PATCH] avfilter/vf_telecine: Fix AV desync by using the first input timestamp

2015-03-25 Thread Carl Eugen Hoyos
Himangi Saraogi gmail.com> writes: > -frame->pts = outlink->frame_count * s->ts_unit; > +frame->pts = s->start_time + outlink->frame_count * s->ts_unit; I believe this should be: frame->pts = s->start_time != AV_NOPTS_VALUE ? s->start_time : 0 + outlink->frame_coun

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: Add support for H.265 encoding

2015-03-25 Thread Ali KIZIL
Philip Langdale overt.org> writes: > > On Tue, 24 Mar 2015 09:54:13 +0100 > Timo Rothenpieler rothenpieler.org> wrote: > > > Yes, I did exactly that in my implementation: > > > > https://github.com/BtbN/FFmpeg/commits/nvenc > > > > The code i wrote there is completely untested(Except that h2

[FFmpeg-devel] [PATCH] avfilter/vf_telecine: Fix AV desync by using the first input timestamp

2015-03-25 Thread Himangi Saraogi
--- libavfilter/vf_telecine.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libavfilter/vf_telecine.c b/libavfilter/vf_telecine.c index a0f28d4..9789f37 100644 --- a/libavfilter/vf_telecine.c +++ b/libavfilter/vf_telecine.c @@ -38,6 +38,7 @@ typedef struct { int f

Re: [FFmpeg-devel] [PATCH] avfilter/vf_telecine: Fix AV desync by using the first input timestamp

2015-03-25 Thread Michael Niedermayer
On Thu, Mar 26, 2015 at 01:16:16AM +0530, Himangi Saraogi wrote: > --- > libavfilter/vf_telecine.c | 8 +++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git a/libavfilter/vf_telecine.c b/libavfilter/vf_telecine.c > index a0f28d4..4b46ac4 100644 > --- a/libavfilter/vf_telecine.

[FFmpeg-devel] [PATCH] lavfi: add inverse telecine filter

2015-03-25 Thread Himangi Saraogi
This is an exact inverse of the telecine filter. All parameters passed are same as those to the telecine filter, except for an additional parameter "start_frame" to allow using the filter for a stream that was cut. --- Tested on samples generated using the telecine filter. Changelog

[FFmpeg-devel] [PATCH] avfilter/vf_telecine: Fix AV desync by using the first input timestamp

2015-03-25 Thread Himangi Saraogi
--- libavfilter/vf_telecine.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libavfilter/vf_telecine.c b/libavfilter/vf_telecine.c index a0f28d4..4b46ac4 100644 --- a/libavfilter/vf_telecine.c +++ b/libavfilter/vf_telecine.c @@ -38,6 +38,7 @@ typedef struct { int f

Re: [FFmpeg-devel] [PATCH] lavf/avisynth: fix compilation, remove bundled headers

2015-03-25 Thread Michael Niedermayer
On Wed, Mar 25, 2015 at 01:59:18PM -0400, Stephen Hutchinson wrote: > On Wed, Mar 25, 2015 at 12:49 PM, Michael Niedermayer > wrote: > > ive applied patch 4 from the patchset too, does that fix it ? > > if not please check the remaining 2 patches, i had not applied them > > as they remove 2.5 sup

Re: [FFmpeg-devel] [PATCH 2/4] avisynth: drop support of AviSynth 2.5

2015-03-25 Thread Michael Niedermayer
On Tue, Mar 24, 2015 at 03:23:30PM -0400, Stephen Hutchinson wrote: > If the user attempts to use AviSynth 2.5, an error message will > now tell them they need to upgrade. > --- > compat/avisynth/avisynth_c_25.h | 68 > - > libavformat/avisynth.c |

Re: [FFmpeg-devel] [PATCH 3/4] doc: remove the reference to supporting AviSynth 2.5

2015-03-25 Thread Michael Niedermayer
On Tue, Mar 24, 2015 at 03:23:31PM -0400, Stephen Hutchinson wrote: > --- > doc/general.texi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB No human being will ever know the Truth, for even

Re: [FFmpeg-devel] [PATCH] avfilter/vf_telecine: Add ts_mode option for using the first input timestamp

2015-03-25 Thread Michael Niedermayer
On Thu, Mar 26, 2015 at 12:09:05AM +0530, Himangi Saraogi wrote: > On 26 March 2015 at 00:06, Carl Eugen Hoyos wrote: > > > Himangi Saraogi gmail.com> writes: > > > > > +{"ts_mode", "set to choose timestamp handling as > > > being with respect to the input", OFFSET(ts_mode), > > > > Isn't th

Re: [FFmpeg-devel] [PATCH] doc: add a few note for sponsorship candidates.

2015-03-25 Thread Ronald S. Bultje
Hi, On Wed, Mar 25, 2015 at 6:10 AM, Nicolas George wrote: > Thanks to everyone for the reviews. Here is an updated version trying to > take the remarks into account. > > Regards, No further comments from me :) Thanks, Ronald ___ ffmpeg-devel mailin

Re: [FFmpeg-devel] [PATCH] avfilter/vf_telecine: Add ts_mode option for using the first input timestamp

2015-03-25 Thread Himangi Saraogi
On 26 March 2015 at 00:06, Carl Eugen Hoyos wrote: > Himangi Saraogi gmail.com> writes: > > > +{"ts_mode", "set to choose timestamp handling as > > being with respect to the input", OFFSET(ts_mode), > > Isn't the new behaviour that you implemented a bug fix? > I believe this option is not ne

Re: [FFmpeg-devel] [PATCH] avfilter/vf_telecine: Add ts_mode option for using the first input timestamp

2015-03-25 Thread Paul B Mahol
Dana 25. 3. 2015. 19:07 osoba "Himangi Saraogi" napisala je: > > --- > libavfilter/vf_telecine.c | 12 +++- > 1 file changed, 11 insertions(+), 1 deletion(-) > > diff --git a/libavfilter/vf_telecine.c b/libavfilter/vf_telecine.c > index a0f28d4..aaad2b5 100644 > --- a/libavfilter/vf_telec

Re: [FFmpeg-devel] [PATCH] avfilter/vf_telecine: Add ts_mode option for using the first input timestamp

2015-03-25 Thread Carl Eugen Hoyos
Himangi Saraogi gmail.com> writes: > +{"ts_mode", "set to choose timestamp handling as > being with respect to the input", OFFSET(ts_mode), Isn't the new behaviour that you implemented a bug fix? I believe this option is not necessary, just change the behaviour. Or do I miss a usecase? Th

[FFmpeg-devel] [PATCH] avfilter/vf_telecine: Add ts_mode option for using the first input timestamp

2015-03-25 Thread Himangi Saraogi
--- libavfilter/vf_telecine.c | 12 +++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/libavfilter/vf_telecine.c b/libavfilter/vf_telecine.c index a0f28d4..aaad2b5 100644 --- a/libavfilter/vf_telecine.c +++ b/libavfilter/vf_telecine.c @@ -38,6 +38,8 @@ typedef struct {

Re: [FFmpeg-devel] [PATCH] lavf/avisynth: fix compilation, remove bundled headers

2015-03-25 Thread Stephen Hutchinson
On Wed, Mar 25, 2015 at 12:49 PM, Michael Niedermayer wrote: > ive applied patch 4 from the patchset too, does that fix it ? > if not please check the remaining 2 patches, i had not applied them > as they remove 2.5 support and i wanted to wait first to see if > someone posts a solution that keeps

Re: [FFmpeg-devel] [PATCH] libavcodec/exr.c : A new exr lossy compression technique B44 is added

2015-03-25 Thread Michael Niedermayer
On Tue, Mar 24, 2015 at 04:07:01PM +0530, greeshma wrote: > The patch is made and FATE tests are done.It accepted, will submit with the > copyrights and signature.The code is written based on openEXR algorithm of > B44 lossy compression and modified according to the FFmpeg code. > > > From 9670e

Re: [FFmpeg-devel] [PATCH] lavf/avisynth: fix compilation, remove bundled headers

2015-03-25 Thread Michael Niedermayer
On Wed, Mar 25, 2015 at 09:58:15AM -0600, Roger Pack wrote: > On 3/25/15, Michael Niedermayer wrote: > > On Tue, Mar 24, 2015 at 07:40:33PM +0100, Martin Herkt wrote: > >> Merge commit 1530732 broke compilation with AviSynth enabled. > >> > >> There's really no reason to keep outdated, incompatibl

Re: [FFmpeg-devel] [PATCH 4/4] avisynth: ifdef to avoid implicit function declaration errors

2015-03-25 Thread Michael Niedermayer
On Tue, Mar 24, 2015 at 03:23:32PM -0400, Stephen Hutchinson wrote: > The demuxer doesn't use these functions, so it shouldn't affect > anything. Investigate whether this can be fixed by how headers > are checked in configure. > --- > compat/avisynth/avisynth_c.h | 8 > 1 file changed, 8

Re: [FFmpeg-devel] [PATCH] lavf/avisynth: fix compilation, remove bundled headers

2015-03-25 Thread Roger Pack
On 3/25/15, Michael Niedermayer wrote: > On Tue, Mar 24, 2015 at 07:40:33PM +0100, Martin Herkt wrote: >> Merge commit 1530732 broke compilation with AviSynth enabled. >> >> There's really no reason to keep outdated, incompatible copies of >> these headers in the FFmpeg source tree. No one should

Re: [FFmpeg-devel] [PATCH] avcodec/j2kenc: Initialize variable to silence compiler warnings

2015-03-25 Thread Michael Niedermayer
On Wed, Mar 25, 2015 at 07:02:16PM +0530, Himangi Saraogi wrote: > --- > libavcodec/j2kenc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Freedom in capitalist society always remains abo

Re: [FFmpeg-devel] [PATCH] lavf/avisynth: fix compilation, remove bundled headers

2015-03-25 Thread John Warburton
On Wed, Mar 25, 2015 at 11:41 AM, Michael Niedermayer wrote: > On Tue, Mar 24, 2015 at 07:40:33PM +0100, Martin Herkt wrote: >> Merge commit 1530732 broke compilation with AviSynth enabled. >> >> There's really no reason to keep outdated, incompatible copies of >> these headers in the FFmpeg sourc

Re: [FFmpeg-devel] [PATCH] lavfi: add inverse telecine filter

2015-03-25 Thread Michael Niedermayer
On Wed, Mar 25, 2015 at 03:38:18PM +0530, Himangi Saraogi wrote: > This is an exact inverse of the telecine filter unlike previously existing > pullup and fieldmatch ones. > > Tested on few samples generated using the telecine filter. Documentation is > yet to be added. Added an additional paramet

[FFmpeg-devel] [PATCH] avcodec/j2kenc: Initialize variable to silence compiler warnings

2015-03-25 Thread Himangi Saraogi
--- libavcodec/j2kenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/j2kenc.c b/libavcodec/j2kenc.c index ddb0b68..a795e03 100644 --- a/libavcodec/j2kenc.c +++ b/libavcodec/j2kenc.c @@ -430,7 +430,7 @@ static void init_quantization(Jpeg2000EncoderContext *s)

Re: [FFmpeg-devel] [PATCH] lavf/avisynth: fix compilation, remove bundled headers

2015-03-25 Thread Michael Niedermayer
On Tue, Mar 24, 2015 at 07:40:33PM +0100, Martin Herkt wrote: > Merge commit 1530732 broke compilation with AviSynth enabled. > > There's really no reason to keep outdated, incompatible copies of > these headers in the FFmpeg source tree. No one should be using > AviSynth 2.5 either. > --- > comp

Re: [FFmpeg-devel] [PATCH 2/2] avutil: make AVFrameSideData buffers ref-counted.

2015-03-25 Thread Michael Niedermayer
On Mon, Mar 23, 2015 at 11:11:19AM -0400, Ronald S. Bultje wrote: > --- > libavutil/frame.c | 53 ++--- > libavutil/frame.h | 1 + > 2 files changed, 39 insertions(+), 15 deletions(-) applied maybe someone should benchmark this for speed per size

Re: [FFmpeg-devel] [PATCH 1/2] lavu/frame: move av_frame_copy_props() up in the file.

2015-03-25 Thread Michael Niedermayer
On Mon, Mar 23, 2015 at 11:11:18AM -0400, Ronald S. Bultje wrote: > Preparation for following patch. > --- > libavutil/frame.c | 140 > +++--- > 1 file changed, 70 insertions(+), 70 deletions(-) applied thanks [...] -- Michael GnuPG fingerpr

Re: [FFmpeg-devel] [PATCH] doc: add a few note for sponsorship candidates.

2015-03-25 Thread Nicolas George
Thanks to everyone for the reviews. Here is an updated version trying to take the remarks into account. Regards, -- Nicolas George >From fca492987eef197aa91a92c2ebe37ac3ff0acc58 Mon Sep 17 00:00:00 2001 From: Nicolas George Date: Thu, 19 Mar 2015 21:51:19 +0100 Subject: [PATCH] doc: add a few

[FFmpeg-devel] [PATCH] lavfi: add inverse telecine filter

2015-03-25 Thread Himangi Saraogi
This is an exact inverse of the telecine filter unlike previously existing pullup and fieldmatch ones. Tested on few samples generated using the telecine filter. Documentation is yet to be added. Added an additional parameter "start_frame" to allow using the filter for a stream that was cut. Pts h

Re: [FFmpeg-devel] [PATCH 5/5] doc: Escape all backslashes needed to be escaped

2015-03-25 Thread Stefano Sabatini
On date Sunday 2015-03-22 20:47:20 -0700, Timothy Gu encoded: > No, I do not want to do this, but a user requested it… > > I think it is time for us to switch to a better documentation format. > > Fixes #3867. > --- > doc/developer.texi | 4 ++-- > doc/encoders.texi | 4 ++-- > doc/faq.texi

Re: [FFmpeg-devel] [PATCH] Disabled mipsdspr1 under 74kc cpu and disabled all mips hardware acceleration by default.

2015-03-25 Thread Nedeljko Babic
>From: Shivraj Patil > >--- > configure | 6 ++ > 1 file changed, 6 insertions(+) > >diff --git a/configure b/configure >index 4827a4d..1a08347 100755 >--- a/configure >+++ b/configure >@@ -3839,6 +3839,12 @@ elif enabled mips; then > ;; > 74kc) > disable mipsfpu >+

Re: [FFmpeg-devel] [PATCH] lavf/avisynth: fix compilation, remove bundled headers

2015-03-25 Thread Jan Ehrhardt
Martin Herkt in gmane.comp.video.ffmpeg.devel (Tue, 24 Mar 2015 19:40:33 +0100): >Merge commit 1530732 broke compilation with AviSynth enabled. I ran into the same problem when cross-compiling for Windows on Ubuntu: CC libavformat/avisynth.o In file included from libavformat/avisynth.c:33:0:

Re: [FFmpeg-devel] [PATCH] Build scripts for WinRT

2015-03-25 Thread Simon Ferquel
>Please avoid top-posting on this list, thanks. Sorry about that, I'm not really used to mailing lists >On 24.03.2015, at 22:14, Simon Ferquel wrote: >> Axtually I don't know the meaning of enable thumb (it was in the ffmpef >> winrt compilation guide I followed). >It generates smaller but so

Re: [FFmpeg-devel] [PATCH] HDMV PGS subtitles-Ticket #2622

2015-03-25 Thread Niklesh Lalwani
Apologies. I'll do that. I am relatively new to git, and hence wasn't able to send as you had asked. Thanks Niklesh ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] Build scripts for WinRT

2015-03-25 Thread Reimar Döffinger
Please avoid top-posting on this list, thanks. On 24.03.2015, at 22:14, Simon Ferquel wrote: > Axtually I don't know the meaning of enable thumb (it was in the ffmpef winrt > compilation guide I followed). It generates smaller but somewhat slower code. IMHO unless instruction cache misses are a