[FFmpeg-devel] [PATCH] libavcodec/svq3: rename unknown_field to has_watermark

2015-05-01 Thread Michael Niedermayer
The name is based on how the field is used in the code Signed-off-by: Michael Niedermayer --- libavcodec/svq3.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index 4b418ab..0683b0d 100644 --- a/libavcodec/svq3.c +++ b/libav

Re: [FFmpeg-devel] FFV1 specification: plane_count prior to version 4

2015-05-01 Thread Jerome Martinez
Le 02/05/2015 01:37, Michael Niedermayer a écrit : plane_count was 2 for gray prior to version 4 [...] Got it. Maybe I missed something else, but looks like decode_plane() is never called with plane_index = 1 if chroma_planes is 0. Was it an implementation bug and actually plane_index = 1 is n

Re: [FFmpeg-devel] [PATCH] FFV1 specification: Reduce redundancy in the description of xxPlane() and xxLine()

2015-05-01 Thread Jerome Martinez
New patch because I misunderstood the definition of plane_count. Now LyX Document is 1 + ( ( chroma_planes || version < 4 ) ? 1 : 0 ) + ( alpha_plane ? 1 : 0 ) Le 02/05/2015 01:33, Jerome Martinez a écrit : Some notes: - I discarded the "if version >= 4" stuff for grayscale because I don't se

Re: [FFmpeg-devel] [PATCH] FFV1 specification: Reduce redundancy in the description of xxPlane() and xxLine()

2015-05-01 Thread Jerome Martinez
New patch because I misunderstood the definition of plane_count. Now is 1 + ( ( chroma_planes || version < 4 ) ? 1 : 0 ) + ( alpha_plane ? 1 : 0 ) Le 02/05/2015 01:33, Jerome Martinez a écrit : Some notes: - I discarded the "if version >= 4" stuff for grayscale because I don't see such limita

Re: [FFmpeg-devel] ffserver jpg output

2015-05-01 Thread Michael Niedermayer
On Sat, May 02, 2015 at 01:48:51AM +0200, Michael Niedermayer wrote: > On Fri, May 01, 2015 at 05:13:11PM -0600, ill wrote: > > The patch that caligula sent works. I tested it on the git from > > yesterday and firefox is now able to read the jpg ffserver output > > properly with that applied. > > T

Re: [FFmpeg-devel] ffserver jpg output

2015-05-01 Thread Michael Niedermayer
On Fri, May 01, 2015 at 05:13:11PM -0600, ill wrote: > The patch that caligula sent works. I tested it on the git from > yesterday and firefox is now able to read the jpg ffserver output > properly with that applied. > The only difference is that I added an enter on line 26 because it > was two lin

Re: [FFmpeg-devel] [PATCH 2/4] FFV1 specification: Add missing { }

2015-05-01 Thread Michael Niedermayer
On Sat, May 02, 2015 at 01:15:09AM +0200, Jerome Martinez wrote: > Le 02/05/2015 01:05, Michael Niedermayer a écrit : > >this looks wrong in my lyx, quite wrong, certainly doesnt result > >in a closing bracket > > Weird, it is OK on my side and actually a pretty patch. > I rebased following your l

Re: [FFmpeg-devel] FFV1 specification: plane_count prior to version 4

2015-05-01 Thread Michael Niedermayer
On Fri, May 01, 2015 at 03:52:06PM +0200, Jerome Martinez wrote: > In FFV1 specification, I read: > > > plane_count prior to version 4: without transparency: 2 else 3. > > version 4 and later: gray: 1, gray+alpha or color:2, color+alpha:3 > > but in both headers (FrameHeader01 or GlobalHeader), I

[FFmpeg-devel] [PATCH] FFV1 specification: Reduce redundancy in the description of xxPlane() and xxLine()

2015-05-01 Thread Jerome Martinez
Some notes: - I discarded the "if version >= 4" stuff for grayscale because I don't see such limitation in the bitstream and in the source code. I am thinking to add a specific section about decoder limitations (e.g. bits_per_raw_sample accepted range, gray/alpha support...) - I hesitated to d

Re: [FFmpeg-devel] [PATCH 2/4] FFV1 specification: Add missing { }

2015-05-01 Thread Jerome Martinez
Le 02/05/2015 01:05, Michael Niedermayer a écrit : this looks wrong in my lyx, quite wrong, certainly doesnt result in a closing bracket Weird, it is OK on my side and actually a pretty patch. I rebased following your latest commits, attached is a new patch. note, that is when i apply the pat

Re: [FFmpeg-devel] ffserver jpg output

2015-05-01 Thread ill
The patch that caligula sent works. I tested it on the git from yesterday and firefox is now able to read the jpg ffserver output properly with that applied. The only difference is that I added an enter on line 26 because it was two lines into one. Can it be committed now? diff -Nrup ffmpeg-

Re: [FFmpeg-devel] [PATCH 2/4] FFV1 specification: Add missing { }

2015-05-01 Thread Michael Niedermayer
On Sat, May 02, 2015 at 12:37:19AM +0200, Jerome Martinez wrote: > Le 02/05/2015 00:21, Michael Niedermayer a écrit : > >why the extra space ? > > Because of a guy doing stupid mistakes. > (this guy may try to blame Lyx but it is difficult to be believable) > > New patch attached. > ffv1.lyx |

Re: [FFmpeg-devel] [PATCH 2/4] FFV1 specification: Add missing { }

2015-05-01 Thread Jerome Martinez
Le 02/05/2015 00:21, Michael Niedermayer a écrit : why the extra space ? Because of a guy doing stupid mistakes. (this guy may try to blame Lyx but it is difficult to be believable) New patch attached. >From 40a211a344c3f7bcb8bc627bd5edcb4cb8b1c56c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3

Re: [FFmpeg-devel] [PATCH 2/4] FFV1 specification: Add missing { }

2015-05-01 Thread Michael Niedermayer
On Fri, May 01, 2015 at 02:27:40PM +0200, Jerome Martinez wrote: > Le 01/05/2015 14:07, Michael Niedermayer a écrit : > >>-quant_tables[i][j][128] =-quant_tables[i][j][127] > >>+quant_tables[i][j][128] = -quant_tables[i][j][127] > >unrelated > > Definitely. I apologize for such mistake (should be

Re: [FFmpeg-devel] [PATCH 1/4] FFV1 specification: Change formatting of pseudo-code

2015-05-01 Thread Michael Niedermayer
On Fri, May 01, 2015 at 02:25:37PM +0200, Jerome Martinez wrote: > Le 01/05/2015 13:49, Michael Niedermayer a écrit : > >On Fri, May 01, 2015 at 12:13:22PM +0200, Jerome Martinez wrote: > > > >>-if (keyframe) { > >>+if ( keyframe ) { > >[...] > >>-if(version<2) > >>+if( version < 2 ) > >that doesnt

Re: [FFmpeg-devel] [PATCH 01/16] vp9: profile 1 header decoding.

2015-05-01 Thread Michael Niedermayer
On Thu, Apr 30, 2015 at 05:48:19PM +0200, Ronald S. Bultje wrote: > --- > libavcodec/vp9.c | 88 > > 1 file changed, 64 insertions(+), 24 deletions(-) patcheset merged [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC

Re: [FFmpeg-devel] [PATCH] lavf/mux: do not fail in case of non monotonically increasing DTS values for data packets

2015-05-01 Thread Stefano Sabatini
On date Thursday 2015-04-30 16:24:08 +0200, Michael Niedermayer encoded: > On Thu, Apr 30, 2015 at 02:20:52PM +0200, Stefano Sabatini wrote: > > Disable monotonicity test for data packets. Data packets are not supposed > > to be decoded by FFmpeg, and this checks cause conversion failure with > > s

Re: [FFmpeg-devel] Doh!

2015-05-01 Thread Lou Logan
On Fri, May 1, 2015, at 08:51 AM, Stefano Sabatini wrote: > On date Friday 2015-05-01 10:05:27 +0200, Stefano Sabatini encoded: > [...] > > And of course this was not supposed to be sent to this list I'll remove it from the archives, but I'm probably going to be away from my FFcomputer until Mond

Re: [FFmpeg-devel] Doh!

2015-05-01 Thread Clément Bœsch
On Fri, May 01, 2015 at 06:51:05PM +0200, Stefano Sabatini wrote: > On date Friday 2015-05-01 10:05:27 +0200, Stefano Sabatini encoded: > [...] > > And of course this was not supposed to be sent to this list (I somehow > misconfigured some mutt macros and didn't check before pushing the > reply ke

[FFmpeg-devel] Doh!

2015-05-01 Thread Stefano Sabatini
On date Friday 2015-05-01 10:05:27 +0200, Stefano Sabatini encoded: [...] And of course this was not supposed to be sent to this list (I somehow misconfigured some mutt macros and didn't check before pushing the reply key). My deep apologies for the generated noise and to the expected recipients f

[FFmpeg-devel] FFV1 specification: plane_count prior to version 4

2015-05-01 Thread Jerome Martinez
In FFV1 specification, I read: > plane_count prior to version 4: without transparency: 2 else 3. > version 4 and later: gray: 1, gray+alpha or color:2, color+alpha:3 but in both headers (FrameHeader01 or GlobalHeader), I see chroma_planes flag, it looks like all versions of FFV1 bitstream are s

Re: [FFmpeg-devel] [PATCH 2/4] FFV1 specification: Add missing { }

2015-05-01 Thread Jerome Martinez
Le 01/05/2015 14:07, Michael Niedermayer a écrit : -quant_tables[i][j][128] =-quant_tables[i][j][127] +quant_tables[i][j][128] = -quant_tables[i][j][127] unrelated Definitely. I apologize for such mistake (should be in PATCH 1/4, it is now). New patch attached. >From 7fc4e973a2fede34b8cc3ca

Re: [FFmpeg-devel] [PATCH 1/4] FFV1 specification: Change formatting of pseudo-code

2015-05-01 Thread Jerome Martinez
Le 01/05/2015 13:49, Michael Niedermayer a écrit : On Fri, May 01, 2015 at 12:13:22PM +0200, Jerome Martinez wrote: -if (keyframe) { +if ( keyframe ) { [...] -if(version<2) +if( version < 2 ) that doesnt look consistent to me Fixed (I missed this one and several other "if (" and "for

Re: [FFmpeg-devel] [PATCH 4/4] FFV1 specification: Add RFC 2119 reference

2015-05-01 Thread Michael Niedermayer
On Fri, May 01, 2015 at 01:56:38PM +0200, Jerome Martinez wrote: > Le 01/05/2015 13:50, Michael Niedermayer a écrit : > >duplicate patch > > I forgot to attach the patch. Attached now. > ffv1.lyx | 23 +++ > 1 file changed, 23 insertions(+) > baec88bd923be6f0c8a387d1a6eafde

Re: [FFmpeg-devel] [PATCH 3/4] FFV1 specification: Add conventions

2015-05-01 Thread Michael Niedermayer
On Fri, May 01, 2015 at 01:56:19PM +0200, Jerome Martinez wrote: > Le 01/05/2015 13:50, Michael Niedermayer a écrit : > >duplicate patch [...] > > I forgot to attach the patch. Attached now. > ffv1.lyx | 606 > +++ > 1 file changed, 6

Re: [FFmpeg-devel] [PATCH 2/4] FFV1 specification: Add missing { }

2015-05-01 Thread Michael Niedermayer
On Fri, May 01, 2015 at 01:55:58PM +0200, Jerome Martinez wrote: > Le 01/05/2015 13:50, Michael Niedermayer a écrit : > >already applied years ago > > I don't understand: the {} are still missing in GitHub FFmpeg/FFV1 master. > I forgot to attach the patch. Attached now. yes i applied the empty p

Re: [FFmpeg-devel] [PATCH 4/4] FFV1 specification: Add RFC 2119 reference

2015-05-01 Thread Jerome Martinez
Le 01/05/2015 13:50, Michael Niedermayer a écrit : duplicate patch I forgot to attach the patch. Attached now. >From 368ade8ba63419e952da3ec21608ebf17dde2616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Martinez?= Date: Fri, 1 May 2015 12:05:31 +0200 Subject: [PATCH 4/4] Add RFC

Re: [FFmpeg-devel] [PATCH 3/4] FFV1 specification: Add conventions

2015-05-01 Thread Jerome Martinez
Le 01/05/2015 13:50, Michael Niedermayer a écrit : duplicate patch [...] I forgot to attach the patch. Attached now. >From 591d517e4aafb981e4f2cb21cfc212134a719d0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Martinez?= Date: Fri, 1 May 2015 12:02:56 +0200 Subject: [PATCH 3/4] A

Re: [FFmpeg-devel] [PATCH 2/4] FFV1 specification: Add missing { }

2015-05-01 Thread Jerome Martinez
Le 01/05/2015 13:50, Michael Niedermayer a écrit : already applied years ago I don't understand: the {} are still missing in GitHub FFmpeg/FFV1 master. I forgot to attach the patch. Attached now. >From ca4b5c8ee5064ee0f71586ad70d426acbb46e914 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3

Re: [FFmpeg-devel] [PATCH 3/4] FFV1 specification: Add conventions

2015-05-01 Thread Michael Niedermayer
On Fri, May 01, 2015 at 12:14:21PM +0200, Jerome Martinez wrote: > duplicate patch [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Avoid a single point of failure, be that a person or equipment. signature.asc Description: Digital signature ___

Re: [FFmpeg-devel] [PATCH 4/4] FFV1 specification: Add RFC 2119 reference

2015-05-01 Thread Michael Niedermayer
On Fri, May 01, 2015 at 12:14:46PM +0200, Jerome Martinez wrote: duplicate patch [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Good people do not need laws to tell them to act responsibly, while bad people will find a way around the laws. -- Plato signature.

Re: [FFmpeg-devel] [PATCH 2/4] FFV1 specification: Add missing { }

2015-05-01 Thread Michael Niedermayer
On Fri, May 01, 2015 at 12:13:53PM +0200, Jerome Martinez wrote: already applied years ago [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB No human being will ever know the Truth, for even if they happen to say it by chance, they would not even known they had do

Re: [FFmpeg-devel] [PATCH 1/4] FFV1 specification: Change formatting of pseudo-code

2015-05-01 Thread Michael Niedermayer
On Fri, May 01, 2015 at 12:13:22PM +0200, Jerome Martinez wrote: > > ffv1.lyx | 136 > +++ > 1 file changed, 68 insertions(+), 68 deletions(-) > 00196b1a9c9ce0c3467457ac0909c8d56f8d61eb > 0001-Change-formatting-of-pseudo-code.patch

Re: [FFmpeg-devel] [PATCH] Adobe HTTP Dynamic Streaming (HDS) demuxer improvements

2015-05-01 Thread Gorilla Maguila
We will upload a new patch with some fixes. 2015-05-01 4:41 GMT+02:00 Michael Niedermayer : > On Thu, Apr 30, 2015 at 02:37:39PM +0200, Gorilla Maguila wrote: > > New patch with some fixes: > > > > - Corrected style and formatting. > > - No ugly casts. > > - New hds_probe function > > - No forwar

[FFmpeg-devel] [PATCH 4/4] FFV1 specification: Add RFC 2119 reference

2015-05-01 Thread Jerome Martinez
___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH 3/4] FFV1 specification: Add conventions

2015-05-01 Thread Jerome Martinez
___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH 2/4] FFV1 specification: Add missing { }

2015-05-01 Thread Jerome Martinez
___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH 1/4] FFV1 specification: Change formatting of pseudo-code

2015-05-01 Thread Jerome Martinez
>From 9da73eaa1ddf40667dca300ee89430283c1e36ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Martinez?= Date: Fri, 1 May 2015 10:54:04 +0200 Subject: [PATCH 1/4] Change formatting of pseudo-code. In order to have the same formatting everywhere. Formatting is the same as in some IS

[FFmpeg-devel] [PATCH 0/4] FFV1 specification: Add formating and conventions

2015-05-01 Thread Jerome Martinez
The purpose of this set of patches is to have a coherent document with explicit meaning of used operators. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH]Support linebreaks in onCaption subtitles

2015-05-01 Thread Carl Eugen Hoyos
Clément Bœsch pkh.me> writes: > > +text->linebreaks = ""; > > i'm afraid this won't be enough to support > "", "", "", ... I only looked at the sample we have, are they all valid line breaks? Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-deve

Re: [FFmpeg-devel] h264 : data partitioning is not implemented

2015-05-01 Thread しらせ けんじ
Thank you for early response. I attach the console output. --- console log shirase@anemu:~/camera> ffmpeg -y -i night.dump night.mp4 ffmpeg version 2.6.2 Copyright (c) 2000-2015 the FFmpeg developers built with gcc 4.8 (SUSE Linux) con

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

2015-05-01 Thread Clément Bœsch
On Thu, Apr 30, 2015 at 02:45:12PM +0200, Michael Niedermayer wrote: > On Thu, Apr 30, 2015 at 02:21:55PM +0200, Nicolas George wrote: > > Le primidi 11 floréal, an CCXXIII, Michael Niedermayer a écrit : > > > +@item object > > > +Filepath of the object image, needs to be in gray8. > > > + > > > +@

Re: [FFmpeg-devel] [PATCH]Support linebreaks in onCaption subtitles

2015-05-01 Thread Clément Bœsch
On Fri, May 01, 2015 at 01:48:34AM +0200, Carl Eugen Hoyos wrote: > Hi! > > Attached patch improves the samples from ticket #2933. > > Please comment, Carl Eugen > diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c > index 2552962..9bd69c5 100644 > --- a/libavcodec/allcodecs.c > +++ b/

Re: [FFmpeg-devel] [PATCH]Support linebreaks in onCaption subtitles

2015-05-01 Thread Carl Eugen Hoyos
Carl Eugen Hoyos ag.or.at> writes: > Attached patch improves the samples from ticket #2933. Version bump and Makefile entry locally added. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-deve

Re: [FFmpeg-devel] h264 : data partitioning is not implemented

2015-05-01 Thread Carl Eugen Hoyos
しらせ けんじ shirase.tk> writes: > So, I uploaded the file to the ftp server. > (filename : night.dump) Thank you for the sample, I created ticket #4529. Concerning your duration issue, I suggest you post to the ffmpeg-user mailing list, please provide your command line together with the complet

Re: [FFmpeg-devel] Aggiornamenti importanti

2015-05-01 Thread Stefano Sabatini
On date Sunday 2015-04-26 16:19:50 +0200, Giangiuseppe Pili encoded: > Cari tutti, > Vi aggiorno su un paio di cose: [...] > d. E' un vecchio ritornello per alcuni di noi, ma io ci terrei a > inserire la possibilità di fornire delle donazioni. Il sistema > donativo deve essere trasparente e non ric

Re: [FFmpeg-devel] [PATCH] Fix segfault with x11grab when switching windows.

2015-05-01 Thread Matthew Smiglarski
On Fri, May 1, 2015 at 12:29 AM, Michael Niedermayer wrote: > On Thu, Apr 30, 2015 at 09:27:25PM +0100, Matthew Smiglarski wrote: >> The segfault occurred when running ffmpeg with x11grab and specifying a >> resolution size greater than the screen, alongside an offset: >> >> ./ffmpeg -f x11grab -

[FFmpeg-devel] h264 : data partitioning is not implemented

2015-05-01 Thread しらせ けんじ
Hello. I have a troube when I dump live stream image from IP camera. The command line I use is below. ffmpeg -i "http://10.12.27.5/livestream.cgi?user=xxx&pwd=xxx&streamid=0&audio=0&filename="; -vcodec copy \ -movflags faststart+empty_moov \ -f segment \ -segment_atcl