[libav-devel] [PATCH] Announce Releases 10.2, 9.14 and 0.8.13

2014-06-26 Thread Reinhard Tartler
--- src/download | 66 ++-- src/news | 29 ++ 2 files changed, 62 insertions(+), 33 deletions(-) diff --git a/src/download b/src/download index a6ce9f8..18b9675 100644 --- a/src/download +++ b/src/download @@ -201

Re: [libav-devel] [PATCH 06/15] hevc: Add SSE4 MC functions

2014-06-26 Thread Luca Barbato
On 26/06/14 21:49, James Almer wrote: > --- > This applies cleanly after PATCH 14/15, and of course requires relevant > changes to > hevc_init.c > I think i got every function right, but in any case fixing any of them is a > single > line change. > > In the end, out of 190 functions, only 44 w

Re: [libav-devel] [PATCH 06/15] hevc: Add SSE4 MC functions

2014-06-26 Thread James Almer
--- This applies cleanly after PATCH 14/15, and of course requires relevant changes to hevc_init.c I think i got every function right, but in any case fixing any of them is a single line change. In the end, out of 190 functions, only 44 were SSE4. libavcodec/x86/hevc_mc.asm | 363 +++

Re: [libav-devel] [PATCH] rtpenc_jpeg: check for color_range too

2014-06-26 Thread Luca Barbato
On 26/06/14 21:30, Vittorio Giovara wrote: > --- > libavformat/rtpenc_jpeg.c | 12 > 1 file changed, 8 insertions(+), 4 deletions(-) > > diff --git a/libavformat/rtpenc_jpeg.c b/libavformat/rtpenc_jpeg.c > index 04df658..9d0915b 100644 > --- a/libavformat/rtpenc_jpeg.c > +++ b/libavf

[libav-devel] [PATCH] rtpenc_jpeg: check for color_range too

2014-06-26 Thread Vittorio Giovara
--- libavformat/rtpenc_jpeg.c | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/libavformat/rtpenc_jpeg.c b/libavformat/rtpenc_jpeg.c index 04df658..9d0915b 100644 --- a/libavformat/rtpenc_jpeg.c +++ b/libavformat/rtpenc_jpeg.c @@ -29,7 +29,7 @@ void ff_rtp_send_jpeg

Re: [libav-devel] [PATCH 04/15] hevc: Set the keyframe correctly

2014-06-26 Thread Derek Buitenhuis
On 6/26/2014 7:58 PM, Yusuke Nakamura wrote: > It's too bad that 'keyframe' is not always useful for seek because of that > and libavformat uses such 'keyframe' to seek without returning other hints. Hence stuff like d2v exists ;) /troll - Derek ___ li

Re: [libav-devel] [PATCH 04/15] hevc: Set the keyframe correctly

2014-06-26 Thread Yusuke Nakamura
2014-06-27 2:16 GMT+09:00 Vittorio Giovara : > On Wed, Jun 25, 2014 at 8:31 AM, Hendrik Leppkes > wrote: > > Setting key frame based on them is the most logical choice, really. > > My point was more that it's really hard to tell what key_frame does > since its documentation is just "1 -> keyframe

[libav-devel] [PATCH] cljr: split decoder and encoder

2014-06-26 Thread Nidhi Makhijani
--- libavcodec/Makefile | 4 +-- libavcodec/{cljr.c => cljrdec.c} | 75 ++-- libavcodec/{cljr.c => cljrenc.c} | 74 ++- 3 files changed, 6 insertions(+), 147 deletions(-) copy libavcodec/{cljr.c => cljrdec.c} (5

Re: [libav-devel] [PATCH 04/15] hevc: Set the keyframe correctly

2014-06-26 Thread Vittorio Giovara
On Wed, Jun 25, 2014 at 8:31 AM, Hendrik Leppkes wrote: > Setting key frame based on them is the most logical choice, really. My point was more that it's really hard to tell what key_frame does since its documentation is just "1 -> keyframe, 0 -> not". Have you got any pointers that would improve

[libav-devel] [PATCH] avformat: Move ASF flags definitions from asfenc.c to asf.h

2014-06-26 Thread Alexandra Hájková
--- libavformat/asf.h| 156 ++- libavformat/asfenc.c | 155 -- 2 files changed, 155 insertions(+), 156 deletions(-) diff --git a/libavformat/asf.h b/libavformat/asf.h index 2f6722a..1746b6a 100644

[libav-devel] [PATCH] avformat: Move ASF flags definitions from asfenc.c to asf.h

2014-06-26 Thread Alexandra Hájková
--- libavformat/asf.h| 154 ++ libavformat/asfenc.c | 155 --- 2 files changed, 154 insertions(+), 155 deletions(-) diff --git a/libavformat/asf.h b/libavformat/asf.h index 2f6722a..90c79a2 100644

Re: [libav-devel] [PATCH 01/11] dump_stream: print the timebase as

2014-06-26 Thread Anton Khirnov
On Tue, 24 Jun 2014 11:11:26 +0200, Anton Khirnov wrote: > It makes more sense to print the timebase exactly as it is set. Also, > this avoids a divide by zero when av_dump_format() is called on a format > context before writing the header. > --- Approved by Костя on IRC -- Anton Khirnov _

Re: [libav-devel] [PATCH 06/15] hevc: Add SSE4 MC functions

2014-06-26 Thread Anton Khirnov
On Tue, 24 Jun 2014 16:26:45 +0200, Luca Barbato wrote: > From: Pierre Edouard Lepere > > The functions only support x86_64. > > Fixes from Hendrik Leppkes and James Almer > > Signed-off-by: Luca Barbato > --- > libavcodec/hevcdsp.c |6 +- > libavcodec/hevcdsp.h |3

Re: [libav-devel] [PATCH 04/15] hevc: Set the keyframe correctly

2014-06-26 Thread Anton Khirnov
On Tue, 24 Jun 2014 16:26:43 +0200, Luca Barbato wrote: > From: Mickaël Raulet > > Before it was incorrectly set always to 1. was it? > --- > libavcodec/hevc.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c > index 002d9f4..fffca33 100644 > ---

Re: [libav-devel] [PATCH 02/15] hevc: Split MC in unidirectional

2014-06-26 Thread Anton Khirnov
On Tue, 24 Jun 2014 16:26:41 +0200, Luca Barbato wrote: > From: Mickaël Raulet > > --- > libavcodec/hevc.c | 615 ++- > libavcodec/hevc.h | 19 +- > libavcodec/hevc_cabac.c|2 +- > libavcodec/hevc_filter.c | 297 +-- >

Re: [libav-devel] [PATCH 01/15] hevc: Fix picture output logic

2014-06-26 Thread Anton Khirnov
On Tue, 24 Jun 2014 16:26:40 +0200, Luca Barbato wrote: > From: Gildas Cocherel > > --- > libavcodec/hevc.c | 34 ++ > libavcodec/hevc.h | 1 + > libavcodec/hevc_refs.c | 16 +++- > 3 files changed, 50 insertions(+), 1 deletion(-) > > dif

Re: [libav-devel] [PATCH] Add asfinfo tool.

2014-06-26 Thread Luca Barbato
On 26/06/14 14:55, Alexandra Hájková wrote: > The tool prints out asf file structure. > --- > libavformat/Makefile | 3 +- > tools/asfinfo.c | 521 > +++ > 2 files changed, 523 insertions(+), 1 deletion(-) > create mode 100644 tools/asfinfo.

[libav-devel] [PATCH] Add asfinfo tool.

2014-06-26 Thread Alexandra Hájková
The tool prints out asf file structure. --- libavformat/Makefile | 3 +- tools/asfinfo.c | 521 +++ 2 files changed, 523 insertions(+), 1 deletion(-) create mode 100644 tools/asfinfo.c diff --git a/libavformat/Makefile b/libavformat/Makefile

Re: [libav-devel] [PATCH 1/2] fate: Add dependencies for dct/fft/mdct/rdft tests

2014-06-26 Thread Luca Barbato
On 26/06/14 02:45, Diego Biurrun wrote: > --- > libavcodec/fft-test.c | 22 ++ > tests/fate/fft.mak| 32 > 2 files changed, 38 insertions(+), 16 deletions(-) > Looks fine. ___ libav-devel mailin

Re: [libav-devel] [PATCH] indeo2: rename stride to pitch for consistency with other Indeo decoders

2014-06-26 Thread Luca Barbato
On 26/06/14 00:15, Diego Biurrun wrote: > On Wed, Jun 25, 2014 at 08:29:29PM +0200, Kostya Shishkov wrote: >> --- >> libavcodec/indeo2.c | 16 >> 1 file changed, 8 insertions(+), 8 deletions(-) > > I strongly vote for my patch instead to have things more, not less, I'm strongl

Re: [libav-devel] [PATCH 4/4] dcadec: Support for xll (lossless extension)

2014-06-26 Thread Niels Möller
ni...@lysator.liu.se (Niels Möller) writes: > Builds on top of changes by Paul B Mahol , copied > from the ffmpeg branch at > https://github.com/richardpl/FFmpeg/commits/xll. In particular, new > xll-related state variables, and the current function > dca_xll_decode_header is an expanded version o

Re: [libav-devel] [PATCH] indeo2: rename stride to pitch for consistency with other Indeo decoders

2014-06-26 Thread Kostya Shishkov
On Thu, Jun 26, 2014 at 12:15:36AM +0200, Diego Biurrun wrote: > On Wed, Jun 25, 2014 at 08:29:29PM +0200, Kostya Shishkov wrote: > > --- > > libavcodec/indeo2.c | 16 > > 1 file changed, 8 insertions(+), 8 deletions(-) > > I strongly vote for my patch instead to have things mo