[FFmpeg-devel] [PATCH] matroska: demux BluRay text subtitles

2017-02-05 Thread Petri Hintukainen
--- libavformat/matroska.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/matroska.c b/libavformat/matroska.c index c8e5341..fda96fb 100644 --- a/libavformat/matroska.c +++ b/libavformat/matroska.c @@ -74,6 +74,7 @@ const CodecTags ff_mkv_codec_tags[]={ {"S_VOBSUB" ,

Re: [FFmpeg-devel] [PATCH] Cinepak: speed up decoding several-fold, depending on the scenario, by supporting multiple output pixel formats.

2017-02-05 Thread Clément Bœsch
On Sun, Feb 05, 2017 at 12:24:30PM +0100, u-9...@aetey.se wrote: > Hello, > > Here comes an amended patch, I think all the relevant points > in the discussion have been addressed: > > - maintainability and code duplication: > straightforward code templating to reduce duplication > would

Re: [FFmpeg-devel] [PATCH] Efficiently support several output pixel formats in Cinepak decoder

2017-02-05 Thread wm4
On Sun, 5 Feb 2017 14:56:26 +0100 u-9...@aetey.se wrote: > Hello Mark, > > On Sun, Feb 05, 2017 at 12:12:37PM +, Mark Thompson wrote: > > On 05/02/17 10:02, u-9...@aetey.se wrote: > > > To make it a bit more clear, my use case is > > > > > > - various devices and videobuffers > > > -

Re: [FFmpeg-devel] [PATCH] Cinepak: speed up decoding several-fold, depending on the scenario, by supporting multiple output pixel formats.

2017-02-05 Thread wm4
On Sun, 5 Feb 2017 12:24:30 +0100 u-9...@aetey.se wrote: > CinepakContext *s = avctx->priv_data; > +#ifdef CINEPAK_DECODE_PIXFMT_OVERRIDE > +char *out_fmt_override = getenv("CINEPAK_DECODE_PIXFMT_OVERRIDE"); > +#endif No. This has been broadly rejected by multiple developers, including

[FFmpeg-devel] [rfc] tasks for new ffmpeg developers

2017-02-05 Thread Compn
people new to the project join #ffmpeg-devel and ask us for help on how to start contributing to ffmpeg. usually none of us have any cohesive answers. mostly suggestions are to review bugs or patches or code. nothing really concise or organized. i've reviewed a few bugs and think these may be

Re: [FFmpeg-devel] [PATCH] avfilter/af_pan: fix null pointer dereference on empty token

2017-02-05 Thread Marton Balint
On Sun, 5 Feb 2017, Nicolas George wrote: Le septidi 17 pluviôse, an CCXXV, Marton Balint a écrit : Fixes Coverity CID 1396254. Signed-off-by: Marton Balint --- libavfilter/af_pan.c | 5 + 1 file changed, 5 insertions(+) diff --git a/libavfilter/af_pan.c

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

2017-02-05 Thread Franklin Phillips
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 through an AVOption. Signed-off-by: Franklin Phillips

[FFmpeg-devel] [PATCH v2 1/2] avformat/webvttdec: Add support for HLS WebVTT MPEG timestamp map

2017-02-05 Thread Franklin Phillips
WebVTT subtitle files in HLS streams contain a header to synchronize the subtitles with the MPEG TS timestamps of the HLS stream. Add an AVOption to prefer MPEG TS style timestamps generated according to the mapping header, if available. Signed-off-by: Franklin Phillips

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

2017-02-05 Thread Franklin Phillips
Sorry for the test failure, I didn't realise there were tests for HLS demuxer because the tests don't have HLS in their names. I am sending new patches which don't break the tests. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH] omx: Add support for specifying H.264 profile

2017-02-05 Thread Mark Thompson
On 04/02/17 20:26, Takayuki 'January June' Suwa wrote: > This adds "-profile[:v] profile_name"-style option IOW. > "constrained," "baseline," "main" and "high" will work well on Raspbian > Jessie / RasPi3B. > The others aren't checked due to unsupported. The idea of this patch looks sensible to

[FFmpeg-devel] [PATCH] omx: Add support for specifying H.264 profile

2017-02-05 Thread Takayuki 'January June' Suwa
This adds "-profile[:v] profile_name"-style option IOW. "constrained," "baseline," "main" and "high" will work well on Raspbian Jessie / RasPi3B. The others aren't checked due to unsupported. --- libavcodec/omx.c | 91 1 file changed,

Re: [FFmpeg-devel] [PATCH v3] avformat/hlsenc: add hls_flag option to write segments to temporary file until complete

2017-02-05 Thread Steven Liu
2017-02-05 4:38 GMT+08:00 Bodecs Bela : > > > 2017.02.04. 20:45 keltezéssel, Hendrik Leppkes írta: > >> On Sat, Feb 4, 2017 at 6:55 PM, Aman Gupta wrote: >> >>> From: Aman Gupta >>> >>> Adds a `-hls_flags +temp_file` which will write segment

Re: [FFmpeg-devel] [PATCH] Efficiently support several output pixel formats in Cinepak decoder

2017-02-05 Thread u-9iep
Hello Mark, On Sun, Feb 05, 2017 at 12:12:37PM +, Mark Thompson wrote: > On 05/02/17 10:02, u-9...@aetey.se wrote: > > To make it a bit more clear, my use case is > > > > - various devices and videobuffers > > - different applications which are not feasible to patch/teach/replace > > > >

Re: [FFmpeg-devel] How to set avcodec_open2 to set ((MpegEncContext *)(avctx->priv_data))->fixed_qscale = 1?

2017-02-05 Thread Michael Niedermayer
On Sun, Feb 05, 2017 at 05:29:33PM +0800, sea wrote: > Hi , > > > I'm trying to push a stream to a server with ffmpeg. I debugged the ffmpeg > code, and found that when avcode_open2 returned, the ((MpegEncContext > *)(avctx->priv_data))->fixed_qscale = 1. That to say, when video stream was

Re: [FFmpeg-devel] [PATCH] Efficiently support several output pixel formats in Cinepak decoder

2017-02-05 Thread Mark Thompson
On 05/02/17 10:02, u-9...@aetey.se wrote: > On Fri, Feb 03, 2017 at 08:21:37PM +0100, wm4 wrote: >> With your special use-case (special as in does not fit into the API >> conventions of libavcodec), you might be better off with creating your >> own standalone cinepak decoder. That's not a bad

Re: [FFmpeg-devel] [PATCH] Efficiently support several output pixel formats in Cinepak decoder

2017-02-05 Thread u-9iep
On Fri, Feb 03, 2017 at 08:21:37PM +0100, wm4 wrote: > With your special use-case (special as in does not fit into the API > conventions of libavcodec), you might be better off with creating your > own standalone cinepak decoder. That's not a bad thing; there's plenty > of multimedia software that

[FFmpeg-devel] How to set avcodec_open2 to set ((MpegEncContext *)(avctx->priv_data))->fixed_qscale = 1?

2017-02-05 Thread sea
Hi , I'm trying to push a stream to a server with ffmpeg. I debugged the ffmpeg code, and found that when avcode_open2 returned, the ((MpegEncContext *)(avctx->priv_data))->fixed_qscale = 1. That to say, when video stream was handled, certain offset of avctx->priv_data pointer (just

Re: [FFmpeg-devel] [PATCH] avfilter/af_pan: fix null pointer dereference on empty token

2017-02-05 Thread Nicolas George
Le septidi 17 pluviôse, an CCXXV, Marton Balint a écrit : > Fixes Coverity CID 1396254. > > Signed-off-by: Marton Balint > --- > libavfilter/af_pan.c | 5 + > 1 file changed, 5 insertions(+) > > diff --git a/libavfilter/af_pan.c b/libavfilter/af_pan.c > index

Re: [FFmpeg-devel] [PATCH 2/2] configure: instruct MSVC 2015 to properly process UTF-8 string literals

2017-02-05 Thread Matt Oliver
On 4 February 2017 at 21:23, Hendrik Leppkes wrote: > On Sat, Feb 4, 2017 at 10:29 AM, Carl Eugen Hoyos > wrote: > > 2017-02-04 10:25 GMT+01:00 Hendrik Leppkes : > > > >> Another MSVC workaround is an undocumented compiler pragma,