[FFmpeg-devel] [PATCH 1/3] MAINTAINERS: add myself as a maintainer for async protocol

2015-07-21 Thread Zhang Rui
--- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 886ecae..6eff022 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -504,6 +504,7 @@ Muxers/Demuxers: wvenc.c Paul B Mahol Protocols: + async.c

[FFmpeg-devel] [PATCH 2/3] fate: add test for async protocol

2015-07-21 Thread Zhang Rui
--- libavformat/Makefile | 3 +- libavformat/async.c| 169 + tests/fate/libavformat.mak | 4 ++ tests/ref/fate/async | 7 ++ 4 files changed, 182 insertions(+), 1 deletion(-) create mode 100644 tests/ref/fate/async diff --git

[FFmpeg-devel] [PATCH 3/3] avformat/async: avoid deadlock on close

2015-07-21 Thread Zhang Rui
--- libavformat/async.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/async.c b/libavformat/async.c index 1ab28d3..36c86d0 100644 --- a/libavformat/async.c +++ b/libavformat/async.c @@ -129,7 +129,8 @@ static void *async_buffer_task(void *arg) if (c->io

Re: [FFmpeg-devel] [PATCH] avcodec/options-test: don't alloc avctx->coded_frame

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 12:29:15AM -0300, James Almer wrote: > It's done automatically by avcodec_open2() now. > > Fixes memleaks in fate-libavcodec-options. > > Signed-off-by: James Almer > --- > libavcodec/options.c | 2 -- > 1 file changed, 2 deletions(-) LGTM thanks [...] -- Michael

Re: [FFmpeg-devel] [PATCH] avcodec/utils: silence some deprecation warnings

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 12:46:18AM -0300, James Almer wrote: > And prevent eventual compilation failures once the relevant functions > and fields are removed. > > Signed-off-by: James Almer > --- > libavcodec/utils.c | 13 + > 1 file changed, 13 insertions(+) LGTM thanks [...] --

Re: [FFmpeg-devel] [PATCH 1/3] MAINTAINERS: add myself as a maintainer for async protocol

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 03:46:02PM +0800, Zhang Rui wrote: > --- > MAINTAINERS | 1 + > 1 file changed, 1 insertion(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Into a blind darkness they enter who follow after the Ignorance, they as if in

Re: [FFmpeg-devel] [PATCH 2/8] lavf/avio: add ffurl_accept and ffurl_handshake

2015-07-21 Thread Nicolas George
Le tridi 3 thermidor, an CCXXIII, Stephan Holljes a écrit : > Signed-off-by: Stephan Holljes > --- > libavformat/avio.c | 19 +++ > libavformat/url.h | 18 ++ > 2 files changed, 37 insertions(+) > > diff --git a/libavformat/avio.c b/libavformat/avio.c > index c18

Re: [FFmpeg-devel] [PATCH 3/8] lavf/avio: add avio_accept and avio_handshake

2015-07-21 Thread Nicolas George
Le tridi 3 thermidor, an CCXXIII, Stephan Holljes a écrit : > Signed-off-by: Stephan Holljes > --- > libavformat/avio.h| 16 > libavformat/aviobuf.c | 17 + > 2 files changed, 33 insertions(+) As explained in the previous comment, the doxy for avio_handshake(

Re: [FFmpeg-devel] [PATCH 4/8] lavf/tcp: add tcp_accept

2015-07-21 Thread Nicolas George
Le tridi 3 thermidor, an CCXXIII, Stephan Holljes a écrit : > From 12d9a1e1c511615275260977941aff3067f103ea Mon Sep 17 00:00:00 2001 > From: Stephan Holljes > Date: Tue, 21 Jul 2015 06:10:25 +0200 > Subject: [PATCH 4/8] lavf/tcp: add tcp_accept > > Signed-off-by: Stephan Holljes > --- > libavfo

Re: [FFmpeg-devel] [PATCH]lavf/rtpenc_jpeg: Warn if number of present quantization tables is not two

2015-07-21 Thread Carl Eugen Hoyos
Carl Eugen Hoyos ag.or.at> writes: > +if (nb_qtables && nb_qtables != 2) > +av_log(s1, AV_LOG_WARNING, > + "RFC 2435 suggests two quantization tables, %d provided\n", > + nb_qtables); Reviewed and merged by Michael. Thank you, Carl Eugen

Re: [FFmpeg-devel] [PATCH]Set CODEC_PROPERTY_LOSSLESS for j2k for dwt53

2015-07-21 Thread Carl Eugen Hoyos
Michael Niedermayer niedermayer.cc> writes: > > +else if (c->transform == FF_DWT53) { > > +s->avctx->properties |= FF_CODEC_PROPERTY_LOSSLESS; > > +} > > LGTM The patch was merged. Thank you, Carl Eugen ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] [PATCH 2/3] fate: add test for async protocol

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 03:46:03PM +0800, Zhang Rui wrote: > --- > libavformat/Makefile | 3 +- > libavformat/async.c| 169 > + > tests/fate/libavformat.mak | 4 ++ > tests/ref/fate/async | 7 ++ > 4 files changed, 182 insertio

Re: [FFmpeg-devel] FFmpeg/MPlayer/rtmpdump possibly searching for a new server and hosting

2015-07-21 Thread Rodney Baker
On Mon, 20 Jul 2015 10:09:27 Nicolas George wrote: > Le duodi 2 thermidor, an CCXXIII, Rodney Baker a écrit : > > I have had very good experiences with Digital Pacific and their prices are > > reasonable (by Australian standards, anyway). > > They seem much more expensive than their French counter

Re: [FFmpeg-devel] [PATCH 5/8] lavf/tcp: increase range for listen and call the underlying socket operations accordingly

2015-07-21 Thread Nicolas George
Le tridi 3 thermidor, an CCXXIII, Stephan Holljes a écrit : > Signed-off-by: Stephan Holljes > --- > libavformat/tcp.c | 16 +++- > 1 file changed, 11 insertions(+), 5 deletions(-) > > diff --git a/libavformat/tcp.c b/libavformat/tcp.c > index 6f5e175..5505945 100644 > --- a/libavfor

Re: [FFmpeg-devel] [PATCH 3/3] avformat/async: avoid deadlock on close

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 03:46:04PM +0800, Zhang Rui wrote: > --- > libavformat/async.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/libavformat/async.c b/libavformat/async.c > index 1ab28d3..36c86d0 100644 > --- a/libavformat/async.c > +++ b/libavformat/async.c > @@

Re: [FFmpeg-devel] [PATCH 2/3] fate: add test for async protocol

2015-07-21 Thread Zhang Rui
2015-07-21 17:22 GMT+08:00 Michael Niedermayer : > On Tue, Jul 21, 2015 at 03:46:03PM +0800, Zhang Rui wrote: >> --- >> libavformat/Makefile | 3 +- >> libavformat/async.c| 169 >> + >> tests/fate/libavformat.mak | 4 ++ >> tests/ref/f

Re: [FFmpeg-devel] [PATCH 6/8] lavf/http: increase range for listen, handle connection closing accordingly, add http_accept, add http_handshake and move handshake logic there

2015-07-21 Thread Nicolas George
Le tridi 3 thermidor, an CCXXIII, Stephan Holljes a écrit : > From 2dc2be7e8576fd064579d37c75c343a6f18c068c Mon Sep 17 00:00:00 2001 > From: Stephan Holljes > Date: Fri, 3 Jul 2015 02:28:56 +0200 > Subject: [PATCH 6/8] lavf/http: increase range for listen, handle connection > closing accordingly

Re: [FFmpeg-devel] [PATCH 8/8] doc/example: Add http multi-client example code

2015-07-21 Thread Nicolas George
Le tridi 3 thermidor, an CCXXIII, Stephan Holljes a écrit : > Signed-off-by: Stephan Holljes > --- > doc/examples/Makefile | 1 + > doc/examples/http_multiclient.c | 139 > > 2 files changed, 140 insertions(+) > create mode 100644 doc/example

Re: [FFmpeg-devel] FFmpeg/MPlayer/rtmpdump possibly searching for a new server and hosting

2015-07-21 Thread Nicolas George
Le tridi 3 thermidor, an CCXXIII, Rodney Baker a écrit : > I'm not a lawyer, so I can't comment authoritatively on the copyright laws - > I > don't think they're that bad, though. IANAL either, this is not strictly-speaking copyright and "the truth is in Wikipedia", but I found this: "In Austra

[FFmpeg-devel] [PATCH] libavfilter/vf_scale: implement process_command

2015-07-21 Thread Bernd Bleßmann
Signed-off-by: Bernd Bleßmann --- doc/filters.texi | 13 + libavfilter/vf_scale.c | 43 ++- 2 files changed, 47 insertions(+), 9 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 2b0359d..28aaef3 100644 --- a/doc/filters

[FFmpeg-devel] [PATCH] libavfilter/vf_crop: implement process_command

2015-07-21 Thread Bernd Bleßmann
Signed-off-by: Bernd Bleßmann --- doc/filters.texi | 20 +-- libavfilter/vf_crop.c | 53 +++ 2 files changed, 63 insertions(+), 10 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 28aaef3..348e8d7 100644 ---

[FFmpeg-devel] [PATCH] Replace AV_PKT_DATA_QUALITY_FACTOR by AV_PKT_DATA_QUALITY_STATS

2015-07-21 Thread Michael Niedermayer
From: Michael Niedermayer The stats are a superset of the quality factor, also allowing the picture type and encoder "PSNR" stats to be exported This also replaces the native by fixed little endian order for the affected side data TODO: set pict_type for all encoders which export AV_PKT_DATA_Q

Re: [FFmpeg-devel] [PATCH] Replace AV_PKT_DATA_QUALITY_FACTOR by AV_PKT_DATA_QUALITY_STATS

2015-07-21 Thread Nicolas George
Le tridi 3 thermidor, an CCXXIII, Michael Niedermayer a écrit : > -AV_PKT_DATA_QUALITY_FACTOR, > +AV_PKT_DATA_QUALITY_STATS, > +#define AV_PKT_DATA_QUALITY_FACTOR > please_use_AV_PKT_DATA_QUALITY_STATS_which_is_a_superset_of_it It breaks source compatibility with the fork. Is it on purpo

Re: [FFmpeg-devel] [PATCH 2/3] aacenc: move the generation of ff_aac_pow34sf_tab[]

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 02:46:54AM -0300, Claudio Freire wrote: > On Mon, Jul 20, 2015 at 10:05 PM, Claudio Freire > wrote: > > This will need rebasing, the fixed tablegen got in recently > > > > > > On Fri, Jul 17, 2015 at 6:20 PM, Rostislav Pehlivanov > > wrote: > >> This commit moves the gene

Re: [FFmpeg-devel] [PATCH] Replace AV_PKT_DATA_QUALITY_FACTOR by AV_PKT_DATA_QUALITY_STATS

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 01:41:59PM +0200, Nicolas George wrote: > Le tridi 3 thermidor, an CCXXIII, Michael Niedermayer a écrit : > > -AV_PKT_DATA_QUALITY_FACTOR, > > +AV_PKT_DATA_QUALITY_STATS, > > > +#define AV_PKT_DATA_QUALITY_FACTOR > > please_use_AV_PKT_DATA_QUALITY_STATS_which_is_a_

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: loongson move simple idct functions to a separate file

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 01:53:44PM +0800, 周晓勇 wrote: > From f90a2009bd7fc6832cd9c1df174e52e7a1431c0e Mon Sep 17 00:00:00 2001 > From: ZhouXiaoyong > Date: Tue, 21 Jul 2015 10:08:21 +0800 > Subject: [PATCH 1/2] avcodec: loongson move simple idct functions to a > separate file > > > Signed-off-by

Re: [FFmpeg-devel] [PATCH 2/2] avcodec: loongson optimize xvid idct with mmi

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 01:54:55PM +0800, 周晓勇 wrote: > From 0e387e3057deb1390adc1d12e738d7c91b59be18 Mon Sep 17 00:00:00 2001 > From: ZhouXiaoyong > Date: Tue, 21 Jul 2015 10:14:40 +0800 > Subject: [PATCH 2/2] avcodec: loongson optimize xvid idct with mmi > > > Signed-off-by: ZhouXiaoyong > ---

[FFmpeg-devel] [PATCH 2/3] fate: add test for async protocol

2015-07-21 Thread Zhang Rui
--- libavformat/Makefile | 3 +- libavformat/async.c| 171 + tests/fate/libavformat.mak | 4 ++ tests/ref/fate/async | 7 ++ 4 files changed, 184 insertions(+), 1 deletion(-) create mode 100644 tests/ref/fate/async diff --git

[FFmpeg-devel] [PATCH 3/3] avformat/async: avoid deadlock on close

2015-07-21 Thread Zhang Rui
--- libavformat/async.c | 53 ++--- 1 file changed, 30 insertions(+), 23 deletions(-) diff --git a/libavformat/async.c b/libavformat/async.c index be02308..45c484a 100644 --- a/libavformat/async.c +++ b/libavformat/async.c @@ -71,17 +71,16 @@ typede

[FFmpeg-devel] [PATCH 1/4] libavcodec/qsvdec_h264.c: SPS parsing now performs by MFXVideoDECODE_DecodeHeader() into libavcodec/qsvdec.c

2015-07-21 Thread Ivan Uskov
Hello All, There is first patch from 4 which makes qsv-based decode implementation more simple and reliable. This patch replaces external frame parse to internal MFXVideoDECODE_DecodeHeader() function which able to parse any supported stream kind (h.264, hevc, mpeg2, vc-1) by universal way. Pleas

[FFmpeg-devel] [PATCH 2/4] libavcodec/qsvdec_h264.c: refactoring: functional of qsv_process_data() has been moved into qsvdec.c

2015-07-21 Thread Ivan Uskov
Hello All, The qsv_process_data() doing nothing h.264-specific, so it has been moved into qsvdec.c with new name ff_qsv_prepare(). Please review. -- Best regards, Ivan mailto:ivan.us...@nablet.com 0002-libavcodec-qsvdec_h264.c-refactoring-functional-of-q.patch Descr

[FFmpeg-devel] [PATCH 3/4] libavcodec/qsvdec.c: The ff_qsv_decode() now guarantees the consumption of whole packet.

2015-07-21 Thread Ivan Uskov
Hello all, Actual implementation of ff_qsv_decode() is not reliable, it may return without consumption of 1..3 last bytes of packet which initiates infinitive loop. New implementation guarantees that packet will consumed, now internal fifo uses to join unconsumed previous packet tail with new pack

[FFmpeg-devel] [PATCH 4/4] libavcodec/qsvdec_h264.c: packet buffering has been removed since qsvdec.c does maintain own data buffering now.

2015-07-21 Thread Ivan Uskov
Hello all, Since after [PATCH 3/4] the ff_qsv_decode() always consume whole packet payload buffering of packets into qsvdec_h264.c is need not more. Suggested patch makes qsvdec_h264.c simple as far as it possible. Please review. -- Best regards, Ivan mailto:ivan.us...@

Re: [FFmpeg-devel] [PATCH 3/4] avcodec/hapdec: log reason for failure when texture type doesn't match stream

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 01:12:11AM +0100, Tom Butterworth wrote: > --- > libavcodec/hapdec.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Everything should be made as simple as possib

[FFmpeg-devel] [PATCH] avcodec: loongson optimize blockdsp with mmi

2015-07-21 Thread 周晓勇
From 431c8fe5d418d79d5c7cb137499a26e88e6c84dc Mon Sep 17 00:00:00 2001 From: ZhouXiaoyong Date: Tue, 21 Jul 2015 20:55:51 +0800 Subject: [PATCH] avcodec: loongson optimize blockdsp with mmi Signed-off-by: ZhouXiaoyong --- libavcodec/mips/Makefile | 1 + libavcodec/mips/blockdsp_i

Re: [FFmpeg-devel] [PATCH 3/3] avformat/async: avoid deadlock on close

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 09:09:47PM +0800, Zhang Rui wrote: > --- > libavformat/async.c | 53 > ++--- > 1 file changed, 30 insertions(+), 23 deletions(-) > > diff --git a/libavformat/async.c b/libavformat/async.c > index be02308..45c484a 100644 > --

Re: [FFmpeg-devel] [PATCH]lavf/mxf: Map codec_tag for Avid files if everything else fails

2015-07-21 Thread Tomas Härdin
On Fri, 2015-07-17 at 12:36 +0200, Carl Eugen Hoyos wrote: > On Saturday 11 July 2015 04:13:52 pm Tomas Härdin wrote: > > Just a quick review since I have to bounce: > > > +const MXFCodecUL ff_mxf_codec_tag_uls[] = { > > > > Haven't we moved this to mxf.c already? Or rather, don't we > > have a wh

Re: [FFmpeg-devel] [PATCH 2/3] fate: add test for async protocol

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 09:04:03PM +0800, Zhang Rui wrote: > --- > libavformat/Makefile | 3 +- > libavformat/async.c| 171 > + > tests/fate/libavformat.mak | 4 ++ > tests/ref/fate/async | 7 ++ > 4 files changed, 184 insertio

Re: [FFmpeg-devel] [PATCH] conversion of FFV1 specification from lyx to markdown

2015-07-21 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 11:55:41PM -0400, Dave Rice wrote: > > > On Jul 20, 2015, at 8:52 PM, Michael Niedermayer > > wrote: > > > > On Tue, Jul 21, 2015 at 02:14:11AM +0200, Michael Niedermayer wrote: > > [...] > >> ill take another quick look and then will probably push your changes > >> its

Re: [FFmpeg-devel] [PATCH] conversion of FFV1 specification from lyx to markdown

2015-07-21 Thread Dave Rice
> On Jul 21, 2015, at 10:24 AM, Michael Niedermayer > wrote: > > On Mon, Jul 20, 2015 at 11:55:41PM -0400, Dave Rice wrote: >> >>> On Jul 20, 2015, at 8:52 PM, Michael Niedermayer >>> wrote: >>> >>> On Tue, Jul 21, 2015 at 02:14:11AM +0200, Michael Niedermayer wrote: >>> [...] ill take

Re: [FFmpeg-devel] [PATCH] conversion of FFV1 specification from lyx to markdown

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 10:37:30AM -0400, Dave Rice wrote: > > > On Jul 21, 2015, at 10:24 AM, Michael Niedermayer > > wrote: > > > > On Mon, Jul 20, 2015 at 11:55:41PM -0400, Dave Rice wrote: > >> > >>> On Jul 20, 2015, at 8:52 PM, Michael Niedermayer > >>> wrote: > >>> > >>> On Tue, Jul 2

Re: [FFmpeg-devel] [PATCH] avcodec: loongson optimize blockdsp with mmi

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 09:29:11PM +0800, 周晓勇 wrote: > From 431c8fe5d418d79d5c7cb137499a26e88e6c84dc Mon Sep 17 00:00:00 2001 > From: ZhouXiaoyong > Date: Tue, 21 Jul 2015 20:55:51 +0800 > Subject: [PATCH] avcodec: loongson optimize blockdsp with mmi > > > Signed-off-by: ZhouXiaoyong > --- > l

Re: [FFmpeg-devel] [PATCH] avcodec/options-test: don't alloc avctx->coded_frame

2015-07-21 Thread James Almer
On 21/07/15 5:19 AM, Michael Niedermayer wrote: > On Tue, Jul 21, 2015 at 12:29:15AM -0300, James Almer wrote: >> It's done automatically by avcodec_open2() now. >> >> Fixes memleaks in fate-libavcodec-options. >> >> Signed-off-by: James Almer >> --- >> libavcodec/options.c | 2 -- >> 1 file chan

Re: [FFmpeg-devel] [PATCH] avcodec/utils: silence some deprecation warnings

2015-07-21 Thread James Almer
On 21/07/15 5:39 AM, Michael Niedermayer wrote: > On Tue, Jul 21, 2015 at 12:46:18AM -0300, James Almer wrote: >> And prevent eventual compilation failures once the relevant functions >> and fields are removed. >> >> Signed-off-by: James Almer >> --- >> libavcodec/utils.c | 13 + >> 1

[FFmpeg-devel] Remote participation options for IETF session on MKV/FFV1 at July 22 @ 9 CEST

2015-07-21 Thread Dave Rice
Hi all, Tomorrow, Wednesday, July 22nd, at 9:00am CEST, the Dispatch working group of the IETF is holding their meeting at IETF93 in Prague. The standardization of FFV1 and Matroska is on the agenda [1] and will be chaired by Tessa Fallon. Also presenting will be Emanuel Lorrain representing th

Re: [FFmpeg-devel] [PATCH] libavfilter/vf_scale: implement process_command

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 12:45:43PM +0200, Bernd Bleßmann wrote: > Signed-off-by: Bernd Bleßmann > --- > doc/filters.texi | 13 + > libavfilter/vf_scale.c | 43 ++- > 2 files changed, 47 insertions(+), 9 deletions(-) applied thanks [...]

[FFmpeg-devel] trying ffprobe on AAC file with LATM fails

2015-07-21 Thread Venelin Efremov
The error message I get from the latest git head is: [aac_latm @ 0x3a226e0] Non-byte-aligned audio-specific config is not implemented. Update your FFmpeg version to the newest one from Git. If the problem still occurs, it means that your file has a feature which has not been implemented. [aac_latm

Re: [FFmpeg-devel] trying ffprobe on AAC file with LATM fails

2015-07-21 Thread Claudio Freire
On Mon, Jul 20, 2015 at 5:08 AM, Venelin Efremov wrote: > The error message I get from the latest git head is: > [aac_latm @ 0x3a226e0] Non-byte-aligned audio-specific config is not > implemented. Update your FFmpeg version to the newest one from Git. If the > problem still occurs, it means that y

Re: [FFmpeg-devel] [libav-devel] Remote participation options for IETF session on MKV/FFV1 at July 22 @ 9 CEST

2015-07-21 Thread Ronald S. Bultje
Hi, On Tue, Jul 21, 2015 at 12:58 PM, Kostya Shishkov wrote: > On Tue, Jul 21, 2015 at 11:52:55AM -0400, Dave Rice wrote: > > Hi all, > [...] > > The FFV1 specification work may also be reviewed at github [5] with > recent rendering in HTML [6] and PDF [7] available. To participate in the > curr

Re: [FFmpeg-devel] [PATCH] libavfilter/vf_crop: implement process_command

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 12:48:33PM +0200, Bernd Bleßmann wrote: > Signed-off-by: Bernd Bleßmann > --- > doc/filters.texi | 20 +-- > libavfilter/vf_crop.c | 53 > +++ > 2 files changed, 63 insertions(+), 10 deletions(-) applie

[FFmpeg-devel] [PATCH 1/4] avformat/async: fix interrupt_callback usage and return code

2015-07-21 Thread Zhang Rui
--- libavformat/async.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/libavformat/async.c b/libavformat/async.c index be02308..0c7f054 100644 --- a/libavformat/async.c +++ b/libavformat/async.c @@ -75,13 +75,12 @@ static int async_interrupt_callback(void *arg) {

[FFmpeg-devel] [PATCH 2/4] avformat/async: rename async_interrupt_callback to async_check_interrupt

2015-07-21 Thread Zhang Rui
--- libavformat/async.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavformat/async.c b/libavformat/async.c index 0c7f054..e524d33 100644 --- a/libavformat/async.c +++ b/libavformat/async.c @@ -71,7 +71,7 @@ typedef struct Context { AVIOInterruptCB interru

[FFmpeg-devel] [PATCH 3/4] avformat/async: move more code into locked area in background thread

2015-07-21 Thread Zhang Rui
--- libavformat/async.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/libavformat/async.c b/libavformat/async.c index e524d33..856b4dd 100644 --- a/libavformat/async.c +++ b/libavformat/async.c @@ -95,15 +95,15 @@ static void *async_buffer_task(void *arg) while

[FFmpeg-devel] [PATCH 4/4] avformat/async: wake up main thread before exit background thread

2015-07-21 Thread Zhang Rui
--- libavformat/async.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/async.c b/libavformat/async.c index 856b4dd..a905f8d 100644 --- a/libavformat/async.c +++ b/libavformat/async.c @@ -99,6 +99,7 @@ static void *async_buffer_task(void *arg) if (async_check_interrupt(h))

Re: [FFmpeg-devel] [libav-devel] Remote participation options for IETF session on MKV/FFV1 at July 22 @ 9 CEST

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 02:03:16PM -0400, Ronald S. Bultje wrote: > Hi, > > On Tue, Jul 21, 2015 at 12:58 PM, Kostya Shishkov > wrote: > > > On Tue, Jul 21, 2015 at 11:52:55AM -0400, Dave Rice wrote: > > > Hi all, > > [...] > > > The FFV1 specification work may also be reviewed at github [5] wit

[FFmpeg-devel] [PATCH] checkasm: fix build with --enable-shared

2015-07-21 Thread Andreas Cadhalpun
Signed-off-by: Andreas Cadhalpun --- libavcodec/bswapdsp.c | 4 libavcodec/bswapdsp.h | 1 + libavcodec/h264pred.c | 7 +++ libavcodec/h264pred.h | 2 ++ libavcodec/h264qpel.c | 5 + libavcodec/h264qpel.h | 1 + tests/checkasm/bswapdsp.c | 2 +- tests/checkasm

Re: [FFmpeg-devel] [PATCH 2/4] avformat/async: rename async_interrupt_callback to async_check_interrupt

2015-07-21 Thread Michael Niedermayer
On Wed, Jul 22, 2015 at 02:47:24AM +0800, Zhang Rui wrote: > --- > libavformat/async.c | 10 +- > 1 file changed, 5 insertions(+), 5 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB No great genius has ever existed without so

Re: [FFmpeg-devel] [PATCH 1/4] avformat/async: fix interrupt_callback usage and return code

2015-07-21 Thread Michael Niedermayer
On Wed, Jul 22, 2015 at 02:47:23AM +0800, Zhang Rui wrote: > --- > libavformat/async.c | 11 +-- > 1 file changed, 5 insertions(+), 6 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB It is what and why we do it that matters,

Re: [FFmpeg-devel] trying ffprobe on AAC file with LATM fails

2015-07-21 Thread Claudio Freire
On Tue, Jul 21, 2015 at 2:50 PM, Claudio Freire wrote: > On Mon, Jul 20, 2015 at 5:08 AM, Venelin Efremov > wrote: >> The error message I get from the latest git head is: >> [aac_latm @ 0x3a226e0] Non-byte-aligned audio-specific config is not >> implemented. Update your FFmpeg version to the new

Re: [FFmpeg-devel] [libav-devel] Remote participation options for IETF session on MKV/FFV1 at July 22 @ 9 CEST

2015-07-21 Thread Dave Rice
> On Jul 21, 2015, at 2:59 PM, Michael Niedermayer > wrote: > > On Tue, Jul 21, 2015 at 02:03:16PM -0400, Ronald S. Bultje wrote: >> Hi, >> >> On Tue, Jul 21, 2015 at 12:58 PM, Kostya Shishkov >> wrote: >> >>> On Tue, Jul 21, 2015 at 11:52:55AM -0400, Dave Rice wrote: Hi all, >>> [...] >

Re: [FFmpeg-devel] [libav-devel] [PATCH] checkasm: fix build with --enable-shared

2015-07-21 Thread Andreas Cadhalpun
On 21.07.2015 21:31, Luca Barbato wrote: > On 21/07/15 21:18, Andreas Cadhalpun wrote: >> Signed-off-by: Andreas Cadhalpun >> --- >> libavcodec/bswapdsp.c | 4 >> libavcodec/bswapdsp.h | 1 + >> libavcodec/h264pred.c | 7 +++ >> libavcodec/h264pred.h | 2 ++ >> libavcodec

Re: [FFmpeg-devel] [PATCH] checkasm: fix build with --enable-shared

2015-07-21 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 09:18:58PM +0200, Andreas Cadhalpun wrote: > Signed-off-by: Andreas Cadhalpun > --- > libavcodec/bswapdsp.c | 4 > libavcodec/bswapdsp.h | 1 + > libavcodec/h264pred.c | 7 +++ > libavcodec/h264pred.h | 2 ++ > libavcodec/h264qpel.c | 5 + >

Re: [FFmpeg-devel] [PATCH] checkasm: fix build with --enable-shared

2015-07-21 Thread James Almer
On 21/07/15 5:16 PM, Michael Niedermayer wrote: > On Tue, Jul 21, 2015 at 09:18:58PM +0200, Andreas Cadhalpun wrote: >> Signed-off-by: Andreas Cadhalpun >> --- >> libavcodec/bswapdsp.c | 4 >> libavcodec/bswapdsp.h | 1 + >> libavcodec/h264pred.c | 7 +++ >> libavcodec/h264pr

Re: [FFmpeg-devel] [PATCH v3] Add support for TEA (Tiny Encryption Algorithm)

2015-07-21 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 04:56:19PM +0300, Vesselin Bontchev wrote: > libavutil/Makefile |3 > libavutil/tea.c | 213 > +++ > libavutil/tea.h | 71 +++ > tests/fate/libavutil.mak |4 > tests/ref/fate/tea

Re: [FFmpeg-devel] GCC 5.1 warning: -Warray-bounds

2015-07-21 Thread Michael Niedermayer
On Thu, Jun 25, 2015 at 01:25:08AM -0300, James Almer wrote: > On 04/06/15 6:55 PM, Ganesh Ajjanagadde wrote: > > I have created a small test case which gets at the heart of one of > > these spurious > > warnings, namely the one for libavfilter/vf_swapuv.c. > > > > Here is the ticket on the GCC Bu

Re: [FFmpeg-devel] [libav-devel] Remote participation options for IETF session on MKV/FFV1 at July 22 @ 9 CEST

2015-07-21 Thread Jerome Martinez
Le 21/07/2015 20:03, Ronald S. Bultje a écrit : +1. I can't stress how important this is. In addition, the spec should be the master, not any one implementation (because then the bugs in that one implementation will "be" the spec, regardless of what the bug is). In theory, spec should be the

Re: [FFmpeg-devel] GCC 5.1 warning: -Warray-bounds

2015-07-21 Thread Ganesh Ajjanagadde
On Tue, Jul 21, 2015 at 5:14 PM, Michael Niedermayer wrote: > On Thu, Jun 25, 2015 at 01:25:08AM -0300, James Almer wrote: >> On 04/06/15 6:55 PM, Ganesh Ajjanagadde wrote: >> > I have created a small test case which gets at the heart of one of >> > these spurious >> > warnings, namely the one for

Re: [FFmpeg-devel] [PATCH 6/8] lavf/http: increase range for listen, handle connection closing accordingly, add http_accept, add http_handshake and move handshake logic there

2015-07-21 Thread Stephan Holljes
On Tue, Jul 21, 2015 at 12:14 PM, Nicolas George wrote: > Le tridi 3 thermidor, an CCXXIII, Stephan Holljes a écrit : >> From 2dc2be7e8576fd064579d37c75c343a6f18c068c Mon Sep 17 00:00:00 2001 >> From: Stephan Holljes >> Date: Fri, 3 Jul 2015 02:28:56 +0200 > >> Subject: [PATCH 6/8] lavf/http: inc

Re: [FFmpeg-devel] [PATCH 4/8] lavf/tcp: add tcp_accept

2015-07-21 Thread Stephan Holljes
On Tue, Jul 21, 2015 at 11:09 AM, Nicolas George wrote: > Le tridi 3 thermidor, an CCXXIII, Stephan Holljes a écrit : >> From 12d9a1e1c511615275260977941aff3067f103ea Mon Sep 17 00:00:00 2001 >> From: Stephan Holljes >> Date: Tue, 21 Jul 2015 06:10:25 +0200 >> Subject: [PATCH 4/8] lavf/tcp: add t

Re: [FFmpeg-devel] [libav-devel] [PATCH] checkasm: Always link statically

2015-07-21 Thread Andreas Cadhalpun
On 21.07.2015 23:23, Luca Barbato wrote: > Checkasm needs to use internal symbols that should not be made public. > --- > Makefile| 1 + > common.mak | 5 +++-- > tests/checkasm/Makefile | 4 ++-- > 3 files changed, 6 insertions(+), 4 deletions(-) > > diff --git a/Mak

Re: [FFmpeg-devel] trying ffprobe on AAC file with LATM fails

2015-07-21 Thread Carl Eugen Hoyos
Venelin Efremov gmail.com> writes: > I uploaded the file as aac_latm_non_byte_aligned.bin. How was this file produced / what software allows decoding? Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinf

Re: [FFmpeg-devel] GCC 5.1 warning: -Warray-bounds

2015-07-21 Thread Ganesh Ajjanagadde
On Tue, Jul 21, 2015 at 5:31 PM, Ganesh Ajjanagadde wrote: > On Tue, Jul 21, 2015 at 5:14 PM, Michael Niedermayer > wrote: >> On Thu, Jun 25, 2015 at 01:25:08AM -0300, James Almer wrote: >>> On 04/06/15 6:55 PM, Ganesh Ajjanagadde wrote: >>> > I have created a small test case which gets at the he

Re: [FFmpeg-devel] GCC 5.1 warning: -Warray-bounds

2015-07-21 Thread Ronald S. Bultje
Hi, On Tue, Jul 21, 2015 at 10:07 PM, Ganesh Ajjanagadde wrote: > On Tue, Jul 21, 2015 at 5:31 PM, Ganesh Ajjanagadde > wrote: > > On Tue, Jul 21, 2015 at 5:14 PM, Michael Niedermayer > > wrote: > >> On Thu, Jun 25, 2015 at 01:25:08AM -0300, James Almer wrote: > >>> On 04/06/15 6:55 PM, Ganesh

Re: [FFmpeg-devel] GCC 5.1 warning: -Warray-bounds

2015-07-21 Thread Ganesh Ajjanagadde
On Tue, Jul 21, 2015 at 10:28 PM, Ronald S. Bultje wrote: > Hi, > > On Tue, Jul 21, 2015 at 10:07 PM, Ganesh Ajjanagadde > wrote: >> >> On Tue, Jul 21, 2015 at 5:31 PM, Ganesh Ajjanagadde >> wrote: >> > On Tue, Jul 21, 2015 at 5:14 PM, Michael Niedermayer >> > wrote: >> >> On Thu, Jun 25, 2015

Re: [FFmpeg-devel] GCC 5.1 warning: -Warray-bounds

2015-07-21 Thread James Almer
On 21/07/15 11:43 PM, Ganesh Ajjanagadde wrote: > or try to work upstream with GCC to remove these spurious warnings. If it can be fixed upstream then that's certainly the best option. For all we know new code we add in the future may trigger this bug again. ___

Re: [FFmpeg-devel] [PATCH 1/2] movtextenc.c: Reorganize the code for easier maintenance

2015-07-21 Thread Philip Langdale
On Mon, 20 Jul 2015 23:57:28 +0530 Niklesh Lalwani wrote: > From: Niklesh > > This patch reorganizes the code to make it easier to add support for > different text modifier boxes and other styles in the future. > > Signed-off-by: Niklesh > --- > libavcodec/movtextenc.c | 104 > ++

Re: [FFmpeg-devel] [PATCH 2/2] movtextenc.c: Add support for text highlighting

2015-07-21 Thread Philip Langdale
On Tue, 21 Jul 2015 00:02:31 +0530 Niklesh Lalwani wrote: > From: Niklesh > > This patch takes care of the secondary color changes in ASS through > highlight and hilightcolor boxes. > Signed-off-by: Niklesh > --- > libavcodec/movtextenc.c | 60 > ++