Re: [FFmpeg-devel] [PATCH] lavf/hlsenc: add -hls_start_time to emit EXT-X-START:TIME-OFFSET

2016-09-10 Thread Steven Liu
2016-09-10 14:47 GMT+08:00 Aman Gupta : > From: Aman Gupta > > --- > doc/muxers.texi | 3 +++ > libavformat/hlsenc.c | 5 + > 2 files changed, 8 insertions(+) > > diff --git a/doc/muxers.texi b/doc/muxers.texi > index ccf8ea1..e179c5a 100644 > --- a/doc/muxers.texi > +++ b/doc/muxers.te

Re: [FFmpeg-devel] Patches related to bug 4988

2016-09-10 Thread Oliver Collyer
So I’ve spent some more time investigating this issue. It actually affects the two USB capture devices I have, the Magewell XI100DUSB-HDMI and the Inogeni DVI2USB. Each of them suffers similar (but not identical) problems with corrupted buffers at the start of the capture. One workaround is to

[FFmpeg-devel] [PATCH 3/3] lavc/webvttenc: XML-escape text output

2016-09-10 Thread Rodger Combs
The test output was previously incorrect, so the reference is updated. --- libavcodec/webvttenc.c | 7 ++- tests/ref/fate/sub-webvttenc | 20 ++-- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/libavcodec/webvttenc.c b/libavcodec/webvttenc.c index c84bb

[FFmpeg-devel] [PATCH 2/3] ffprobe: switch xml_escape_str to use av_bprint_escape

2016-09-10 Thread Rodger Combs
This now escapes single-quotes, so the test reference is updated. --- ffprobe.c | 25 ++--- tests/ref/fate/ffprobe_xml | 2 +- 2 files changed, 7 insertions(+), 20 deletions(-) diff --git a/ffprobe.c b/ffprobe.c index 657867d..70f2ce6 100644 --- a/ffprobe.c +

[FFmpeg-devel] [PATCH 1/3] lavu/bprint: add XML escaping

2016-09-10 Thread Rodger Combs
--- libavutil/avstring.h | 28 libavutil/bprint.c | 43 +++ 2 files changed, 71 insertions(+) diff --git a/libavutil/avstring.h b/libavutil/avstring.h index dd28769..8e97314 100644 --- a/libavutil/avstring.h +++ b/libavutil/av

Re: [FFmpeg-devel] [PATCH 1/2] ffmpeg: don't reconfigure terminal if we're not taking input from stdin

2016-09-10 Thread Nicolas George
Le tridi 23 fructidor, an CCXXIV, Rodger Combs a écrit : > Agreed in principle; I did it this way because I'm not entirely sure if > there would be negative consequences to parsing options (and thus opening > I/O) before setting up signal handlers. If you think that's not an issue, > I'll make the

[FFmpeg-devel] [PATCH] lavc/ass_split: improve handling of complex ASS features

2016-09-10 Thread Rodger Combs
Specifically: - Skip writing drawings as text - Convert \h to a Unicode non-breaking space - Ignore comments and unknown tags The test references are update to reflect these changes. --- libavcodec/ass_split.c | 29 + tests/ref/fate/sub-textenc | 12 ++-

Re: [FFmpeg-devel] [PATCH 1/2] ass_split: fix handling of streams with no [Events] or Format: line

2016-09-10 Thread Clément Bœsch
On Sat, Sep 10, 2016 at 12:31:12AM -0500, Rodger Combs wrote: > --- > libavcodec/ass_split.c | 36 +++- > 1 file changed, 27 insertions(+), 9 deletions(-) > > diff --git a/libavcodec/ass_split.c b/libavcodec/ass_split.c > index beaba7e..cdb1aa2 100644 > --- a/libav

Re: [FFmpeg-devel] [PATCH 2/2] ass_split: reindent

2016-09-10 Thread Clément Bœsch
On Sat, Sep 10, 2016 at 12:31:13AM -0500, Rodger Combs wrote: > --- > libavcodec/ass_split.c | 34 +- > 1 file changed, 17 insertions(+), 17 deletions(-) > > diff --git a/libavcodec/ass_split.c b/libavcodec/ass_split.c > index cdb1aa2..d3e8a8d 100644 > --- a/libavc

Re: [FFmpeg-devel] [PATCH v5 5/5] avformat/tee: Use BSF list API

2016-09-10 Thread Nicolas George
Le sextidi 16 fructidor, an CCXXIV, sebechlebsky...@gmail.com a écrit : > From: Jan Sebechlebsky > > Signed-off-by: Jan Sebechlebsky > --- > Changes since the last version of the patch: > - added check for avcodec_parameters_copy return value > - fixed stray space > - rewritten cycle receiv

Re: [FFmpeg-devel] [PATCH] avfilter/af_volumedetect: Remove dependency on channel layout

2016-09-10 Thread Nicolas George
Le decadi 20 fructidor, an CCXXIV, Michael Niedermayer a écrit : > Signed-off-by: Michael Niedermayer > --- > libavfilter/af_volumedetect.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) LGTM, thanks. Note that to allow the filter to work with unknown layouts, they must be declared a

Re: [FFmpeg-devel] [PATCH] avfilter/af_amerge: allow merging 1 input only

2016-09-10 Thread Nicolas George
Le decadi 20 fructidor, an CCXXIV, Marton Balint a écrit : > Useful when the amerge filter parameters are generated from a script based on > the number of input streams, by allowing 1 input it does not have to be > handled > specially. > > The split filter also allows 1 output, so it is more cons

Re: [FFmpeg-devel] [PATCH 1/2] avfilter/avf_concat: Make independent of the channel layout

2016-09-10 Thread Nicolas George
Le primidi 21 fructidor, an CCXXIV, Michael Niedermayer a écrit : > Signed-off-by: Michael Niedermayer > --- > libavfilter/avf_concat.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) LGTM. Regards, -- Nicolas George signature.asc Description: Digital signature _

Re: [FFmpeg-devel] [PATCH 2/2] avfilter/fifo: Make independent of the channel layout

2016-09-10 Thread Nicolas George
Le primidi 21 fructidor, an CCXXIV, Michael Niedermayer a écrit : > Signed-off-by: Michael Niedermayer > --- > libavfilter/fifo.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/libavfilter/fifo.c b/libavfilter/fifo.c > index f0b77ff..abfbba1 100644 > --- a/libavfi

[FFmpeg-devel] [PATCH 1/2] ffmpeg: don't reconfigure terminal if we're not taking input from stdin

2016-09-10 Thread Rodger Combs
--- ffmpeg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index d858407..08a7a3d 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -366,7 +366,7 @@ static BOOL WINAPI CtrlHandler(DWORD fdwCtrlType) void term_init(void) { #if HAVE_TERMIOS_H -if(!run_as_

[FFmpeg-devel] [PATCH 2/2] tests: add -nostdin flag when calling ffmpeg

2016-09-10 Thread Rodger Combs
This fixes a long-standing issue where running FATE in parallel could result in the terminal being left misconfigured, particularly if a test failed or was canceled wtih ^C. --- tests/fate/vpx.mak| 10 +- tests/regression-funcs.sh | 2 +- 2 files changed, 6 insertions(+), 6 deleti

Re: [FFmpeg-devel] [PATCH] avfilter/af_amerge: add reorder_inputs option to be able to turn off reordering

2016-09-10 Thread Nicolas George
Le decadi 20 fructidor, an CCXXIV, Marton Balint a écrit : > The work needed fixing this is definitely not comparable to the work I did > creating this patch, or the work anyone will have to do maintaining it. > Asking me to go in this direction, seems an unreasonable amount of extra > work for me,

Re: [FFmpeg-devel] [PATCH 1/2] lavf/mov: fix parsing QuickTime meta after the first track

2016-09-10 Thread Michael Niedermayer
On Fri, Sep 09, 2016 at 08:06:39PM -0500, Rodger Combs wrote: > I'm not entirely sure why found_hdlr_mdta existed to begin with, so cc-ing > Tinglin Liu (who originally wrote the patch) and Derek Buitenhuis (who signed > off on it) hoping for some background. If these checks actually do have a > pu

Re: [FFmpeg-devel] [PATCH 1/2] ffmpeg: don't reconfigure terminal if we're not taking input from stdin

2016-09-10 Thread Nicolas George
Le quintidi 25 fructidor, an CCXXIV, Rodger Combs a écrit : > --- > ffmpeg.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/ffmpeg.c b/ffmpeg.c > index d858407..08a7a3d 100644 > --- a/ffmpeg.c > +++ b/ffmpeg.c > @@ -366,7 +366,7 @@ static BOOL WINAPI CtrlHandler(DW

Re: [FFmpeg-devel] [PATCH] avformat/segment: fix the duration error of use output_ts_offset

2016-09-10 Thread Steven Liu
2016-09-10 13:55 GMT+08:00 Aman Gupta : > I confirmed your latest patch fixes the issue and is working as expected > now. > > Thank you! > > Aman > > On Sat, Sep 10, 2016 at 7:00 AM, Steven Liu > wrote: > >> >> Steven Liu 于2016年9月9日 周五下午7:59写道: >> >>> 2016-09-09 16:33 GMT+08:00 Steven Liu : >>> >

Re: [FFmpeg-devel] [PATCH 2/2] lavf/mov: strip com.apple.quicktime prefix in meta; parse creation date

2016-09-10 Thread Michael Niedermayer
On Fri, Sep 09, 2016 at 08:06:40PM -0500, Rodger Combs wrote: > --- > libavformat/mov.c | 16 > 1 file changed, 16 insertions(+) > > diff --git a/libavformat/mov.c b/libavformat/mov.c > index 54530e3..b75acd2 100644 > --- a/libavformat/mov.c > +++ b/libavformat/mov.c > @@ -42,6 +

Re: [FFmpeg-devel] [PATCH] ffprobe: add -show_headers_first option

2016-09-10 Thread Nicolas George
Le tridi 23 fructidor, an CCXXIV, Stefano Sabatini a écrit : > We have the -show_entries option, and we can extend it to consider > order. The equivalent syntax will then be: > > ffprobe -show_entries format,streams,packets As I said, I never really understood what -show_entries does. I had remem

[FFmpeg-devel] [PATCH 1/2] avfilter/vf_overlay: split blend_image into functions for each overlay format

2016-09-10 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/vf_overlay.c | 352 +-- 1 file changed, 186 insertions(+), 166 deletions(-) diff --git a/libavfilter/vf_overlay.c b/libavfilter/vf_overlay.c index c33b35d..177544e 100644 --- a/libavfilter/vf_overlay.c +++ b/

[FFmpeg-devel] [PATCH 2/2] avfilter/vf_overlay: inline yuv output formats

2016-09-10 Thread Paul B Mahol
Overall speedup ~10-20% Signed-off-by: Paul B Mahol --- libavfilter/vf_overlay.c | 251 +++ 1 file changed, 147 insertions(+), 104 deletions(-) diff --git a/libavfilter/vf_overlay.c b/libavfilter/vf_overlay.c index 177544e..78ced18 100644 --- a/libavf

Re: [FFmpeg-devel] [PATCH]lavc: Enable a53cc by default

2016-09-10 Thread Michael Niedermayer
On Fri, Sep 09, 2016 at 05:59:19PM +0200, Carl Eugen Hoyos wrote: > Hi! > > Attached patch enables saving closed caption by default if available. > > Please comment, Carl Eugen > libx264.c |2 +- > qsvenc_h264.c |2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > 7df31837c63

Re: [FFmpeg-devel] adding RGBA and BGRA to nvenc.c

2016-09-10 Thread Andy Furniss
Andy Furniss wrote: With gstreamer 1080p I can get around 350 fps testing like - gst-launch-1.0 -f ximagesrc use-damage=0 startx=0 starty=0 endx=1919 endy=1079 num-buffers=5000 ! queue ! videoconvert ! video/x-raw,framerate=500/1,format=BGRx ! fakesink Setting pipeline to PAUSED ... Pipeline i

Re: [FFmpeg-devel] adding RGBA and BGRA to nvenc.c

2016-09-10 Thread Nicolas George
Le quintidi 25 fructidor, an CCXXIV, Andy Furniss a écrit : > Looking into this more with sysprof it seems with this test gstreamer is > twice as fast because it doesn't copy from shm but ffmpeg does. > > Of course I may be misunderstanding, but >90% load according to sysprof > is __memcpy_sse2_un

Re: [FFmpeg-devel] adding RGBA and BGRA to nvenc.c

2016-09-10 Thread Sven C. Dack
On 10/09/16 18:35, Andy Furniss wrote: Andy Furniss wrote: With gstreamer 1080p I can get around 350 fps testing like - gst-launch-1.0 -f ximagesrc use-damage=0 startx=0 starty=0 endx=1919 endy=1079 num-buffers=5000 ! queue ! videoconvert ! video/x-raw,framerate=500/1,format=BGRx ! fakesink S

Re: [FFmpeg-devel] Evolution of lavfi's design and API

2016-09-10 Thread Nicolas George
Le quartidi 24 fructidor, an CCXXIV, Paul B Mahol a écrit : > So everybody agrees, we should proceed. I am proceeding, but as you can see in the patch, there is still a fair amount of work to be done. Still, people can help if they want to speed things up, especially since a significant part of th

Re: [FFmpeg-devel] [PATCH] lavc/videotoolboxenc: implement a53cc

2016-09-10 Thread Richard Kern
> On Sep 8, 2016, at 4:19 AM, Aman Gupta wrote: > > From: Aman Gupta > > --- > libavcodec/videotoolboxenc.c | 76 ++-- > 1 file changed, 67 insertions(+), 9 deletions(-) > > diff --git a/libavcodec/videotoolboxenc.c b/libavcodec/videotoolboxenc.c > index

Re: [FFmpeg-devel] adding RGBA and BGRA to nvenc.c

2016-09-10 Thread Andy Furniss
Nicolas George wrote: Le quintidi 25 fructidor, an CCXXIV, Andy Furniss a écrit : Looking into this more with sysprof it seems with this test gstreamer is twice as fast because it doesn't copy from shm but ffmpeg does. Of course I may be misunderstanding, but >90% load according to sysprof is _

Re: [FFmpeg-devel] adding RGBA and BGRA to nvenc.c

2016-09-10 Thread Andy Furniss
Sven C. Dack wrote: I'd be more interested in grabbing the desktop synchronous to the display refresh rate at this point. 60Hz is a key mark, going above it not so much. What would be the next mark anyway? 100Hz? That would be good - I am in a different situation to you though, in that my h/w

Re: [FFmpeg-devel] adding RGBA and BGRA to nvenc.c

2016-09-10 Thread Andy Furniss
Andy Furniss wrote: Nicolas George wrote: I had an inkling that it was about the packet -> frame conversion, but it seems rawdec does the right thing in this particular case. Still, I suggest you add a quick debug av_log() in libavcodec/rawdec.c to check that need_copy is false. I shall have

Re: [FFmpeg-devel] [PATCH 1/2] avfilter/vf_overlay: split blend_image into functions for each overlay format

2016-09-10 Thread Michael Niedermayer
On Sat, Sep 10, 2016 at 04:30:27PM +0200, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavfilter/vf_overlay.c | 352 > +-- > 1 file changed, 186 insertions(+), 166 deletions(-) you could split moving config_input_main() into a seperate

[FFmpeg-devel] [PATCH] lavd: deprecate SDL device

2016-09-10 Thread Josh de Kock
SDL1 has been unmaintained for quite a while (version 1.2.15 was released 4 years ago). Due to how SDL2 works (it requires the main thread), there won't be able to be a replacement to the SDL avdevice if ffplay were to switch to SDL2 in the future. This commit would also help in getting ffplay to s

[FFmpeg-devel] [PATCH] cuvid: Always check for internal errors during parsing

2016-09-10 Thread Philip Langdale
The cuvid parser is basically undocumented, and although you'd think that a failed callback would result in the overall parse call returning an error, that is not true. So, we end up silently trying to keep going as if nothing is wrong, which doesn't achieve anything. Solution: check the internal

Re: [FFmpeg-devel] [PATCH] lavd: deprecate SDL device

2016-09-10 Thread Carl Eugen Hoyos
2016-09-10 21:53 GMT+02:00 Josh de Kock : > +if ! enabled sdl; then > +disable sdl_outdev > +fi This is not necessary: You can remove the device anytime after deprecating it, no need to disable it by default. > +av_log(s, AV_LOG_WARNING, "The SDL output device is deprecated.\n"); This i

Re: [FFmpeg-devel] [PATCH] lavd: deprecate SDL device

2016-09-10 Thread Paul B Mahol
On 9/10/16, Carl Eugen Hoyos wrote: > 2016-09-10 21:53 GMT+02:00 Josh de Kock : > >> +if ! enabled sdl; then >> +disable sdl_outdev >> +fi > > This is not necessary: > You can remove the device anytime after deprecating it, no > need to disable it by default. > >> +av_log(s, AV_LOG_WARNING

Re: [FFmpeg-devel] [PATCH 2/2] avfilter/vf_overlay: inline yuv output formats

2016-09-10 Thread Michael Niedermayer
On Sat, Sep 10, 2016 at 04:30:28PM +0200, Paul B Mahol wrote: > Overall speedup ~10-20% > > Signed-off-by: Paul B Mahol > --- > libavfilter/vf_overlay.c | 251 > +++ > 1 file changed, 147 insertions(+), 104 deletions(-) Tested-by: Michael on mingw32

Re: [FFmpeg-devel] [PATCH] cuvid: Always check for internal errors during parsing

2016-09-10 Thread Timo Rothenpieler
On 9/10/2016 9:51 PM, Philip Langdale wrote: > The cuvid parser is basically undocumented, and although you'd > think that a failed callback would result in the overall parse > call returning an error, that is not true. > > So, we end up silently trying to keep going as if nothing is wrong, > whic

Re: [FFmpeg-devel] [PATCH 1/2] avfilter/avf_concat: Make independent of the channel layout

2016-09-10 Thread Michael Niedermayer
On Sat, Sep 10, 2016 at 11:22:33AM +0200, Nicolas George wrote: > Le primidi 21 fructidor, an CCXXIV, Michael Niedermayer a écrit : > > Signed-off-by: Michael Niedermayer > > --- > > libavfilter/avf_concat.c | 3 +-- > > 1 file changed, 1 insertion(+), 2 deletions(-) > > LGTM. applied thx [..

[FFmpeg-devel] [PATCH 2/2] tests: add -nostdin flag when calling ffmpeg

2016-09-10 Thread Rodger Combs
This fixes a long-standing issue where running FATE in parallel could result in the terminal being left misconfigured, particularly if a test failed or was canceled wtih ^C. --- tests/fate/vpx.mak| 10 +- tests/regression-funcs.sh | 2 +- 2 files changed, 6 insertions(+), 6 deleti

[FFmpeg-devel] [PATCH 1/2] ffmpeg: don't reconfigure terminal if we're not taking input from stdin

2016-09-10 Thread Rodger Combs
--- ffmpeg.c | 4 +--- ffmpeg_opt.c | 3 +++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index d858407..111d844 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -366,7 +366,7 @@ static BOOL WINAPI CtrlHandler(DWORD fdwCtrlType) void term_init(void) { #if HAVE_T

[FFmpeg-devel] [PATCH v2 1/2] lavd: deprecate SDL device

2016-09-10 Thread Josh de Kock
SDL1 has been unmaintained for quite a while (version 1.2.15 was released 4 years ago). Due to how SDL2 works (it requires the main thread), there won't be able to be a replacement to the SDL avdevice if FFmpeg were to switch to SDL2 in the future. This commit would also help in getting ffplay to s

[FFmpeg-devel] [PATCH v2 2/2] lavd: deprecate opengl outdev

2016-09-10 Thread Josh de Kock
This device depends on SDL which is deprecated. Signed-off-by: Josh de Kock --- Changelog| 1 + doc/outdevs.texi | 2 ++ libavdevice/opengl_enc.c | 2 ++ 3 files changed, 5 insertions(+) diff --git a/Changelog b/Changelog index f609a86..f02bf06 100644 --- a/Changelog +++

[FFmpeg-devel] [PATCH] configure: don't build ffserver unless explicitly enabled

2016-09-10 Thread Timo Rothenpieler
--- configure | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/configure b/configure index b11ca7f..d67d8a2 100755 --- a/configure +++ b/configure @@ -116,7 +116,7 @@ Program options: --disable-ffmpeg disable ffmpeg build --disable-ffplay disab

Re: [FFmpeg-devel] [PATCH] configure: don't build ffserver unless explicitly enabled

2016-09-10 Thread Josh de Kock
On 10/09/2016 22:25, Timo Rothenpieler wrote: [...] +DEPRECATED_PROGRAM_LIST=" +ffserver +" > [...] I don't really see the point of this, the other programs are unlikely to be deprecated soon, and this list will be removed after ffserver is. I think it'd just be best to leave it in PROGRA

Re: [FFmpeg-devel] [PATCH] configure: don't build ffserver unless explicitly enabled

2016-09-10 Thread Timo Rothenpieler
On 9/10/2016 11:40 PM, Josh de Kock wrote: > On 10/09/2016 22:25, Timo Rothenpieler wrote: >> [...] >> +DEPRECATED_PROGRAM_LIST=" >> +ffserver >> +" >> [...] > > I don't really see the point of this, the other programs are unlikely to > be deprecated soon, and this list will be removed after f

[FFmpeg-devel] [PATCH] avfilter: add sobel and prewitt filter

2016-09-10 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 22 +++ libavfilter/Makefile | 2 + libavfilter/allfilters.c | 2 + libavfilter/vf_convolution.c | 314 +++ 4 files changed, 311 insertions(+), 29 deletions(-) diff --git a/doc

Re: [FFmpeg-devel] [PATCH] configure: don't build ffserver unless explicitly enabled

2016-09-10 Thread Josh de Kock
On 10/09/2016 22:50, Timo Rothenpieler wrote: On 9/10/2016 11:40 PM, Josh de Kock wrote: On 10/09/2016 22:25, Timo Rothenpieler wrote: [...] +DEPRECATED_PROGRAM_LIST=" +ffserver +" [...] I don't really see the point of this, the other programs are unlikely to be deprecated soon, and this

Re: [FFmpeg-devel] [PATCH 1/2] avfilter/vf_overlay: split blend_image into functions for each overlay format

2016-09-10 Thread Paul B Mahol
On 9/10/16, Michael Niedermayer wrote: > On Sat, Sep 10, 2016 at 04:30:27PM +0200, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> libavfilter/vf_overlay.c | 352 >> +-- >> 1 file changed, 186 insertions(+), 166 deletions(-) > > you could

Re: [FFmpeg-devel] [PATCH 2/2] avfilter/vf_overlay: inline yuv output formats

2016-09-10 Thread Paul B Mahol
On 9/10/16, Michael Niedermayer wrote: > On Sat, Sep 10, 2016 at 04:30:28PM +0200, Paul B Mahol wrote: >> Overall speedup ~10-20% >> >> Signed-off-by: Paul B Mahol >> --- >> libavfilter/vf_overlay.c | 251 >> +++ >> 1 file changed, 147 insertions(+), 1

Re: [FFmpeg-devel] [PATCH] configure: don't build ffserver unless explicitly enabled

2016-09-10 Thread Carl Eugen Hoyos
2016-09-10 23:25 GMT+02:00 Timo Rothenpieler : > - --disable-ffserver disable ffserver build > + --enable-ffserverenable ffserver build This is not ok and you are not explaining it. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@

Re: [FFmpeg-devel] [PATCH v2 2/2] lavd: deprecate opengl outdev

2016-09-10 Thread Carl Eugen Hoyos
2016-09-10 22:59 GMT+02:00 Josh de Kock : > - deprecated sdl outdev > +- deprecated opengl outdev You can merge these lines. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH v3 2/2] lavd: deprecate opengl outdev

2016-09-10 Thread Josh de Kock
This device depends on SDL which is deprecated. Signed-off-by: Josh de Kock --- Changelog| 2 +- doc/outdevs.texi | 2 ++ libavdevice/opengl_enc.c | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index f609a86..6c9f766 100644 ---

Re: [FFmpeg-devel] [PATCH] configure: don't build ffserver unless explicitly enabled

2016-09-10 Thread Timo Rothenpieler
On 9/11/2016 1:22 AM, Carl Eugen Hoyos wrote: > 2016-09-10 23:25 GMT+02:00 Timo Rothenpieler : > >> - --disable-ffserver disable ffserver build >> + --enable-ffserverenable ffserver build ffserver is unmaintained for a very long time now. It's been discussed about deprecating or e

Re: [FFmpeg-devel] [PATCH] configure: don't build ffserver unless explicitly enabled

2016-09-10 Thread Carl Eugen Hoyos
2016-09-11 1:48 GMT+02:00 Timo Rothenpieler : > It's not intended to deprecate ffserver (yet), just a signal to users > that they really want to switch to/use something else, or pick up > maintainership of it. A sufficient signal is already on the homepage. Carl Eugen ___

Re: [FFmpeg-devel] [PATCH] configure: don't build ffserver unless explicitly enabled

2016-09-10 Thread Carl Eugen Hoyos
2016-09-11 2:59 GMT+02:00 Carl Eugen Hoyos : > 2016-09-11 1:48 GMT+02:00 Timo Rothenpieler : > >> It's not intended to deprecate ffserver (yet), just a signal to users >> that they really want to switch to/use something else, or pick up >> maintainership of it. > > A sufficient signal is already on

Re: [FFmpeg-devel] [PATCH 2/3] lavf/mov: improve `tref/chap` chapter handling

2016-09-10 Thread Michael Niedermayer
On Fri, Sep 09, 2016 at 09:07:31PM -0500, Rodger Combs wrote: > 3 parts: > - Supports multiple chapter streams > - Exports regular text chapter streams as opaque data. This prevents consumers > from showing chapters as if they were regular subtitle streams. > - Exports video chapter streams as th

Re: [FFmpeg-devel] [PATCH] lavc/videotoolboxenc: implement a53cc

2016-09-10 Thread Aman Gupta
On Sunday, September 11, 2016, Richard Kern wrote: > > > On Sep 8, 2016, at 4:19 AM, Aman Gupta > > wrote: > > > > From: Aman Gupta > > > > > --- > > libavcodec/videotoolboxenc.c | 76 ++ > -- > > 1 file changed, 67 insertions(+), 9 deletions(-) > > > > diff

Re: [FFmpeg-devel] [PATCH] configure: don't build ffserver unless explicitly enabled

2016-09-10 Thread Sven C. Dack
On 11/09/16 02:07, Carl Eugen Hoyos wrote: Or actually: Don't you agree that a deprecation message printed by the program would make much more sense? Carl Eugen This could interfere with users' current scripts for running ffserver and turn into "adding insult to injury" for the time it is st