Re: [FFmpeg-devel] [PATCH 1/2] ffplay: factorize frame queue operations

2014-09-16 Thread Michael Niedermayer
On Wed, Sep 17, 2014 at 03:47:09AM +0200, Michael Niedermayer wrote: > On Wed, Sep 17, 2014 at 12:19:49AM +0200, Marton Balint wrote: > > > > On Sat, 6 Sep 2014, Marton Balint wrote: > > > > >Create a generic frame and a frame queue struct to handle video picture > > >queues > > >and subtitle pi

Re: [FFmpeg-devel] [PATCH 1/2] ffplay: factorize frame queue operations

2014-09-16 Thread Michael Niedermayer
On Wed, Sep 17, 2014 at 12:19:49AM +0200, Marton Balint wrote: > > On Sat, 6 Sep 2014, Marton Balint wrote: > > >Create a generic frame and a frame queue struct to handle video picture > >queues > >and subtitle picture queues with common code. Also add the possibility to > >queue > >AVFrames, h

[FFmpeg-devel] [PATCH] x86/me_cmp: port mmxext and sse2 sad functions to yasm

2014-09-16 Thread James Almer
Also add a missing c->pix_abs[0][0] initialization, and sse2 versions of sad16_x2, sad16_y2 and sad16_xy2 (%15 to %20 faster than mmxext). Since the _xy2 versions are not bitexact, they are accordingly marked as approximate. Signed-off-by: James Almer --- libavcodec/x86/me_cmp.asm| 330 +

Re: [FFmpeg-devel] [PATCH 1/2] ffplay: factorize frame queue operations

2014-09-16 Thread Marton Balint
On Sat, 6 Sep 2014, Marton Balint wrote: Create a generic frame and a frame queue struct to handle video picture queues and subtitle picture queues with common code. Also add the possibility to queue AVFrames, however at the moment we only use SDL_Overlay buffers for video and AVSubtitles for s

Re: [FFmpeg-devel] [PATCH v2] doc/filters: add geq gradient examples

2014-09-16 Thread Lou Logan
On Tue, 16 Sep 2014 23:57:29 +0200, Michael Niedermayer wrote: > LGTM Pushed with an expanded description of the second example after discussing with ubitux in #ffmpeg-devel IRC. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/ma

Re: [FFmpeg-devel] [PATCH v2] doc/filters: add geq gradient examples

2014-09-16 Thread Michael Niedermayer
On Tue, Sep 16, 2014 at 11:25:19AM -0800, Lou Logan wrote: > On Tue, 16 Sep 2014 07:34:14 +0200, Clément Bœsch wrote: > > > On Mon, Sep 15, 2014 at 06:56:29PM -0800, Lou Logan wrote: > > > +@item > > > +Create a radial gradient that is the same size as the input: > > > +@example > > > +geq=lum=255

Re: [FFmpeg-devel] [PATCH] avformat/assdec: output ASS packets

2014-09-16 Thread Clément Bœsch
On Tue, Sep 16, 2014 at 10:44:32PM +0200, wm4 wrote: > On Tue, 16 Sep 2014 21:37:08 +0200 > Clément Bœsch wrote: > > > On Sun, Sep 14, 2014 at 10:01:55AM +0200, Clément Bœsch wrote: > > > After this the order from the original file is stored through readorder > > > when doing ffmpeg -i input.ass

Re: [FFmpeg-devel] [PATCH] avformat/assdec: output ASS packets

2014-09-16 Thread wm4
On Tue, 16 Sep 2014 21:37:08 +0200 Clément Bœsch wrote: > On Sun, Sep 14, 2014 at 10:01:55AM +0200, Clément Bœsch wrote: > > After this the order from the original file is stored through readorder > > when doing ffmpeg -i input.ass -c copy output.mkv. > > > > And now that the ASS muxer honors th

Re: [FFmpeg-devel] [PATCH v2] web/contact: clarify mailing list descriptions

2014-09-16 Thread Lou Logan
On Mon, 15 Sep 2014 14:03:16 -0800, Lou Logan wrote: > Also organize mailing lists by development, help, then logs. > Also link some phrases to relevant pages. > > Signed-off-by: Lou Logan > --- > src/contact | 26 +- > 1 file changed, 13 insertions(+), 13 deletions(-)

[FFmpeg-devel] [PATCH]Allow using libopenjpeg 2.x

2014-09-16 Thread Carl Eugen Hoyos
Hi! Attached patch allows using libopenjpeg 2.x (tested with 2.1) here. Based on a patch by mcirsta. Please comment, Carl Eugen diff --git a/configure b/configure index 392cbb1..47fca96 100755 --- a/configure +++ b/configure @@ -4827,6 +4827,7 @@ enabled libopencore_amrwb && require libopencore_a

[FFmpeg-devel] [PATCH]Make high bit-depth libvpx samples show the correct bit depth

2014-09-16 Thread Carl Eugen Hoyos
Hi! Attached patch fixes ffmpeg -i output for high-bitrate vp9 files here. Please comment, Carl Eugen diff --git a/libavcodec/libvpxdec.c b/libavcodec/libvpxdec.c index 8312460..6b6e899 100644 --- a/libavcodec/libvpxdec.c +++ b/libavcodec/libvpxdec.c @@ -56,7 +56,9 @@ static av_cold int vpx_init(

Re: [FFmpeg-devel] [PATCH] avformat/assdec: output ASS packets

2014-09-16 Thread Clément Bœsch
On Sun, Sep 14, 2014 at 10:01:55AM +0200, Clément Bœsch wrote: > After this the order from the original file is stored through readorder > when doing ffmpeg -i input.ass -c copy output.mkv. > > And now that the ASS muxer honors the ReadOrder, extracting the ass back > (without transcoding) restore

Re: [FFmpeg-devel] [PATCH v2] doc/filters: add geq gradient examples

2014-09-16 Thread Lou Logan
On Tue, 16 Sep 2014 07:34:14 +0200, Clément Bœsch wrote: > On Mon, Sep 15, 2014 at 06:56:29PM -0800, Lou Logan wrote: > > +@item > > +Create a radial gradient that is the same size as the input: > > +@example > > +geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray > >

Re: [FFmpeg-devel] [PATCH 1/3] avfilter/ass: make sure the log level are in available range

2014-09-16 Thread Clément Bœsch
On Mon, Sep 15, 2014 at 08:59:06PM +0200, Clément Bœsch wrote: > On Thu, Sep 11, 2014 at 11:53:57PM +0200, Michael Niedermayer wrote: > > On Thu, Sep 11, 2014 at 09:13:29PM +0200, Clément Bœsch wrote: > > > --- > > > libavfilter/vf_subtitles.c | 4 +++- > > > 1 file changed, 3 insertions(+), 1 del

Re: [FFmpeg-devel] Status of dvdsub "forced_subs_only" patch

2014-09-16 Thread Nicholas Robbins
Ok, I seem to have a partial solution. I thought that the place to put this would be in the dvdsubenc.c. So I made the following changes (sorry for inline patch) diff --git a/libavcodec/dvdsubenc.c b/libavcodec/dvdsubenc.c index 425f0af..7cae3f4 100644 --- a/libavcodec/dvdsubenc.c +++ b/libavco

Re: [FFmpeg-devel] Branchpoint tags

2014-09-16 Thread Carl Eugen Hoyos
Michael Niedermayer gmx.at> writes: > Should we add git tags to the revissions where > releases are branched off ? Yes please, this would make my life much easier. n2.5-dev sounds ok. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH 2/2] sws: use av_clip() instead of av_clip_c()

2014-09-16 Thread Clément Bœsch
On Tue, Sep 16, 2014 at 04:56:25PM +0200, Michael Niedermayer wrote: > On Tue, Sep 16, 2014 at 10:15:42AM +0200, Clément Bœsch wrote: > > --- > > libswscale/swscale.c | 12 ++-- > > 1 file changed, 6 insertions(+), 6 deletions(-) > > LGTM > Applied, thanks -- Clément B. pgpD2mu96y5h

Re: [FFmpeg-devel] [PATCH 1/2] avformat/flacenc: use av_clip() instead of av_clip_c()

2014-09-16 Thread Clément Bœsch
On Tue, Sep 16, 2014 at 04:53:42PM +0200, Michael Niedermayer wrote: > On Tue, Sep 16, 2014 at 10:15:41AM +0200, Clément Bœsch wrote: > > --- > > libavformat/flacenc.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > LGTM > Pushed, thanks -- Clément B. pgpnAHRJ8G715.pgp Descrip

Re: [FFmpeg-devel] [PATCH 2/2] sws: use av_clip() instead of av_clip_c()

2014-09-16 Thread Michael Niedermayer
On Tue, Sep 16, 2014 at 10:15:42AM +0200, Clément Bœsch wrote: > --- > libswscale/swscale.c | 12 ++-- > 1 file changed, 6 insertions(+), 6 deletions(-) LGTM [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Concerning the gods, I have no means of knowing

Re: [FFmpeg-devel] [PATCH 1/2] avformat/flacenc: use av_clip() instead of av_clip_c()

2014-09-16 Thread Michael Niedermayer
On Tue, Sep 16, 2014 at 10:15:41AM +0200, Clément Bœsch wrote: > --- > libavformat/flacenc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) LGTM [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB During times of universal deceit, telling the truth become

Re: [FFmpeg-devel] [PATCH] doc/examples/transcoding: use av_packet_rescale_ts()

2014-09-16 Thread Stefano Sabatini
On date Thursday 2014-09-11 13:44:49 +0200, Michael Niedermayer encoded: > On Wed, Sep 10, 2014 at 12:17:11PM +0200, Stefano Sabatini wrote: > > Simplify. > > --- > > doc/examples/transcoding.c | 36 +--- > > 1 file changed, 9 insertions(+), 27 deletions(-) > > sho

Re: [FFmpeg-devel] [PATCH] add hls_ts_option into hlsenc

2014-09-16 Thread Stefano Sabatini
In data Friday 2014-09-12 18:07:01 +0800, Steven Liu ha scritto: > I have refine the patch as Stefano's suggestion:-) [...] > From 85e2e8afff26b8aa7f45ad463b3142919bb431a8 Mon Sep 17 00:00:00 2001 > From: Steven Liu > Date: Fri, 12 Sep 2014 18:04:52 +0800 > Subject: [PATCH] add hls_ts_option into

[FFmpeg-devel] [PATCH] avformat/avidec: assumes that extradata begins with palette when bpp <= 8.

2014-09-16 Thread Benoit Fouet
Some other information is stored in extradata, such that the BottomUp field. But it seems that extradata always starts with the palette. Fixes ticket #1304 --- libavformat/avidec.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libavformat/avidec.c b/libavformat/avidec.c

Re: [FFmpeg-devel] [WIP] lavfi: port mp/eq to a regular filter

2014-09-16 Thread Michael Niedermayer
On Tue, Sep 16, 2014 at 01:09:01AM +0200, James Darnley wrote: > On 2014-09-15 00:46, James Darnley wrote: > > ... > > Update: I've got eq2 merged into the one file and working. I would send > another WIP patch but I've made several commits, all of which should be > merged together. > > One que

Re: [FFmpeg-devel] [PATCH 02/14] libavcodec: Implementation of AAC_fixed_decoder (LC-module) [2/5]

2014-09-16 Thread Michael Niedermayer
On Mon, Sep 01, 2014 at 07:55:40PM +0200, Nedeljko Babic wrote: > From: Djordje Pesut > > Add float emulation > > Signed-off-by: Nedeljko Babic > --- > libavcodec/float_emu.h | 295 > + > libavcodec/float_emu_tab.c | 293

[FFmpeg-devel] [PATCH 2/2] sws: use av_clip() instead of av_clip_c()

2014-09-16 Thread Clément Bœsch
--- libswscale/swscale.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 59ead12..e54d448 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -804,9 +804,9 @@ static void xyz12Torgb48(struct SwsContext *

[FFmpeg-devel] [PATCH 1/2] avformat/flacenc: use av_clip() instead of av_clip_c()

2014-09-16 Thread Clément Bœsch
--- libavformat/flacenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/flacenc.c b/libavformat/flacenc.c index b3695a2..0eea942 100644 --- a/libavformat/flacenc.c +++ b/libavformat/flacenc.c @@ -95,7 +95,7 @@ static int flac_write_header(struct AVFormatContext *s

Re: [FFmpeg-devel] [PATCH]Do not ask for mxf samples with unknown field dominance

2014-09-16 Thread tim nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/09/14 21:45, Tomas Härdin wrote: > On Tue, 2014-08-19 at 22:30 +0200, Michael Niedermayer wrote: >> On Tue, Aug 19, 2014 at 01:30:24AM +0200, Carl Eugen Hoyos wrote: >>> Hi! >>> >>> Attached patch removes a request for samples of which we already