Re: [FFmpeg-devel] [PATCH 1/3] web/style.less: Styles for heading anchors

2014-12-05 Thread Michael Niedermayer
On Wed, Dec 03, 2014 at 09:31:33PM -0800, Timothy Gu wrote: > Signed-off-by: Timothy Gu > --- > generate-doc.sh | 1 + > src/less/style.less | 12 > 2 files changed, 13 insertions(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0

Re: [FFmpeg-devel] [PATCH 3/3] doc: html: Use native viewport

2014-12-05 Thread Michael Niedermayer
On Wed, Dec 03, 2014 at 09:31:35PM -0800, Timothy Gu wrote: > Fixes displaying docs on small-screen devices. > > Signed-off-by: Timothy Gu > --- > doc/t2h.pm | 1 + > 1 file changed, 1 insertion(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FA

Re: [FFmpeg-devel] [PATCH 2/3] doc: Do not use the headings as links to TOC anchors

2014-12-05 Thread Michael Niedermayer
On Wed, Dec 03, 2014 at 09:31:34PM -0800, Timothy Gu wrote: > Instead, use FontAwesome icons (if configured to be this way) or separate > text. > > Signed-off-by: Timothy Gu > --- > doc/t2h.pm | 104 > +++-- > 1 file changed, 102 insertion

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added segment filename option

2014-12-05 Thread Michael Niedermayer
On Fri, Dec 05, 2014 at 09:20:15PM +, Christian Suloway wrote: > Updating from previous message. > > From: Christian Suloway > Sent: Friday, December 5, 2014 3:17 PM > To: ffmpeg-devel@ffmpeg.org > Cc: Christian Suloway > Subject: [PATCH] avformat/hlsen

Re: [FFmpeg-devel] [PATCH] doc: add loglevel numerical values

2014-12-05 Thread Michael Niedermayer
On Fri, Dec 05, 2014 at 12:36:18PM -0900, Lou Logan wrote: > Signed-off-by: Lou Logan > --- > doc/fftools-common-opts.texi | 10 +- > 1 file changed, 9 insertions(+), 1 deletion(-) should be ok [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB I am the w

Re: [FFmpeg-devel] [PATCH 2/2] lavc/options: fix leaks in avcodec_copy_context

2014-12-05 Thread Lukasz Marek
On 04.12.2014 23:51, Michael Niedermayer wrote: On Thu, Dec 04, 2014 at 12:54:30AM +0100, Lukasz Marek wrote: On 27.11.2014 04:17, Michael Niedermayer wrote: On Thu, Nov 27, 2014 at 12:43:57AM +0100, Lukasz Marek wrote: On 24.11.2014 05:16, Lukasz Marek wrote: Signed-off-by: Lukasz Marek ---

Re: [FFmpeg-devel] [PATCH] lavc/options: don't copy priv context when it is not AVOption object

2014-12-05 Thread Lukasz Marek
On 05.12.2014 00:15, Michael Niedermayer wrote: On Thu, Dec 04, 2014 at 12:50:06AM +0100, Lukasz Marek wrote: Subject: [PATCH] lavc/options: don't copy priv context when it is not AVOption object This prevents potential crash when opt API is used without a class. LGTM Pushed _

Re: [FFmpeg-devel] [PATCH] doc: add loglevel numerical values

2014-12-05 Thread Lou Logan
On Fri, 5 Dec 2014 12:36:18 -0900, Lou Logan wrote: > Signed-off-by: Lou Logan > --- Useful for setting FFREPORT. > doc/fftools-common-opts.texi | 10 +- > 1 file changed, 9 insertions(+), 1 deletion(-) > > diff --git a/doc/fftools-common-opts.texi b/doc/fftools-common-opts.texi > in

[FFmpeg-devel] [PATCH] doc: add loglevel numerical values

2014-12-05 Thread Lou Logan
Signed-off-by: Lou Logan --- doc/fftools-common-opts.texi | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/doc/fftools-common-opts.texi b/doc/fftools-common-opts.texi index 0e8f849..c496419 100644 --- a/doc/fftools-common-opts.texi +++ b/doc/fftools-common-opts.texi @

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added segment filename option

2014-12-05 Thread Christian Suloway
Updating from previous message. From: Christian Suloway Sent: Friday, December 5, 2014 3:17 PM To: ffmpeg-devel@ffmpeg.org Cc: Christian Suloway Subject: [PATCH] avformat/hlsenc: added segment filename option This option allows segment filenames to be spec

[FFmpeg-devel] [PATCH] avformat/hlsenc: added segment filename option

2014-12-05 Thread Christian Suloway
This option allows segment filenames to be specified. Unless -hls_flags single_file is set the filename is used as a string format with the segment number. Example: ffmpeg -f lavfi -i testsrc -c:v h264 -map 0 -hls_segment_filename bar%03d.ts foo.m3u8 Signed-off-by: Christian Suloway --- doc/mux

[FFmpeg-devel] [PATCH] avformat/hlsenc: added segment filename option

2014-12-05 Thread Christian Suloway
This option allows segment filenames to be specified. Unless -hls_flags single_file is set the filename is used as a string format with the segment number. Example: ffmpeg -f lavfi -i testsrc -c:v h264 -map 0 -hls_segment_filename bar%03d.ts foo.m3u8 Signed-off-by: Christian Suloway --- doc/mux

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added segment filename option

2014-12-05 Thread Michael Niedermayer
On Fri, Dec 05, 2014 at 11:06:19AM -0600, Christian Suloway wrote: > This option allows segment filenames to be specified. Unless -hls_flags > single_file is enabled the filename is used as a string format with the > segment number. > > Example: > ffmpeg -f lavfi -i testsrc -c:v h264 -map 0 -hls_s

[FFmpeg-devel] [PATCH] avformat/hlsenc: added segment filename option

2014-12-05 Thread Christian Suloway
This option allows segment filenames to be specified. Unless -hls_flags single_file is enabled the filename is used as a string format with the segment number. Example: ffmpeg -f lavfi -i testsrc -c:v h264 -map 0 -hls_segment_filename bar%03d.ts foo.m3u8 Signed-off-by: Christian Suloway ` --- li

Re: [FFmpeg-devel] [PATCH] swr: allow passing of AVFrame.data to swr_convert without, cast in C++ code

2014-12-05 Thread Michael Niedermayer
On Fri, Dec 05, 2014 at 03:18:15PM +0100, wm4 wrote: > On Fri, 5 Dec 2014 14:15:03 +0100 > Michael Niedermayer wrote: > > > On Fri, Dec 05, 2014 at 04:14:53PM +0800, Yu Xiaolei wrote: > > > > > > --- > > > libswresample/swresample.c | 4 ++-- > > > libswresample/swresample.h | 4 ++-- > > > 2 f

Re: [FFmpeg-devel] [PATCH] doc/examples/filtering_video: fix frame rate

2014-12-05 Thread Michael Niedermayer
On Fri, Dec 05, 2014 at 03:52:23PM +0100, Piotr Fusik wrote: > Hello, > > I'm new to ffmpeg. I've started learning it by playing with the > filtering_video example. > > I've noticed that for some mp4 files it plays with an incorrect frame rate: > for some files it's twice too fast and for other

Re: [FFmpeg-devel] [PATCH] Fixed PNG decoding with Paeth filter for RGBA 64-bits.

2014-12-05 Thread Dominique Leroux
Hi Cristophe, Before submitting yesterday evening, I pulled the latest changes from master and the problem is still present. My situation happens with RGBA64. The structure of the existing C code was meant to enter the optimized path with a buffer size that is compatible with SIMD constraints

Re: [FFmpeg-devel] [PATCH] avformat/mpegts: fix Opus stream count

2014-12-05 Thread Michael Niedermayer
On Fri, Dec 05, 2014 at 02:33:58PM +0100, Rafaël Carré wrote: > That number represents the number of streams, not the number of channels > --- > libavformat/mpegts.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF67

[FFmpeg-devel] [PATCH] doc/examples/filtering_video: fix frame rate

2014-12-05 Thread Piotr Fusik
Hello, I'm new to ffmpeg. I've started learning it by playing with the filtering_video example. I've noticed that for some mp4 files it plays with an incorrect frame rate: for some files it's twice too fast and for other files the delays are completely skipped because the calculated delay value

Re: [FFmpeg-devel] [PATCH 2/2] Adding closed caption decoder

2014-12-05 Thread Nicolas George
Hi. I had time to look at the code with some more details. Comments are below. > >From 31f69ccfb45247a7cc203084a931b8523284aa13 Mon Sep 17 00:00:00 2001 > From: Anshul Maheshwari > Date: Wed, 3 Dec 2014 23:37:22 +0530 > Subject: [PATCH 2/2] Adding Closed caption Decoder > > --- > libavcodec/Mak

Re: [FFmpeg-devel] [PATCH] swr: allow passing of AVFrame.data to swr_convert without, cast in C++ code

2014-12-05 Thread wm4
On Fri, 5 Dec 2014 14:15:03 +0100 Michael Niedermayer wrote: > On Fri, Dec 05, 2014 at 04:14:53PM +0800, Yu Xiaolei wrote: > > > > --- > > libswresample/swresample.c | 4 ++-- > > libswresample/swresample.h | 4 ++-- > > 2 files changed, 4 insertions(+), 4 deletions(-) > > This adds these warn

Re: [FFmpeg-devel] FFmpeg in Microsoft Media Foudation

2014-12-05 Thread compn
On Fri, 5 Dec 2014 03:45:47 + Jesse Jiang wrote: > Is there any open-source project which using ffmpeg in MFT(Microsoft > Media Foundation). I know there is Lav project for DShow. So is there > any plant to move to MFT. it would be a good idea, i dont know of any project yet. did you ask the

[FFmpeg-devel] [PATCH] avformat/mpegts: fix Opus stream count

2014-12-05 Thread Rafaël Carré
That number represents the number of streams, not the number of channels --- libavformat/mpegts.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 97da0a3..f4250c8 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@

Re: [FFmpeg-devel] [PATCH] swr: allow passing of AVFrame.data to swr_convert without, cast in C++ code

2014-12-05 Thread Michael Niedermayer
On Fri, Dec 05, 2014 at 04:14:53PM +0800, Yu Xiaolei wrote: > > --- > libswresample/swresample.c | 4 ++-- > libswresample/swresample.h | 4 ++-- > 2 files changed, 4 insertions(+), 4 deletions(-) This adds these warnings: ibswresample/swresample.c:380:13: note: expected ‘uint8_t **’ but argume

Re: [FFmpeg-devel] [PATCH] doc/filters: Add ascii graphics to clarify what the currently implemented tinterlace modes do

2014-12-05 Thread Michael Niedermayer
On Thu, Dec 04, 2014 at 04:57:09PM +, tim nicholson wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 04/12/14 16:09, Clément Bœsch wrote: > > [..] > > > > This representation requires way more efforts to me to understand than the > > one from Michael... > > > > Just shows how

[FFmpeg-devel] FFmpeg in Microsoft Media Foudation

2014-12-05 Thread Jesse Jiang
Hi All, Is there any open-source project which using ffmpeg in MFT(Microsoft Media Foundation). I know there is Lav project for DShow. So is there any plant to move to MFT. I want to create an open-source project like this, but I have less experience on this. I hope some experts can invo

[FFmpeg-devel] [PATCH]Fixed av_fast_realloc calling error when compiled to the Dynamic library

2014-12-05 Thread 杨超
Hello,All: source base: ffmpeg-2.2.10env:androidso/a: so When calling the av_fast_realloc or av_fast_malloc. There will be a error ( the processing will feign death ). Fixed patch: ---a/libavcodec/utils.c+++b/libavcodec/utils.c@@ -127,1 +127,1 @@-#if FF_API_FAST_MALLOC && CONFIG_SHARED && HAVE_SY

Re: [FFmpeg-devel] [PATCH] Fixed PNG decoding with Paeth filter for RGBA 64-bits.

2014-12-05 Thread Christophe Gisquet
Hi, 2014-12-05 1:20 GMT+01:00 Dominique Leroux : > Found and fixed an artifact in the last column of decoded RGBA 64-bits PNG > images. > > The code was dealing with a SIMD-optimized version of the function without > taking into account that we can have RGB/RGBA images that are respectively 6 >

[FFmpeg-devel] [PATCH] swr: allow passing of AVFrame.data to swr_convert without, cast in C++ code

2014-12-05 Thread Yu Xiaolei
--- libswresample/swresample.c | 4 ++-- libswresample/swresample.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libswresample/swresample.c b/libswresample/swresample.c index b0bd697..a154674 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -