Re: [FFmpeg-devel] [PATCH] d3d11va: don't keep the context lock while waiting for a frame

2016-06-16 Thread Michael Niedermayer
On Wed, Jun 15, 2016 at 09:24:29AM +0200, Steve Lhomme wrote: > also fixes a deadlock found by Денис Кулаков > --- > libavcodec/dxva2.c | 12 +--- > 1 file changed, 9 insertions(+), 3 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC7870

Re: [FFmpeg-devel] [PATCH] lavf/mov: ignore ctts entries that do not apply to a least one sample

2016-06-16 Thread Michael Niedermayer
On Thu, Jun 16, 2016 at 05:26:14PM +0200, Matthieu Bouron wrote: > From: Matthieu Bouron > > Fixes packet pts of samples which contain ctts entries with count=0. > --- > > Hello, > > The following patch fixes packet pts of samples which contain ctts values with > count=0 (so the ctts entry does

Re: [FFmpeg-devel] [PATCH 1/2] swresample: fix phase_count calculation

2016-06-16 Thread Muhammad Faiz
On Thu, Jun 16, 2016 at 10:03 PM, Michael Niedermayer wrote: > On Thu, Jun 16, 2016 at 12:31:03AM +0700, Muhammad Faiz wrote: >> support odd phase_count >> stick to low phase_count until set_compensation is called > > can you split these in 2 seperate patches ? > > > [...] >> @@ -382,6 +382,9 @@ s

[FFmpeg-devel] [PATCH 2/2] avformat/oggparsevorbis: free base64 encoded data immediately after decoding it

2016-06-16 Thread James Almer
It has no use afterwards and freeing it before calling ff_flac_parse_picture() may help prevent OOM issues on memory constrained scenarios. Signed-off-by: James Almer --- libavformat/oggparsevorbis.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavformat/oggparsevor

[FFmpeg-devel] [PATCH 1/2] avformat/oggparsevorbis: use the base64 decode size macro

2016-06-16 Thread James Almer
Allocate the memory needed for the decoded data rather than the encoded data. Signed-off-by: James Almer --- libavformat/oggparsevorbis.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c index a8cd6c9..c168718 1

[FFmpeg-devel] [PATCH v3] avformat/tee: Support arbitrary number of slaves

2016-06-16 Thread sebechlebskyjan
From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- I've missed that - sorry, should be fixed in this patch. libavformat/tee.c | 26 +++--- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/libavformat/tee.c b/libavformat/tee.c index 806beaa..421623d 1

Re: [FFmpeg-devel] fix http to seek with int64 offset

2016-06-16 Thread Michael Niedermayer
On Thu, Jun 16, 2016 at 02:00:26PM -0400, Ronald S. Bultje wrote: > Hi, > > On Thu, Jun 16, 2016 at 12:10 AM, Yuri Zats wrote: > > > I found that ffmpeg http seek fails when attempting to seek to offsets > > > 0x8000 due to seek_ret being int32, and this patch addresses it. > > Thanks for me

Re: [FFmpeg-devel] [PATCH] avutil/threadmessage.h: Fix swapped comments

2016-06-16 Thread Marton Balint
On Thu, 16 Jun 2016, Jan Sebechlebsky wrote: Ping :) On 06/10/2016 07:11 PM, sebechlebsky...@gmail.com wrote: From: Jan Sebechlebsky Fix swapped descriptions of av_thread_message_queue_set_err_send and av_thread_message_queue_set_err_recv. Signed-off-by: Jan Sebechlebsky Thanks, pushed.

Re: [FFmpeg-devel] [PATCH v2] avformat/tee: Support arbitrary number of slaves

2016-06-16 Thread Marton Balint
On Thu, 16 Jun 2016, Jan Sebechlebsky wrote: -char *slaves[MAX_SLAVES]; +char **slaves = NULL; int ret; while (*filename) { -if (nb_slaves == MAX_SLAVES) { -av_log(avf, AV_LOG_ERROR, "Maximum %d slave muxers reached.\n", - MAX_SLAVE

Re: [FFmpeg-devel] [PATCH] fate: add test for agate

2016-06-16 Thread Michael Niedermayer
On Thu, Jun 16, 2016 at 04:03:18PM +, Petru Rares Sincraian wrote: > > Hi there, > > Here is a patch for the agate filter. > > > Regards, > Petru. > fate/filter-audio.mak |5 > ref/fate/filter-agate | 264 > ++ > 2 files changed, 269

[FFmpeg-devel] [PATCH 3/3] ffmpeg: copy trailing_padding when using -acodec copy

2016-06-16 Thread Jon Toohill
--- ffmpeg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ffmpeg.c b/ffmpeg.c index 652774f..442f818 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -3001,6 +3001,7 @@ static int transcode_init(void) enc_ctx->audio_service_type = dec_ctx->audio_service_type; enc_ct

[FFmpeg-devel] [PATCH 1/3] lavf/mp3dec: pass Xing gapless metadata to AVCodecParameters

2016-06-16 Thread Jon Toohill
Also removes decoder delay compensation from libmp3lame and mp3enc. initial_padding specifies only encoder delay, decoder delay is handled by start_skip_samples. --- libavcodec/libmp3lame.c | 2 +- libavformat/mp3dec.c| 2 ++ libavformat/mp3enc.c| 9 ++--- 3 files changed, 9 insertions

[FFmpeg-devel] [PATCH 2/3] lavc: show gapless info in stream summary

2016-06-16 Thread Jon Toohill
Also adds trailing_padding to AVCodecContext to match AVCodecParameters so that it doesn't get lost when mapping between them. --- doc/APIchanges | 4 libavcodec/avcodec.h | 11 +++ libavcodec/utils.c | 40 +++- libavcodec/version.h | 2 +-

Re: [FFmpeg-devel] [PATCH] added support for hardware assist H264 video encoding for the Raspberry Pi

2016-06-16 Thread Aman Gupta
The patchset that was merged into libav is now available in ffmpeg as well: https://github.com/FFmpeg/FFmpeg/blob/master/libavcodec/omx.c You can compile ffmpeg from the master branch with --enable-omx --enable-omx-rpi Aman On Thu, Jun 16, 2016 at 2:16 AM, Amancio Hasty wrote: > > > On May 9,

[FFmpeg-devel] [PATCH 0/3] Pass Xing gapless metadata to users during mp3 parsing

2016-06-16 Thread Jon Toohill
These patches expose the encoder delay/padding parsed from an mp3's Xing header to users of lavc/lavf, and show gapless info in the stream summary string. They also change ffmpeg to pass Xing gapless metadata from input to output when using -acodec copy. trailing_padding is still not set proper

Re: [FFmpeg-devel] fix http to seek with int64 offset

2016-06-16 Thread Ronald S. Bultje
Hi, On Thu, Jun 16, 2016 at 12:10 AM, Yuri Zats wrote: > I found that ffmpeg http seek fails when attempting to seek to offsets > > 0x8000 due to seek_ret being int32, and this patch addresses it. > Thanks for merging it in! That looks about right, LGTM - thanks. Ronald __

[FFmpeg-devel] fix http to seek with int64 offset

2016-06-16 Thread Yuri Zats
I found that ffmpeg http seek fails when attempting to seek to offsets > 0x8000 due to seek_ret being int32, and this patch addresses it. Thanks for merging it in! fix_seek_ret_decl.patch Description: Binary data ___ ffmpeg-devel mailing list ffmp

Re: [FFmpeg-devel] [PATCH v2] avformat/tee: Support arbitrary number of slaves

2016-06-16 Thread Jan Sebechlebsky
Ping :) On 06/12/2016 08:17 PM, sebechlebsky...@gmail.com wrote: From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- libavformat/tee.c | 24 +++- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/libavformat/tee.c b/libavformat/tee.c index 806beaa..b

Re: [FFmpeg-devel] [PATCH] avutil/threadmessage.h: Fix swapped comments

2016-06-16 Thread Jan Sebechlebsky
Ping :) On 06/10/2016 07:11 PM, sebechlebsky...@gmail.com wrote: From: Jan Sebechlebsky Fix swapped descriptions of av_thread_message_queue_set_err_send and av_thread_message_queue_set_err_recv. Signed-off-by: Jan Sebechlebsky --- libavutil/threadmessage.h | 16 1 file ch

[FFmpeg-devel] [PATCH] fate: add test for agate

2016-06-16 Thread Petru Rares Sincraian
Hi there, Here is a patch for the agate filter. Regards, Petru.From 06678918311817e6b8d08780a594fb72b2a0fdbb Mon Sep 17 00:00:00 2001 From: Petru Rares Sincraian Date: Thu, 16 Jun 2016 17:12:29 +0200 Subject: [PATCH] fate: add test for agate --- tests/fate/filter-audio.mak | 5 + tests/ref

[FFmpeg-devel] [PATCH] lavf/mov: ignore ctts entries that do not apply to a least one sample

2016-06-16 Thread Matthieu Bouron
From: Matthieu Bouron Fixes packet pts of samples which contain ctts entries with count=0. --- Hello, The following patch fixes packet pts of samples which contain ctts values with count=0 (so the ctts entry does not apply to any sample if I understand correctly). Such samples are produced by a

Re: [FFmpeg-devel] [PATCH 1/2] swresample: fix phase_count calculation

2016-06-16 Thread Michael Niedermayer
On Thu, Jun 16, 2016 at 12:31:03AM +0700, Muhammad Faiz wrote: > support odd phase_count > stick to low phase_count until set_compensation is called can you split these in 2 seperate patches ? [...] > @@ -382,6 +382,9 @@ static ResampleContext *resample_init(ResampleContext *c, > int out_rate,

Re: [FFmpeg-devel] [PATCH] lavd/v4l2: allow devices not implementing VIDIOC_G_PARM

2016-06-16 Thread Michael Niedermayer
On Thu, Jun 16, 2016 at 10:16:54AM +0200, Benoit Fouet wrote: > Hi, > > > On 15/06/2016 17:21, Niklas Söderlund wrote: > >Not all v4l2 devices implement the VIDIOC_G_PARM ioctl. This patch allow > >ffmpeg to open such device and treat it the same as devices that do > >implement the ioctl but retu

Re: [FFmpeg-devel] bans

2016-06-16 Thread Ivan Kalvachev
On 6/16/16, Michael Niedermayer wrote: > On Wed, Jun 15, 2016 at 10:50:51AM -0300, James Almer wrote: >> On 6/15/2016 10:14 AM, Michael Niedermayer wrote: >> > Hi all >> > >> > As noone is doing anything about the situation and what is being >> > done will not lead anywhere (the vote likely wont l

Re: [FFmpeg-devel] bans

2016-06-16 Thread compn
On Thu, 16 Jun 2016 15:21:47 +0200 Michael Niedermayer wrote: > I agree but if i do nothing people are unhappy that i did nothing, > if i talk with people trying to resolve a conflict well, it did not > work this time. and if i do something else people complain too. you tried. thanks for trying.

Re: [FFmpeg-devel] bans

2016-06-16 Thread compn
On Thu, 16 Jun 2016 00:56:28 -0300 James Almer wrote: > I don't think i called him names but if you think i did and violated >>You'll get inside a spiral of bullshit with no >>end until you decide to stop feeding the troll disguised as worried >>contributor. you did call him a troll. :D > the

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: Add myself for videotoolbox.c, remove vda* maintainer

2016-06-16 Thread compn
On Thu, 16 Jun 2016 09:12:39 -0400 Rick Kern wrote: > Person in MAINTAINERS hasn't responded to a patch on the ML or private > email, and doesn't maintain the files according to git. LGTM -compn ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org ht

[FFmpeg-devel] [PATCH] tests/api/api-codec-param-test: Do not directly access caps_internal

2016-06-16 Thread Michael Niedermayer
The caps_internal field has moved without major bump and direct access causes crashes, found when testing 3.1 Signed-off-by: Michael Niedermayer --- tests/api/api-codec-param-test.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api/api-codec-param-test.c b/tests/ap

[FFmpeg-devel] [PATCH] MAINTAINERS: Add myself for videotoolbox.c, remove vda* maintainer

2016-06-16 Thread Rick Kern
Person in MAINTAINERS hasn't responded to a patch on the ML or private email, and doesn't maintain the files according to git. Signed-off-by: Rick Kern --- MAINTAINERS | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 4fe999d..ef23967 100644 --

Re: [FFmpeg-devel] bans

2016-06-16 Thread Michael Niedermayer
On Wed, Jun 15, 2016 at 10:50:51AM -0300, James Almer wrote: > On 6/15/2016 10:14 AM, Michael Niedermayer wrote: > > Hi all > > > > As noone is doing anything about the situation and what is being > > done will not lead anywhere (the vote likely wont lead anywhere as > > likely few would ban a act

Re: [FFmpeg-devel] [PATCH v7] Add experimental support for vp9 in iso-bmff

2016-06-16 Thread Ronald S. Bultje
Hi, On Wed, Jun 15, 2016 at 7:22 PM, KongQun Yang wrote: > > > -- KongQun Yang (KQ) > > On Wed, Jun 15, 2016 at 3:08 PM, Ronald S. Bultje > wrote: > >> Hi, >> >> On Wed, Jun 15, 2016 at 4:53 PM, Kongqun Yang >> wrote: >> >>> Implemented according to the draft specification >>> "VP Codec ISO Me

[FFmpeg-devel] [PATCH] lavf/img2dec: add pnm pipe demuxers

2016-06-16 Thread Clément Bœsch
From: Clément Bœsch --- Still unsure about the FATE changes. Also couldn't test pgm vs pgmyuv due to a crash --- libavformat/Makefile| 5 + libavformat/allformats.c| 5 + libavformat/img2dec.c | 55 + tests/ref/seek/lavf-pbm

Re: [FFmpeg-devel] [PATCH] added support for hardware assist H264 video encoding for the Raspberry Pi

2016-06-16 Thread Amancio Hasty
> On May 9, 2016, at 7:55 AM, Amancio Hasty wrote: > > Hi, > > So what is the next step? > > If you want testers I suggest posting to ccrisan’s motionpie mailing list. > Cheers > Amancio > > >> On Mar 31, 2016, at 7:27 PM, Amancio Hasty wrote: >> >> I am not a lawyer… >> >> >> I updated

Re: [FFmpeg-devel] [PATCH] lavf/img2dec: add ppm pipe demuxer

2016-06-16 Thread Clément Bœsch
On Fri, Jun 10, 2016 at 04:28:55AM +0200, Michael Niedermayer wrote: > On Thu, Jun 09, 2016 at 04:35:02PM +0200, Clément Bœsch wrote: > > On Thu, Jun 09, 2016 at 03:59:30PM +0200, Clément Bœsch wrote: > > > On Thu, Jun 09, 2016 at 01:35:19PM +, Carl Eugen Hoyos wrote: > > > > Clément Bœsch pkh

Re: [FFmpeg-devel] bans

2016-06-16 Thread Ivan Kalvachev
On 6/16/16, James Almer wrote: > On 6/15/2016 8:16 PM, Ivan Kalvachev wrote: >>Loads of crap > > No one, and i mean no one reply to this email. > > You will not get a single answer to any question you make. All you'll get is > counter questions. He will make questions he knows the answers for only

Re: [FFmpeg-devel] [PATCH] lavd/v4l2: allow devices not implementing VIDIOC_G_PARM

2016-06-16 Thread Benoit Fouet
Hi, On 15/06/2016 17:21, Niklas Söderlund wrote: Not all v4l2 devices implement the VIDIOC_G_PARM ioctl. This patch allow ffmpeg to open such device and treat it the same as devices that do implement the ioctl but returns that it do not implement the V4L2_CAP_TIMEPERFRAME capability. Signed-of

Re: [FFmpeg-devel] [PATCH] FTP graceful close data connection to avoid server abort

2016-06-16 Thread Camille Gonnet
2016-06-13 23:29 GMT+02:00 Lukasz Marek : > On 02.06.2016 14:29, Camille Gonnet wrote: > >> When writing files to FTP, if the data connection is closed before the >> control connection, the server may handle it as an aborted file transfer >> and create and leave the file empty. >> >> --- >> liba