[FFmpeg-devel] PATCH for building with nasm

2016-12-31 Thread John Comeau
fixes `operation size not specified` errors as described here: http://stackoverflow.com/questions/36854583/compiling-ffmpeg-for-kali-linux-2 I rebuilt again with yasm and made sure it didn't break that. -- John Comeau KE5TFZ j...@unternet.net http://jc.unternet.net/ "A place for everything, and e

[FFmpeg-devel] [PATCH] avutil/tests: improved code coverage for atomic

2016-12-31 Thread Thomas Turner
Signed-off-by: Thomas Turner --- libavutil/tests/atomic.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libavutil/tests/atomic.c b/libavutil/tests/atomic.c index c92f220..e41bf5a 100644 --- a/libavutil/tests/atomic.c +++ b/libavutil/tests/atomic.c @@ -21,7 +21,9 @@ i

Re: [FFmpeg-devel] [PATCH] libavformat/hlsenc: default segment name and, use_localtime

2016-12-31 Thread Steven Liu
2017-01-01 0:56 GMT+08:00 Bodecs Bela : > > > 2016.12.31. 14:19 keltezéssel, Steven Liu írta: > >> 2016-12-31 19:16 GMT+08:00 Bodecs Bela : >> >> >>> 2016.12.31. 11:48 keltezéssel, Steven Liu írta: >>> >>> 2016-12-31 1:24 GMT+08:00 Bodecs Bela : 2016.12.30. 18:11 keltezéssel, Moritz Bars

Re: [FFmpeg-devel] [PATCH 2/2] avformat/hls: Add subtitle support

2016-12-31 Thread Michael Niedermayer
On Fri, Dec 30, 2016 at 08:10:05PM +, Franklin Phillips wrote: > Each subtile segment is a WebVTT file and needs to be demuxed > separately. These segments also contain a header to synchronize their > timing with the MPEG TS stream so those timestamps are requested from > the WebVTT demuxer thr

Re: [FFmpeg-devel] [PATCH] libavformat/hlsenc: default segment name and, use_localtime

2016-12-31 Thread Bodecs Bela
2016.12.31. 14:19 keltezéssel, Steven Liu írta: 2016-12-31 19:16 GMT+08:00 Bodecs Bela : 2016.12.31. 11:48 keltezéssel, Steven Liu írta: 2016-12-31 1:24 GMT+08:00 Bodecs Bela : 2016.12.30. 18:11 keltezéssel, Moritz Barsnick írta: On Fri, Dec 30, 2016 at 15:38:25 +0100, Bodecs Bela wrote:

Re: [FFmpeg-devel] [PATCH 2/3] avutil/tests/audio_fifo.c: Memory leak and tab space fixes

2016-12-31 Thread Michael Niedermayer
On Tue, Dec 27, 2016 at 06:43:19PM -0800, Thomas Turner wrote: > Prevents memory leak when read_samples_from_audio_fifo() is > called more than once by deallocating before reallocating > more memory. > > Fixes space indentation for contents in ERROR(). > > Signed-off-by: Thomas Turner > --- > l

Re: [FFmpeg-devel] patch for Sricam, Floureon, etc. IP cameras

2016-12-31 Thread John Comeau
right, you can ignore that, I meant to snip it from the patch. sorry about that. On Sat, Dec 31, 2016 at 6:05 AM, compn wrote: > On Fri, 30 Dec 2016 14:32:06 -0800 > John Comeau wrote: > >> diff --git a/TODO.txt b/TODO.txt >> new file mode 100644 >> index 00..1b0c64c186 >> --- /dev/null

Re: [FFmpeg-devel] [PATCH 1/3] avutil/tests/audio_fifo.c: use av_malloc() family of functions

2016-12-31 Thread Michael Niedermayer
On Tue, Dec 27, 2016 at 06:43:18PM -0800, Thomas Turner wrote: > Signed-off-by: James Almer not sure were that comes from, not really important but applied without that thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB While the State exists there can be no

Re: [FFmpeg-devel] [PATCH 0/2] document cutoff option properly, and add support to libmp3lame

2016-12-31 Thread Michael Niedermayer
On Fri, Dec 30, 2016 at 06:08:12PM +0100, Moritz Barsnick wrote: > Hi, this pair of commits adds cutoff support to libmp3lame, and documents > the option "global" to lavc such that it is clear that it is *not* generally > available. > > Noted and requested in this thread: > http://ffmpeg.org/piper

Re: [FFmpeg-devel] [PATCH] libavutil/random_seed: Ensure that get_generic_seed() spends at least 1/32 sec gathering entropy

2016-12-31 Thread Michael Niedermayer
On Thu, Dec 29, 2016 at 12:34:57AM +0100, Michael Niedermayer wrote: > This may fix the failures on windows > > Signed-off-by: Michael Niedermayer > --- > libavutil/random_seed.c | 8 ++-- > 1 file changed, 6 insertions(+), 2 deletions(-) as noone seems to say if it fixes the issue or not i

Re: [FFmpeg-devel] [PATCH 12/17] lavfi: move ff_update_link_current_pts() into the utility functions.

2016-12-31 Thread Michael Niedermayer
On Sat, Dec 31, 2016 at 02:29:45PM +0100, Nicolas George wrote: > Le primidi 11 nivôse, an CCXXV, Michael Niedermayer a écrit : > > slightly off topic but ff_update_link_current_pts() has no > > documentation in the header > > I also noticed it. Also, it is now only used in avfilter.c, so it could

Re: [FFmpeg-devel] [PATCH 2/3] avutil/channel_layout: add av_get_extended_channel_layout

2016-12-31 Thread Michael Niedermayer
On Mon, Dec 26, 2016 at 06:14:33PM +0100, Marton Balint wrote: > Return a channel layout and the number of channels based on the specified > name. > > This function is similar to av_get_channel_layout(), but can also parse > unknown > channel layout specifications. > > Unknown channel layout sp

Re: [FFmpeg-devel] patch for Sricam, Floureon, etc. IP cameras

2016-12-31 Thread compn
On Fri, 30 Dec 2016 14:32:06 -0800 John Comeau wrote: > diff --git a/TODO.txt b/TODO.txt > new file mode 100644 > index 00..1b0c64c186 > --- /dev/null > +++ b/TODO.txt > @@ -0,0 +1 @@ > +2016-12-06: Fix assembly for NASM. See > http://stackoverflow.com/questions/36854583/compiling-ffmpeg-

Re: [FFmpeg-devel] [PATCH 12/17] lavfi: move ff_update_link_current_pts() into the utility functions.

2016-12-31 Thread Nicolas George
Le primidi 11 nivôse, an CCXXV, Michael Niedermayer a écrit : > slightly off topic but ff_update_link_current_pts() has no > documentation in the header I also noticed it. Also, it is now only used in avfilter.c, so it could be made static. I will have to address it when I get to maintaining a pri

Re: [FFmpeg-devel] [PATCH] libavformat/hlsenc: default segment name and, use_localtime

2016-12-31 Thread Steven Liu
2016-12-31 19:16 GMT+08:00 Bodecs Bela : > > > 2016.12.31. 11:48 keltezéssel, Steven Liu írta: > >> 2016-12-31 1:24 GMT+08:00 Bodecs Bela : >> >> 2016.12.30. 18:11 keltezéssel, Moritz Barsnick írta: >>> >>> On Fri, Dec 30, 2016 at 15:38:25 +0100, Bodecs Bela wrote: is not available on al

Re: [FFmpeg-devel] [PATCH 14/17] lavfi: disallow ff_request_frame for filters using activate.

2016-12-31 Thread Michael Niedermayer
On Thu, Dec 29, 2016 at 03:34:00PM +0100, Nicolas George wrote: > Having two different functions allows to have stricter tests > and detect errors earlier. > > Signed-off-by: Nicolas George > --- > libavfilter/avfilter.c | 1 + > libavfilter/internal.h | 3 +++ > 2 files changed, 4 insertions(+)

Re: [FFmpeg-devel] [PATCH 12/17] lavfi: move ff_update_link_current_pts() into the utility functions.

2016-12-31 Thread Michael Niedermayer
On Thu, Dec 29, 2016 at 03:33:58PM +0100, Nicolas George wrote: > Signed-off-by: Nicolas George > --- > libavfilter/avfilter.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > > Unchanged. slightly off topic but ff_update_link_current_pts() has no documentation in the header also t

Re: [FFmpeg-devel] [PATCH 10/17] lavfi: add AVFilter.activate.

2016-12-31 Thread Michael Niedermayer
On Thu, Dec 29, 2016 at 03:33:56PM +0100, Nicolas George wrote: > Signed-off-by: Nicolas George > --- > libavfilter/avfilter.c | 6 +- > libavfilter/avfilter.h | 14 ++ > 2 files changed, 19 insertions(+), 1 deletion(-) > > > Change: more documentation. LGTM thx [...] -- Mi

Re: [FFmpeg-devel] [PATCH] configure: Check build with some header not just preprocessing for testing --std=c11

2016-12-31 Thread Michael Niedermayer
On Fri, Dec 30, 2016 at 02:31:14PM -0300, James Almer wrote: > On 12/28/2016 7:41 PM, Michael Niedermayer wrote: > > Fixes build failure on FreeBSD with gcc 4.7 > > > > Signed-off-by: Michael Niedermayer > > --- > > configure | 9 + > > 1 file changed, 5 insertions(+), 4 deletions(-) > >

Re: [FFmpeg-devel] [PATCH 3/3] avfilter/formats: do not allow unknown layouts in ff_parse_channel_layout if nret is not set

2016-12-31 Thread Nicolas George
Le sextidi 6 nivôse, an CCXXV, Marton Balint a écrit : > Current code returned the number of channels as channel layout in that case, > and if nret is not set then unknown layouts are typically not supported. Good catch. Let me see if I got this correctly: av_get_channel_layout("2c") = stereo av

Re: [FFmpeg-devel] [PATCH] libavformat/hlsenc: default segment name and, use_localtime

2016-12-31 Thread Bodecs Bela
2016.12.31. 11:48 keltezéssel, Steven Liu írta: 2016-12-31 1:24 GMT+08:00 Bodecs Bela : 2016.12.30. 18:11 keltezéssel, Moritz Barsnick írta: On Fri, Dec 30, 2016 at 15:38:25 +0100, Bodecs Bela wrote: is not available on all system/environment. This patch checks %s availabilty at runtine a

Re: [FFmpeg-devel] [PATCH] libavformat/hlsenc: default segment name and, use_localtime

2016-12-31 Thread Steven Liu
2016-12-31 1:24 GMT+08:00 Bodecs Bela : > > 2016.12.30. 18:11 keltezéssel, Moritz Barsnick írta: > >> On Fri, Dec 30, 2016 at 15:38:25 +0100, Bodecs Bela wrote: >> >>> is not available on all system/environment. This patch checks %s >>> availabilty at runtine and alter the default format string if

Re: [FFmpeg-devel] [PATCH 3/9] ffplay: use buffersink accessors.

2016-12-31 Thread Nicolas George
Le septidi 7 nivôse, an CCXXV, Nicolas George a écrit : > Signed-off-by: Nicolas George > --- > ffplay.c | 16 > 1 file changed, 8 insertions(+), 8 deletions(-) Ping for that patch. If there are no more remarks about them, I will eventually push patches 1-5 and 8 (rebased) in t

Re: [FFmpeg-devel] [PATCH 06/17] lavfi: add ff_inlink_process_timeline().

2016-12-31 Thread Nicolas George
Le decadi 10 nivôse, an CCXXV, Michael Niedermayer a écrit : > // do some statistics, whatever > ... > if (ff_inlink_evaluate_timeline_at_frame()) { > process frame > } > pass output on > > > If we imagine a filter that processes a series of frames, lets say > for motion estimation or deinter