Re: [FFmpeg-devel] [PATCH] x86/emms: run the instruction unconditionally on supported targets

2016-02-03 Thread James Almer
On 2/3/2016 11:57 PM, Michael Niedermayer wrote: > On Wed, Feb 03, 2016 at 02:21:28AM -0300, James Almer wrote: >> Inlined functions like AV_ZERO* and AV_COPY* may use mmx instructions >> regardless of runtime cpuflags. >> >> Signed-off-by: James Almer >> --- >> On targets where __MMX__ is not def

Re: [FFmpeg-devel] [PATCH 2/5] lavf/asfenc: check the number of streams in header

2016-02-03 Thread Michael Niedermayer
On Thu, Feb 04, 2016 at 01:57:56AM +0100, Marton Balint wrote: > Signed-off-by: Marton Balint > --- > libavformat/asfenc.c | 5 + > 1 file changed, 5 insertions(+) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Observe your enemies, for they fir

Re: [FFmpeg-devel] [PATCH] x86/emms: run the instruction unconditionally on supported targets

2016-02-03 Thread Michael Niedermayer
On Wed, Feb 03, 2016 at 02:21:28AM -0300, James Almer wrote: > Inlined functions like AV_ZERO* and AV_COPY* may use mmx instructions > regardless of runtime cpuflags. > > Signed-off-by: James Almer > --- > On targets where __MMX__ is not defined (like default x86_32 builds) the > runtime check is

Re: [FFmpeg-devel] [PATCH 1/5] lavf/asfenc: add AVClass to context

2016-02-03 Thread Michael Niedermayer
On Thu, Feb 04, 2016 at 01:57:55AM +0100, Marton Balint wrote: > Signed-off-by: Marton Balint > --- > libavformat/asfenc.c | 17 + > 1 file changed, 17 insertions(+) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Everything should be

[FFmpeg-devel] [PATCH] avcodec/libutvideoenc: fix compiler warnings, initialize the correct type

2016-02-03 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavcodec/libutvideoenc.cpp |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/libutvideoenc.cpp b/libavcodec/libutvideoenc.cpp index d5dfef9..2635184 100644 --- a/libavcodec/libutvideoenc.cpp +++ b/libavcodec/libutvideo

Re: [FFmpeg-devel] [FFmpeg-cvslog] lavc: Move prediction_method to codec private options

2016-02-03 Thread Michael Niedermayer
On Wed, Feb 03, 2016 at 05:49:56PM +0100, Vittorio Giovara wrote: > ffmpeg | branch: master | Vittorio Giovara | Mon > Nov 9 03:15:06 2015 +0100| [2862b63783b5556f7f3fb2d097629bc6879f833a] | > committer: Vittorio Giovara > > lavc: Move prediction_method to codec private options > > This optio

[FFmpeg-devel] [PATCH 3/5] lavf/asfenc: add support for storing languages

2016-02-03 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/asf.c| 4 +++ libavformat/asf.h| 1 + libavformat/asfenc.c | 73 +--- 3 files changed, 74 insertions(+), 4 deletions(-) diff --git a/libavformat/asf.c b/libavformat/asf.c index 80d24db..455ca4d

[FFmpeg-devel] [PATCH 4/5] lavf/asfenc: add support for storing creation time

2016-02-03 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/asfenc.c | 24 +--- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/libavformat/asfenc.c b/libavformat/asfenc.c index e2aa2e0..9c6c9cf 100644 --- a/libavformat/asfenc.c +++ b/libavformat/asfenc.c @@ -22,6 +22,7 @@ #i

[FFmpeg-devel] [PATCH 5/5] lavf/asfenc: add support for setting packet size

2016-02-03 Thread Marton Balint
Signed-off-by: Marton Balint --- doc/muxers.texi | 20 libavformat/asf.h| 2 -- libavformat/asfenc.c | 41 + 3 files changed, 45 insertions(+), 18 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index 4ba8883..2e6

[FFmpeg-devel] [PATCH 2/5] lavf/asfenc: check the number of streams in header

2016-02-03 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/asfenc.c | 5 + 1 file changed, 5 insertions(+) diff --git a/libavformat/asfenc.c b/libavformat/asfenc.c index 9f082c6..6932c11 100644 --- a/libavformat/asfenc.c +++ b/libavformat/asfenc.c @@ -684,6 +684,11 @@ static int asf_write_header(AVFormatC

[FFmpeg-devel] [PATCH 1/5] lavf/asfenc: add AVClass to context

2016-02-03 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/asfenc.c | 17 + 1 file changed, 17 insertions(+) diff --git a/libavformat/asfenc.c b/libavformat/asfenc.c index 87993b6..9f082c6 100644 --- a/libavformat/asfenc.c +++ b/libavformat/asfenc.c @@ -216,6 +216,7 @@ typedef struct ASFStream

[FFmpeg-devel] [PATCH] avfilter/af_apulsator: assert that pathes leaving uninitialized variables do not occur

2016-02-03 Thread Michael Niedermayer
Fixes: CID1341581, CID1341582 Signed-off-by: Michael Niedermayer --- libavfilter/af_apulsator.c |3 +++ 1 file changed, 3 insertions(+) diff --git a/libavfilter/af_apulsator.c b/libavfilter/af_apulsator.c index 6c81530..802b8d0 100644 --- a/libavfilter/af_apulsator.c +++ b/libavfilter/af_ap

Re: [FFmpeg-devel] [PATCH] x86/emms: run the instruction unconditionally on supported targets

2016-02-03 Thread James Almer
On 2/3/2016 2:21 AM, James Almer wrote: > Inlined functions like AV_ZERO* and AV_COPY* may use mmx instructions > regardless of runtime cpuflags. > > Signed-off-by: James Almer > --- > On targets where __MMX__ is not defined (like default x86_32 builds) the > runtime check is a must, and neither

[FFmpeg-devel] [PATCH] avformat/mp3enc: Assert that the header we assembled is valid

2016-02-03 Thread Michael Niedermayer
Fixes: CID1351343 Signed-off-by: Michael Niedermayer --- libavformat/mp3enc.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/mp3enc.c b/libavformat/mp3enc.c index 7296234..71f5178 100644 --- a/libavformat/mp3enc.c +++ b/libavformat/mp3enc.c @@ -192,7 +192,8

Re: [FFmpeg-devel] [PATCH 1/3] sdl: Remove AVPicture usage

2016-02-03 Thread Timothy Gu
On Tue, Feb 02, 2016 at 11:41:59PM -0300, James Almer wrote: > On 2/2/2016 11:17 PM, Timothy Gu wrote: > > On Mon, Feb 01, 2016 at 07:04:06PM -0800, Timothy Gu wrote: > >> --- > >> libavdevice/sdl.c | 10 ++ > >> 1 file changed, 6 insertions(+), 4 deletions(-) > > > > Set pushed. > > > >

Re: [FFmpeg-devel] [PATCH] avutil/aes_crt: free AVAESCTR struct properly

2016-02-03 Thread James Almer
On 2/3/2016 7:29 PM, Andreas Cadhalpun wrote: > On 03.02.2016 23:26, James Almer wrote: >> Signed-off-by: James Almer >> --- >> libavutil/aes_ctr.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/libavutil/aes_ctr.c b/libavutil/aes_ctr.c >> index 2343543..e9c568f 10064

Re: [FFmpeg-devel] [PATCH] avutil/aes_crt: free AVAESCTR struct properly

2016-02-03 Thread Andreas Cadhalpun
On 03.02.2016 23:26, James Almer wrote: > Signed-off-by: James Almer > --- > libavutil/aes_ctr.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavutil/aes_ctr.c b/libavutil/aes_ctr.c > index 2343543..e9c568f 100644 > --- a/libavutil/aes_ctr.c > +++ b/libavutil/aes_ct

[FFmpeg-devel] [PATCH] avutil/aes_crt: free AVAESCTR struct properly

2016-02-03 Thread James Almer
Signed-off-by: James Almer --- libavutil/aes_ctr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/aes_ctr.c b/libavutil/aes_ctr.c index 2343543..e9c568f 100644 --- a/libavutil/aes_ctr.c +++ b/libavutil/aes_ctr.c @@ -79,7 +79,7 @@ void av_aes_ctr_free(struct AVAESCTR

Re: [FFmpeg-devel] [PATCH] Check av_dup_packet() return code

2016-02-03 Thread Andreas Cadhalpun
On 03.02.2016 19:05, Michael Niedermayer wrote: > Fixes: CID1338320 > > Signed-off-by: Michael Niedermayer > --- > libavcodec/frame_thread_encoder.c |4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/libavcodec/frame_thread_encoder.c > b/libavcodec/frame_thread_enco

Re: [FFmpeg-devel] [PATCH] lavf: forward protocol_whitelist for the remaining cases

2016-02-03 Thread Andreas Cadhalpun
On 03.02.2016 03:41, Michael Niedermayer wrote: > On Wed, Feb 03, 2016 at 01:51:55AM +0100, Andreas Cadhalpun wrote: >> @@ -274,4 +282,5 @@ URLProtocol ff_ffrtmphttp_protocol = { >> .priv_data_size = sizeof(RTMP_HTTPContext), >> .flags = URL_PROTOCOL_FLAG_NETWORK, >> .priv_d

[FFmpeg-devel] [PATCH] Add mkdir support for HLS localtime-generated segment files

2016-02-03 Thread Johan Ström
create put segments created (today) in /dvr/test/20160203/, and the 20160203 dir will be automatically created if it does not already exist. The m3u8 playlist will contain segment paths like this: 20160203/20160203T224121-1454535681.ts The subdir support could possibly be enabled outside of

Re: [FFmpeg-devel] feature request: add instructions on the trac upload page for how to upload larger files

2016-02-03 Thread Carl Eugen Hoyos
Roger Pack gmail.com> writes: > On 2/2/16, Carl Eugen Hoyos ag.or.at> wrote: > > Roger Pack gmail.com> writes: > > > >> I wonder if it would be possible to tweak some config > >> setting so that 10 MB uploads is the max? > > > > Please don't! > > reasoning? For 50% of the bug report, 2.5 MB a

[FFmpeg-devel] [PATCH] avutil/imgutils: Assert that the 2nd av_image_fill_linesizes() call in av_image_fill_linesizes() still succeeds

2016-02-03 Thread Michael Niedermayer
Fixes CID1271742 Signed-off-by: Michael Niedermayer --- libavutil/imgutils.c |5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libavutil/imgutils.c b/libavutil/imgutils.c index 3320664..f4a015a 100644 --- a/libavutil/imgutils.c +++ b/libavutil/imgutils.c @@ -385,6 +385,7

Re: [FFmpeg-devel] [PATCH 1/3] sdl: Remove AVPicture usage

2016-02-03 Thread James Almer
On 2/3/2016 4:39 AM, wm4 wrote: > On Tue, 2 Feb 2016 23:41:59 -0300 > James Almer wrote: > >> On 2/2/2016 11:17 PM, Timothy Gu wrote: >>> On Mon, Feb 01, 2016 at 07:04:06PM -0800, Timothy Gu wrote: --- libavdevice/sdl.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletio

[FFmpeg-devel] [PATCH] Check av_dup_packet() return code

2016-02-03 Thread Michael Niedermayer
Fixes: CID1338320 Signed-off-by: Michael Niedermayer --- libavcodec/frame_thread_encoder.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavcodec/frame_thread_encoder.c b/libavcodec/frame_thread_encoder.c index 04c9a0e..27ae356 100644 --- a/libavcodec/frame_thread_

Re: [FFmpeg-devel] [PATCH 1/2] Add TargetTypeValue in Matroska tag prefix

2016-02-03 Thread Nicolas George
Le quartidi 14 pluviôse, an CCXXIV, Pierre Choffet a écrit : > Previously, the Matroska tag names were structured like this: > [/] > This lead to an issue when is not available: the different > levels tags overwrite each > other when they have the same name. > > This patch transforms the name

Re: [FFmpeg-devel] [PATCH 4/4] avformat: add vc2 as an allowed rawenc Dirac extension

2016-02-03 Thread Rostislav Pehlivanov
On Wed, 2016-02-03 at 01:55 +0100, Michael Niedermayer wrote: > On Tue, Feb 02, 2016 at 12:35:30PM +, Rostislav Pehlivanov wrote: > > Signed-off-by: Rostislav Pehlivanov > > --- > >  libavformat/rawenc.c | 2 +- > >  1 file changed, 1 insertion(+), 1 deletion(-) > > should be ok > > [...] > _

Re: [FFmpeg-devel] [PATCH 1/4] diradec: split tables away to a separate diractab file

2016-02-03 Thread Rostislav Pehlivanov
On Wed, 2016-02-03 at 15:55 +0100, Michael Niedermayer wrote: > On Tue, Feb 02, 2016 at 02:28:56PM +, Rostislav Pehlivanov wrote: > > On 2 February 2016 at 13:32, Michael Niedermayer > er.cc> > > wrote: > > > > > > > > did you forget to add the diractab file ? > > > > > > > > Ah, I did. >

Re: [FFmpeg-devel] [PATCH 2/4] diracdec: move the MAX_DWT_LEVELS macro to dirac.h

2016-02-03 Thread Rostislav Pehlivanov
On Wed, 2016-02-03 at 15:53 +0100, Michael Niedermayer wrote: > On Tue, Feb 02, 2016 at 12:35:28PM +, Rostislav Pehlivanov wrote: > > Used by the VC-2 encoder. > > > > Signed-off-by: Rostislav Pehlivanov > > --- > >  libavcodec/dirac.h| 11 +++ > >  libavcodec/diracdec.c | 12 +

Re: [FFmpeg-devel] [PATCH 1/4] diradec: split tables away to a separate diractab file

2016-02-03 Thread Michael Niedermayer
On Tue, Feb 02, 2016 at 02:28:56PM +, Rostislav Pehlivanov wrote: > On 2 February 2016 at 13:32, Michael Niedermayer > wrote: > > > > > did you forget to add the diractab file ? > > > > > Ah, I did. > > Correct patch attached. > Makefile |2 - > diracdec.c | 79

Re: [FFmpeg-devel] [PATCH 2/4] diracdec: move the MAX_DWT_LEVELS macro to dirac.h

2016-02-03 Thread Michael Niedermayer
On Tue, Feb 02, 2016 at 12:35:28PM +, Rostislav Pehlivanov wrote: > Used by the VC-2 encoder. > > Signed-off-by: Rostislav Pehlivanov > --- > libavcodec/dirac.h| 11 +++ > libavcodec/diracdec.c | 12 +--- > 2 files changed, 12 insertions(+), 11 deletions(-) LGTM thx [.

Re: [FFmpeg-devel] feature request: add instructions on the trac upload page for how to upload larger files

2016-02-03 Thread Roger Pack
On 2/2/16, Carl Eugen Hoyos wrote: > Roger Pack gmail.com> writes: > >> I wonder if it would be possible to tweak some config >> setting so that 10 MB uploads is the max? > > Please don't! reasoning? if we're going to use the disk space by putting it in incoming why not make it easier for users

Re: [FFmpeg-devel] [PATCH] avformat/http: Add crypto to default whitelist

2016-02-03 Thread Michael Niedermayer
On Wed, Feb 03, 2016 at 01:18:15PM +, Schenk, Michael wrote: > Dear friends, > > > > I think we missed the crypto in the default_whitelist in case of http. > Otherwise encrypted HLS will fail with > > > > [hls,applehttp @ 0x2af39c00] playlist[0] open_input > [http://playertest.longtailv

Re: [FFmpeg-devel] [RFC][WIP][PATCH] avfilter: add luascript filter

2016-02-03 Thread Paul B Mahol
On 2/3/16, wm4 wrote: > I'm not sure if I understand the implications. Do you have an example > file? It just proof of concept, nothing useful yet. This one is able to load single source like movie/amovie/testsrc2 and give output frames. I already wrote code that naively parse filtergraphs where

[FFmpeg-devel] [PATCH v2] x11grab: fixed next frame capture time calculation

2016-02-03 Thread Trevor \\ Higgins
The next frame time could slip, causing the frame rate to drop until frames were dropped. Now will capture at the next correct moment instead. --- Fixed the style to conform to the standard --- libavdevice/x11grab.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git

Re: [FFmpeg-devel] [PATCH v5 5/5] libavfilter: VAAPI surface scaler

2016-02-03 Thread wm4
On Tue, 2 Feb 2016 20:26:17 + Mark Thompson wrote: > On 01/02/16 16:14, wm4 wrote: > > On Sat, 30 Jan 2016 22:15:04 + > > Mark Thompson wrote: > >> +{ "hardware_context", "VAAPI hardware context", > >> + OFFSET(hardware_context), AV_OPT_TYPE_INT64, > >> + { .i64 = 0 }, IN

Re: [FFmpeg-devel] [PATCH v5 1/5] libavcodec: VAAPI support infrastructure

2016-02-03 Thread wm4
On Tue, 2 Feb 2016 19:51:53 + Mark Thompson wrote: > On 01/02/16 15:58, wm4 wrote: > > On Sat, 30 Jan 2016 22:11:52 + > > Mark Thompson wrote: > > > >> --- > >> configure | 5 + > >> libavcodec/Makefile| 1 + > >> libavcodec/vaapi_support.c | 710 > >> ++

Re: [FFmpeg-devel] [RFC][WIP][PATCH] avfilter: add luascript filter

2016-02-03 Thread wm4
On Tue, 2 Feb 2016 23:25:27 +0100 Paul B Mahol wrote: > From 5caafe2f74d6eb5563b1103193cc8d136edcfd0f Mon Sep 17 00:00:00 2001 > From: Paul B Mahol > Date: Tue, 2 Feb 2016 10:09:50 +0100 > Subject: [RFC][WIP][PATCH] avfilter: add luascript filter > > Signed-off-by: Paul B Mahol > --- > config

Re: [FFmpeg-devel] [RFC][WIP][PATCH] avfilter: add luascript filter

2016-02-03 Thread James Darnley
On 2016-02-02 23:25, Paul B Mahol wrote: > Hi, > > patch attached. Nice. I look forward to reading it. Firstly: why limit it to Lua 5.1? I think it should also support LuaJIT. While it is ABI compatible with 5.1 this patch would require its headers to be in "lua-5.1". My suggestion would be

[FFmpeg-devel] [PATCH] avformat/http: Add crypto to default whitelist

2016-02-03 Thread Schenk, Michael
Dear friends, I think we missed the crypto in the default_whitelist in case of http. Otherwise encrypted HLS will fail with [hls,applehttp @ 0x2af39c00] playlist[0] open_input [http://playertest.longtailvideo.com/adaptive/oceans_aes/oceans_aes-audio=65000-video=236000-14.ts], start_seq_no

[FFmpeg-devel] [PATCH v2] diracdec: allow decoding of field-coded pictures

2016-02-03 Thread Rostislav Pehlivanov
This commit allows for the decoding of field-coded pictures in the HQ profile of VC-2. What it basically does is it gets a single field while in HQ field-coded mode, does not output a frame on that field but waits for the second field, decodes it to the same frame as the last field (avoiding a memc

Re: [FFmpeg-devel] [PATCH]levc/hevc_cabac Optimise ff_hevc_hls_residual_coding (v2)

2016-02-03 Thread John Cox
On Tue, 2 Feb 2016 12:52:15 +0100, you wrote: >Hi, > >as a motus operandi for this review, I have no time for a proper one, >or at least not fitting with John's timeframe. I'll try to close as >many pending discussions, and would prefer if someone else completed >the review/validation/commit. Do

Re: [FFmpeg-devel] [PATCHv3] doc/demuxers: add some concat demuxer script examples

2016-02-03 Thread Stefano Sabatini
On date Wednesday 2016-02-03 11:47:46 +0100, Tobias Rapp encoded: [...] > From efe7e2854f7155106339ba7b2fa6619f5721d2d7 Mon Sep 17 00:00:00 2001 > From: Tobias Rapp > Date: Tue, 26 Jan 2016 09:02:51 +0100 > Subject: [PATCH] doc/demuxers: add some concat demuxer script examples > > Signed-off-by:

Re: [FFmpeg-devel] [PATCH] avformat/dca_parser: set actual samplerate

2016-02-03 Thread wm4
On Wed, 3 Feb 2016 12:45:39 +0100 Hendrik Leppkes wrote: > On Wed, Feb 3, 2016 at 12:41 PM, wm4 wrote: > > Fixes timestamps with raw .dts demuxing. > > --- > > libavcodec/dca_parser.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/libavcodec/dca_parser.c b/libavcodec/dca_parser.

Re: [FFmpeg-devel] [PATCH] avformat/dca_parser: set actual samplerate

2016-02-03 Thread Hendrik Leppkes
On Wed, Feb 3, 2016 at 12:41 PM, wm4 wrote: > Fixes timestamps with raw .dts demuxing. > --- > libavcodec/dca_parser.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/libavcodec/dca_parser.c b/libavcodec/dca_parser.c > index 70e64a8..337a99d 100644 > --- a/libavcodec/dca_parser.c > +++ b

Re: [FFmpeg-devel] [PATCH] avformat/dca_parser: set actual samplerate

2016-02-03 Thread wm4
On Wed, 3 Feb 2016 12:41:20 +0100 wm4 wrote: > Fixes timestamps with raw .dts demuxing. > --- > libavcodec/dca_parser.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/libavcodec/dca_parser.c b/libavcodec/dca_parser.c > index 70e64a8..337a99d 100644 > --- a/libavcodec/dca_parser.c > +

[FFmpeg-devel] [PATCH] avformat/dca_parser: set actual samplerate

2016-02-03 Thread wm4
Fixes timestamps with raw .dts demuxing. --- libavcodec/dca_parser.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/dca_parser.c b/libavcodec/dca_parser.c index 70e64a8..337a99d 100644 --- a/libavcodec/dca_parser.c +++ b/libavcodec/dca_parser.c @@ -166,6 +166,7 @@ static int dca_pa

Re: [FFmpeg-devel] [PATCHv2] doc/demuxers: add some concat demuxer script examples

2016-02-03 Thread Tobias Rapp
On 03.02.2016 09:48, Paul B Mahol wrote: On 2/3/16, Tobias Rapp wrote: On 26.01.2016 09:09, Tobias Rapp wrote: On 25.01.2016 13:22, Nicolas George wrote: Le decadi 30 nivose, an CCXXIV, Tobias Rapp a ecrit : Attached patch adds some example scripts for the concat demuxer to the documentation

Re: [FFmpeg-devel] [PATCHv3] doc/demuxers: add some concat demuxer script examples

2016-02-03 Thread Tobias Rapp
On 03.02.2016 10:23, Stefano Sabatini wrote: From 2faf6c05df62c69347091aa6254c2db796d19345 Mon Sep 17 00:00:00 2001 From: Tobias Rapp Date: Tue, 26 Jan 2016 09:02:51 +0100 Subject: [PATCH] doc/demuxers: add some concat demuxer script examples Signed-off-by: Tobias Rapp --- doc/demuxers.texi

Re: [FFmpeg-devel] [PATCH] x11grab: fixed next frame capture time calculation

2016-02-03 Thread Carl Eugen Hoyos
Trevor \\ Higgins gmail.com> writes: > -if (delay <= 0) { The patch will get more readable and easier to review if you don't change this line. > +do{ > +}while((s->time_frame * av_q2d(s->time_base) - curtime) <= 0); Please make this: do { ... } while ((... to keep the style

Re: [FFmpeg-devel] [PATCHv2] doc/demuxers: add some concat demuxer script examples

2016-02-03 Thread Stefano Sabatini
On date Tuesday 2016-01-26 09:09:16 +0100, Tobias Rapp encoded: > On 25.01.2016 13:22, Nicolas George wrote: > >Le decadi 30 nivôse, an CCXXIV, Tobias Rapp a écrit : > >>Attached patch adds some example scripts for the concat demuxer to the > >>documentation. > > > >Well, I maintain the code, not r

[FFmpeg-devel] [PATCH] rtpdec: support for VC-2 HQ RTP payload format (draft v1)

2016-02-03 Thread silvo
From: Thomas Volkert --- Changelog| 1 + libavformat/Makefile | 1 + libavformat/rtpdec.c | 1 + libavformat/rtpdec_formats.h | 1 + libavformat/rtpdec_vc2hq.c | 225 +++ libavformat/version.h| 4 +-

Re: [FFmpeg-devel] [PATCH] lavc/lavf: transmit stream_id information for mpegts KLV data packets

2016-02-03 Thread Stefano Sabatini
On date Saturday 2016-01-30 13:40:57 +0100, Stefano Sabatini encoded: > This allows to copy information related to the stream ID from the demuxer > to the muxer, thus allowing for example to retain information related to > synchronous and asynchronous KLV data packets. This information is used > in

Re: [FFmpeg-devel] [SPI] Outreachy funding

2016-02-03 Thread Stefano Sabatini
On date Tuesday 2016-02-02 19:35:09 +0100, Michael Niedermayer encoded: > Hi > > I Suggest that we fund 1 slot for outreachy (so that FFmpeg can > participate in this round of Outreachy) assuming no sponsors are > found > The exact amount needed for this would be 6500 USD IIUC > > See: https://wi

Re: [FFmpeg-devel] [PATCHv2] doc/demuxers: add some concat demuxer script examples

2016-02-03 Thread Paul B Mahol
On 2/3/16, Tobias Rapp wrote: > On 26.01.2016 09:09, Tobias Rapp wrote: >> On 25.01.2016 13:22, Nicolas George wrote: >>> Le decadi 30 nivose, an CCXXIV, Tobias Rapp a ecrit : Attached patch adds some example scripts for the concat demuxer to the documentation. >>> >>> Well, I maintain t

Re: [FFmpeg-devel] [PATCH 1/3] sdl: Remove AVPicture usage

2016-02-03 Thread Mats Peterson
On 02/03/2016 08:39 AM, wm4 wrote: While I'm all for reviews, this set is rather inoffensive, and there are much messier and more controversial patches pushed without even sending them to the ML. Do we even have a consistent policy here? You tell me. Mats _

[FFmpeg-devel] [PATCH] x11grab: fixed next frame capture time calculation

2016-02-03 Thread Trevor \\ Higgins
The next frame time could slip, causing the frame rate to drop until frames were dropped. Now will capture at the next correct moment instead. --- libavdevice/x11grab.c | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/libavdevice/x11grab.c b/libavdevice/x11grab.c