Re: [FFmpeg-devel] Lossless SilenceRemove Filter

2016-06-30 Thread Paul B Mahol
On 6/29/16, Marcus Johnson wrote: > I'm not sure where to post this message, but this list seemed the most > appropriate. > > It seems like a better way to go about removing non-digital silence would be > to convert each sample to float or double, then compare that to the max dB > considered silen

Re: [FFmpeg-devel] [PATCH] avfilter/drawutils: change to support native endian only

2016-06-30 Thread Paul B Mahol
On 6/29/16, Muhammad Faiz wrote: > On Tue, Jun 28, 2016 at 5:45 PM, Michael Niedermayer > wrote: >> On Tue, Jun 28, 2016 at 04:07:31PM +0700, Muhammad Faiz wrote: >>> On Mon, Jun 27, 2016 at 6:02 PM, Michael Niedermayer >>> wrote: >>> > On Mon, Jun 27, 2016 at 04:46:16PM +0700, Muhammad Faiz wro

Re: [FFmpeg-devel] [PATCH] H264ParamSets: make sps const

2016-06-30 Thread Benoit Fouet
Hi, On 27/06/2016 14:37, Benoit Fouet wrote: Hi, First patch change decode_scaling_matrices function, so that it does not affect the SPS structure it gets, and marks SPS and PPS const in its arguments. Second patch straightens the check for macroblock sizes in ff_h264_decode_seq_parameter_

Re: [FFmpeg-devel] [PATCH] avutil/frame: Move new field to the end of AVFrame

2016-06-30 Thread Michael Niedermayer
On Wed, Jun 29, 2016 at 11:44:55PM -0300, James Almer wrote: > On 6/29/2016 9:47 PM, James Almer wrote: > > On 6/29/2016 9:16 PM, Carl Eugen Hoyos wrote: > >> Hendrik Leppkes gmail.com> writes: > >> > >>> Plenty previous releases moved fields that were marked as "no direct > >>> access", usually b

Re: [FFmpeg-devel] [PATCH] web: Remove recommandition to upgrade to 3.1

2016-06-30 Thread Michael Niedermayer
On Wed, Jun 29, 2016 at 11:21:48PM -0300, James Almer wrote: > On 6/29/2016 9:27 PM, Carl Eugen Hoyos wrote: > > Ronald S. Bultje gmail.com> writes: > > > >> For the record: there was some discussion related to this on IRC. > > > > Would you mind adding some relevant points here? > > I was under

Re: [FFmpeg-devel] libavcodec/exr : fix decoding float piz file

2016-06-30 Thread Michael Niedermayer
On Tue, Jun 28, 2016 at 09:50:03PM +0200, Paul B Mahol wrote: > On 6/28/16, Martin Vignali wrote: > > Hello, > > > > in attach patch to fix piz float file (ticket 5674) > > > > the size of a channel is now calculate using the pixel type. > > > > Comments welcome > > > > Martin > > Jokyo Images > >

Re: [FFmpeg-devel] [PATCH] web: Remove recommandition to upgrade to 3.1

2016-06-30 Thread Ronald S. Bultje
Hi, On Thu, Jun 30, 2016 at 4:32 AM, Michael Niedermayer wrote: > On Wed, Jun 29, 2016 at 11:21:48PM -0300, James Almer wrote: > > On 6/29/2016 9:27 PM, Carl Eugen Hoyos wrote: > > > Ronald S. Bultje gmail.com> writes: > > > > > >> For the record: there was some discussion related to this on IR

[FFmpeg-devel] [PATCH 1/2] avformat/avformat: Move new field to the end of AVFrame

2016-06-30 Thread Michael Niedermayer
This fixes part of Ticket5676 This fixes kodi, mpv, chromium and ffplay build against 3.0 and linked to 3.1 This is a similar ABI fix to 1eb43af1a0e542ad83dcbf327197785d815fc42d Signed-off-by: Michael Niedermayer --- libavformat/avformat.h | 22 +++--- 1 file changed, 11 inser

[FFmpeg-devel] [PATCH 2/2] avutil/frame: Move new field to the end of AVFrame

2016-06-30 Thread Michael Niedermayer
This fixes part of Ticket5676 This fixes kodi, mpv, chromium and ffplay build against 3.0 and linked to 3.1 This is a similar ABI fix to 1eb43af1a0e542ad83dcbf327197785d815fc42d Signed-off-by: Michael Niedermayer --- libavutil/frame.h | 11 +-- 1 file changed, 5 insertions(+), 6 delet

Re: [FFmpeg-devel] [PATCH 1/2] avformat/avformat: Move new field to the end of AVFrame

2016-06-30 Thread Hendrik Leppkes
On Thu, Jun 30, 2016 at 2:02 PM, Michael Niedermayer wrote: > This fixes part of Ticket5676 > This fixes kodi, mpv, chromium and ffplay build against 3.0 and linked to 3.1 > > This is a similar ABI fix to 1eb43af1a0e542ad83dcbf327197785d815fc42d > > Signed-off-by: Michael Niedermayer > --- > lib

[FFmpeg-devel] [PATCH] avformat/utils: update deprecated AVStream->codec when the context is updated

2016-06-30 Thread Hendrik Leppkes
This ensures the AVStream->codec entry is kept in sync when new streams are discovered mid-playback or changes to the context occur from other sources. Fixes trac 5678. --- libavformat/utils.c | 9 + 1 file changed, 9 insertions(+) diff --git a/libavformat/utils.c b/libavformat/utils.c i

Re: [FFmpeg-devel] [PATCH] web: Remove recommandition to upgrade to 3.1

2016-06-30 Thread Michael Niedermayer
On Thu, Jun 30, 2016 at 07:57:29AM -0400, Ronald S. Bultje wrote: > Hi, > > On Thu, Jun 30, 2016 at 4:32 AM, Michael Niedermayer > wrote: > > > On Wed, Jun 29, 2016 at 11:21:48PM -0300, James Almer wrote: > > > On 6/29/2016 9:27 PM, Carl Eugen Hoyos wrote: > > > > Ronald S. Bultje gmail.com> wr

Re: [FFmpeg-devel] [PATCH 1/2] avformat/avformat: Move new field to the end of AVFrame

2016-06-30 Thread Michael Niedermayer
On Thu, Jun 30, 2016 at 02:07:53PM +0200, Hendrik Leppkes wrote: > On Thu, Jun 30, 2016 at 2:02 PM, Michael Niedermayer > wrote: > > This fixes part of Ticket5676 > > This fixes kodi, mpv, chromium and ffplay build against 3.0 and linked to > > 3.1 > > > > This is a similar ABI fix to 1eb43af1a0e

Re: [FFmpeg-devel] [PATCH] web: Remove recommandition to upgrade to 3.1

2016-06-30 Thread Ronald S. Bultje
Hi, On Thu, Jun 30, 2016 at 8:16 AM, Michael Niedermayer wrote: > On Thu, Jun 30, 2016 at 07:57:29AM -0400, Ronald S. Bultje wrote: > > Hi, > > > > On Thu, Jun 30, 2016 at 4:32 AM, Michael Niedermayer > > > wrote: > > > > > On Wed, Jun 29, 2016 at 11:21:48PM -0300, James Almer wrote: > > > > On

Re: [FFmpeg-devel] [PATCH] avformat/utils: update deprecated AVStream->codec when the context is updated

2016-06-30 Thread Michael Niedermayer
On Thu, Jun 30, 2016 at 02:10:42PM +0200, Hendrik Leppkes wrote: > This ensures the AVStream->codec entry is kept in sync when new streams are > discovered mid-playback or changes to the context occur from other sources. > > Fixes trac 5678. > --- > libavformat/utils.c | 9 + > 1 file cha

Re: [FFmpeg-devel] [PATCH] web: Remove recommandition to upgrade to 3.1

2016-06-30 Thread Michael Niedermayer
On Thu, Jun 30, 2016 at 08:21:07AM -0400, Ronald S. Bultje wrote: > Hi, > > On Thu, Jun 30, 2016 at 8:16 AM, Michael Niedermayer > wrote: > > > On Thu, Jun 30, 2016 at 07:57:29AM -0400, Ronald S. Bultje wrote: > > > Hi, > > > > > > On Thu, Jun 30, 2016 at 4:32 AM, Michael Niedermayer > > > > >

Re: [FFmpeg-devel] [PATCH] PPC64: Add versions of functions in libswscale/input.c optimized for POWER8 VSX SIMD.

2016-06-30 Thread Michael Niedermayer
On Wed, Jun 29, 2016 at 04:15:12PM +, Dan Parrot wrote: > This patch addresses Trac ticket #5570. The optimized functions are in file > libswscale/ppc/input_vsx.c. Each optimized function name is a concatenation > of the > corresponding name in libswscale/input.c with suffix _vsx. > --- > lib

[FFmpeg-devel] mp4 format pre definde mov atom

2016-06-30 Thread Dan Shamir
hi all i am creating a fragmented mp4 ffmpeg -y -i input -vcodec nvenc -preset hp -pix_fmt nv12 -g 50 -f mp4 -movflags empty_moov+frag_keyframe out.mp4 and using jwplayer to view this files the problem is i want to view the files when i encode it real-time and jwplayer does not refresh the f

Re: [FFmpeg-devel] [PATCH 1/2] lavf/utils: add some const to pointers parameters in a few functions

2016-06-30 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 12:10:52PM +0200, Clément Bœsch wrote: > From: Clément Bœsch > > --- > libavformat/internal.h | 2 +- > libavformat/utils.c| 6 +++--- > 2 files changed, 4 insertions(+), 4 deletions(-) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC

Re: [FFmpeg-devel] [PATCH 2/2] lavf: mark stream as const pointer in av_stream_get_side_data()

2016-06-30 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 12:10:53PM +0200, Clément Bœsch wrote: > From: Clément Bœsch > > TODO: bump lavf minor > XXX: should i add a FF_API_NOCONST_GET_SIDE_DATA? yes [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Frequently ignored answer#1 FFmpeg bugs shou

Re: [FFmpeg-devel] [PATCH] avutil/frame: Move new field to the end of AVFrame

2016-06-30 Thread James Almer
On 6/30/2016 5:28 AM, Michael Niedermayer wrote: > On Wed, Jun 29, 2016 at 11:44:55PM -0300, James Almer wrote: >> On 6/29/2016 9:47 PM, James Almer wrote: >>> On 6/29/2016 9:16 PM, Carl Eugen Hoyos wrote: Hendrik Leppkes gmail.com> writes: > Plenty previous releases moved fields tha

Re: [FFmpeg-devel] [PATCH 09/10] diracdec: run the final decoding stage/idwt for every plane in parallel

2016-06-30 Thread Rostislav Pehlivanov
On 23 June 2016 at 18:07, Rostislav Pehlivanov wrote: > 27% performance increase for a 12bit 4k file. > > Signed-off-by: Rostislav Pehlivanov > --- > libavcodec/diracdec.c | 152 > ++ > 1 file changed, 80 insertions(+), 72 deletions(-) > > diff --

Re: [FFmpeg-devel] [PATCH] avformat/utils: update deprecated AVStream->codec when the context is updated

2016-06-30 Thread Hendrik Leppkes
On Thu, Jun 30, 2016 at 2:45 PM, Michael Niedermayer wrote: > On Thu, Jun 30, 2016 at 02:10:42PM +0200, Hendrik Leppkes wrote: >> This ensures the AVStream->codec entry is kept in sync when new streams are >> discovered mid-playback or changes to the context occur from other sources. >> >> Fixes t

Re: [FFmpeg-devel] [PATCH] avformat/utils: update deprecated AVStream->codec when the context is updated

2016-06-30 Thread Michael Niedermayer
On Thu, Jun 30, 2016 at 05:00:45PM +0200, Hendrik Leppkes wrote: > On Thu, Jun 30, 2016 at 2:45 PM, Michael Niedermayer > wrote: > > On Thu, Jun 30, 2016 at 02:10:42PM +0200, Hendrik Leppkes wrote: > >> This ensures the AVStream->codec entry is kept in sync when new streams > are > >> discovered m

Re: [FFmpeg-devel] fate/webp : add test to improve cover of lossless

2016-06-30 Thread Michael Niedermayer
On Wed, Jun 29, 2016 at 12:48:22PM +0200, Martin Vignali wrote: > Hello, > > in attach patch to add a new test for lossless webp > one with direct decoding argb > the second with rgb24 pix_fmt. the crc of this test is the same than the > CRC of the sample lena-rgb24 of png tests. > > sample can b

[FFmpeg-devel] 3.1.1

2016-06-30 Thread Michael Niedermayer
Hi FFmpeg 3.1.1 will be made soon (today night or tomorrow) if you want something included please cherry pick it soon Also ill probably make a 3.1.2 release in 1-2 weeks -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Frequently ignored answer#1 FFmpeg bugs should b

[FFmpeg-devel] [PATCH] doc/APIchanges: document the lavu/lavf field moves

2016-06-30 Thread Michael Niedermayer
The text is copied from the lavfi case. Not sure this matches exactly private / public ABI wise, better text welcome! Signed-off-by: Michael Niedermayer --- doc/APIchanges | 16 1 file changed, 16 insertions(+) diff --git a/doc/APIchanges b/doc/APIchanges index 47106c2..fd649

[FFmpeg-devel] [PATCH 2/4] avformat/tee: Use ff_stream_encode_params_copy()

2016-06-30 Thread sebechlebskyjan
From: Jan Sebechlebsky Use ff_stream_encode_params_copy() to copy encoding-related fields (parameters) of stream. Signed-off-by: Jan Sebechlebsky --- libavformat/tee.c | 14 +++--- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/libavformat/tee.c b/libavformat/tee.c inde

[FFmpeg-devel] [PATCH 3/4] avformat/tee: Handle AV_NOPTS_VALUE correctly

2016-06-30 Thread sebechlebskyjan
From: Jan Sebechlebsky Do not rescale pts and dts if they are set to AV_NOPTS_VALUE. Signed-off-by: Jan Sebechlebsky --- libavformat/tee.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libavformat/tee.c b/libavformat/tee.c index c276a37..840bee3 100644 --- a/libavfo

Re: [FFmpeg-devel] [PATCH] doc/APIchanges: document the lavu/lavf field moves

2016-06-30 Thread Timo Rothenpieler
On 6/30/2016 6:15 PM, Michael Niedermayer wrote: > The text is copied from the lavfi case. Not sure this matches > exactly private / public ABI wise, better text welcome! > > Signed-off-by: Michael Niedermayer > --- > doc/APIchanges | 16 > 1 file changed, 16 insertions(+) >

[FFmpeg-devel] [PATCH 1/4] avformat/utils: Add ff_stream_encode_params_copy()

2016-06-30 Thread sebechlebskyjan
From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- Nicolas - this is the second of the utility functions you asked for in reply to my fifo pseudo-muxer patch. I've tried to search for references to AVStream fields in muxers for the fields I wasn't are used, so hopefully this should

[FFmpeg-devel] [PATCH 4/4] avformat/tee: Support flushing by writing NULL pkt

2016-06-30 Thread sebechlebskyjan
From: Jan Sebechlebsky This will fix crash when caller attempts to flush by calling write_packet with NULL packet pointer and flushes slaves as expected. Signed-off-by: Jan Sebechlebsky --- libavformat/tee.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/libavformat/tee.c b/l

Re: [FFmpeg-devel] [PATCH] doc/APIchanges: document the lavu/lavf field moves

2016-06-30 Thread James Almer
On 6/30/2016 1:15 PM, Michael Niedermayer wrote: > The text is copied from the lavfi case. Not sure this matches > exactly private / public ABI wise, better text welcome! > > Signed-off-by: Michael Niedermayer > --- > doc/APIchanges | 16 > 1 file changed, 16 insertions(+) >

Re: [FFmpeg-devel] [PATCH 05/10] diractab: expose the maximum quantization index as a macro

2016-06-30 Thread Rostislav Pehlivanov
On 24 June 2016 at 02:36, Michael Niedermayer wrote: > On Thu, Jun 23, 2016 at 06:06:59PM +0100, Rostislav Pehlivanov wrote: > > Prevents having to have random magic values in the decoder and a > > separate macro in the encoder. > > > > Signed-off-by: Rostislav Pehlivanov > > --- > > libavcodec

Re: [FFmpeg-devel] [PATCH] avfilter/drawutils: change to support native endian only

2016-06-30 Thread Muhammad Faiz
On Thu, Jun 30, 2016 at 2:23 PM, Paul B Mahol wrote: > On 6/29/16, Muhammad Faiz wrote: >> On Tue, Jun 28, 2016 at 5:45 PM, Michael Niedermayer >> wrote: >>> On Tue, Jun 28, 2016 at 04:07:31PM +0700, Muhammad Faiz wrote: On Mon, Jun 27, 2016 at 6:02 PM, Michael Niedermayer wrote:

Re: [FFmpeg-devel] mp4 format pre definde mov atom

2016-06-30 Thread Lou Logan
On Thu, 30 Jun 2016 17:00:15 +0300, Dan Shamir wrote: > hi all > i am creating a fragmented mp4 > > ffmpeg -y -i input -vcodec nvenc -preset hp -pix_fmt nv12 -g 50 -f mp4 > -movflags empty_moov+frag_keyframe out.mp4 > > and using jwplayer to view this files > the problem is i want to view t

Re: [FFmpeg-devel] release/3.1

2016-06-30 Thread Amancio Hasty
How is this commit then for ticket #3518: e330ab0fb7cb140cfde98077e1a953c200282087 Merge: 0e38723 f1cd9b0 Author: Derek Buitenhuis Date: Wed May 11 19:23:15 2016 +0100 Merge commit 'f1cd9b03f3fa875eb5e394281b4b688cec611658' * commit 'f1cd9b03f3fa875eb5e394281b4b688cec611658': om

Re: [FFmpeg-devel] [PATCH] doc/APIchanges: document the lavu/lavf field moves

2016-06-30 Thread James Almer
On 6/30/2016 1:53 PM, James Almer wrote: > On 6/30/2016 1:15 PM, Michael Niedermayer wrote: >> The text is copied from the lavfi case. Not sure this matches >> exactly private / public ABI wise, better text welcome! >> >> Signed-off-by: Michael Niedermayer >> --- >> doc/APIchanges | 16

Re: [FFmpeg-devel] [PATCH] doc/APIchanges: document the lavu/lavf field moves

2016-06-30 Thread Michael Niedermayer
On Thu, Jun 30, 2016 at 04:21:03PM -0300, James Almer wrote: > On 6/30/2016 1:53 PM, James Almer wrote: > > On 6/30/2016 1:15 PM, Michael Niedermayer wrote: > >> The text is copied from the lavfi case. Not sure this matches > >> exactly private / public ABI wise, better text welcome! > >> > >> Sign

Re: [FFmpeg-devel] mp4 format pre definde mov atom

2016-06-30 Thread Dan Shamir
Thank you On Jun 30, 2016 9:56 PM, "Lou Logan" wrote: > On Thu, 30 Jun 2016 17:00:15 +0300, Dan Shamir wrote: > > > hi all > > i am creating a fragmented mp4 > > > > ffmpeg -y -i input -vcodec nvenc -preset hp -pix_fmt nv12 -g 50 -f mp4 > > -movflags empty_moov+frag_keyframe out.mp4 > > > >

Re: [FFmpeg-devel] [PATCH] doc/APIchanges: document the lavu/lavf field moves

2016-06-30 Thread James Almer
On 6/30/2016 4:30 PM, Michael Niedermayer wrote: > On Thu, Jun 30, 2016 at 04:21:03PM -0300, James Almer wrote: >> On 6/30/2016 1:53 PM, James Almer wrote: >>> On 6/30/2016 1:15 PM, Michael Niedermayer wrote: The text is copied from the lavfi case. Not sure this matches exactly private /

Re: [FFmpeg-devel] [PATCH] doc/APIchanges: document the lavu/lavf field moves

2016-06-30 Thread Michael Niedermayer
On Thu, Jun 30, 2016 at 04:43:21PM -0300, James Almer wrote: > On 6/30/2016 4:30 PM, Michael Niedermayer wrote: > > On Thu, Jun 30, 2016 at 04:21:03PM -0300, James Almer wrote: > >> On 6/30/2016 1:53 PM, James Almer wrote: > >>> On 6/30/2016 1:15 PM, Michael Niedermayer wrote: > The text is co

Re: [FFmpeg-devel] [PATCH] doc/APIchanges: document the lavu/lavf field moves

2016-06-30 Thread James Almer
On 6/30/2016 5:39 PM, Michael Niedermayer wrote: > does the following sound ok to you ? > i kept this very terse as most changes in the file are tersly > documented only Yeah, the proper place for an explanation as to why we're doing this is not APIChanges. > > commit 518b526aa310c963f42a76f48ce

[FFmpeg-devel] [PATCH 1/3] avutil/parseutils: dont assume standard time when parsing a timestamp

2016-06-30 Thread Marton Balint
Signed-off-by: Marton Balint --- libavutil/parseutils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavutil/parseutils.c b/libavutil/parseutils.c index a4efd79..86d3dac 100644 --- a/libavutil/parseutils.c +++ b/libavutil/parseutils.c @@ -687,6 +687,7 @@ int av_parse_time(int64_t *timeva

[FFmpeg-devel] [PATCH 2/3] avformat: factorize iso 8601 timestamp writer to a dictionary avutil function

2016-06-30 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/internal.h | 1 + libavformat/utils.c| 16 ++-- libavutil/dict.c | 17 + libavutil/internal.h | 10 ++ 4 files changed, 30 insertions(+), 14 deletions(-) diff --git a/libavformat/internal.h b/libavforma

[FFmpeg-devel] [PATCH 3/3] avformat: fix decoded creation_time timestamps

2016-06-30 Thread Marton Balint
Use proper ISO 8601 timestamps which also signal that they are in UTC. This changes the format of creation_time and modification_date metadata values from 2016-06-01 22:30:00 to 2016-01-01T22:30:00.00Z Fixes ticket #5673. Signed-off-by: Marton Balint --- libavformat/matroskadec.c | 7 +---

[FFmpeg-devel] [PATCH] libvpx: Enable vp9 alpha encoding

2016-06-30 Thread Vignesh Venkatasubramanian
Chrome canary now supports decoding of VP9 streams with alpha channel [1]. Add support to ffmpeg for creating such files. [1] https://codereview.chromium.org/2096813002/ Signed-off-by: Vignesh Venkatasubramanian --- libavcodec/libvpx.c| 3 +++ libavcodec/libvpxenc.c | 1 + 2 files changed,

[FFmpeg-devel] fps wrong with codecpar

2016-06-30 Thread Gonzalo
I emailed libav-user, but got no replies. Thought it might be better to post here. I compiled ffmpeg HEAD and compiled the one example that uses the new api (muxing.c). It compiles and runs fine, but it creates a movie with wrong fps according to ffprobe: Input #0, mov,mp4,m4a,3gp,3g2,mj2,

Re: [FFmpeg-devel] [PATCH] doc/APIchanges: document the lavu/lavf field moves

2016-06-30 Thread Michael Niedermayer
On Thu, Jun 30, 2016 at 06:25:34PM -0300, James Almer wrote: > On 6/30/2016 5:39 PM, Michael Niedermayer wrote: > > does the following sound ok to you ? > > i kept this very terse as most changes in the file are tersly > > documented only > > Yeah, the proper place for an explanation as to why we'

Re: [FFmpeg-devel] how to download specific track data of a m3u8 content?

2016-06-30 Thread Halley Zhao
I tried it; but got unexpected result. the pkt of discarded stream (stream_index) is still got from av_read_frame(). my code is here: https://github.com/halleyzhao/player-ffmpeg-yami/blob/m3u8/player.c ## the code piece is here: #define MAX_TRACK_COUNT 10 uint32_t video_tracks[MAX_TRA

Re: [FFmpeg-devel] [PATCH 2/3] avformat: factorize iso 8601 timestamp writer to a dictionary avutil function

2016-06-30 Thread Michael Niedermayer
On Fri, Jul 01, 2016 at 12:58:39AM +0200, Marton Balint wrote: > Signed-off-by: Marton Balint > --- > libavformat/internal.h | 1 + > libavformat/utils.c| 16 ++-- > libavutil/dict.c | 17 + > libavutil/internal.h | 10 ++ > 4 files changed, 30 ins

Re: [FFmpeg-devel] 3.1.1

2016-06-30 Thread Michael Niedermayer
On Thu, Jun 30, 2016 at 06:04:00PM +0200, Michael Niedermayer wrote: > Hi > > FFmpeg 3.1.1 will be made soon (today night or tomorrow) > if you want something included please cherry pick it soon 3.1.1 release made > > Also ill probably make a 3.1.2 release in 1-2 weeks > > -- > Michael

Re: [FFmpeg-devel] how to download specific track data of a m3u8 content?

2016-06-30 Thread Halley Zhao
I tried ffplay on Ubuntu15.10, not expected result. seems buggy: ffplay.c, 3160, got packet with stream_index: 0 ffplay.c, 3160, got packet with stream_index: 2 ffplay.c, 3160, got packet with stream_index: 4 ffplay.c, 3160, got packet with stream_index: 0 ffplay.c, 3160, got packet with

Re: [FFmpeg-devel] [PATCH] libvpx: Enable vp9 alpha encoding

2016-06-30 Thread James Zern
On Thu, Jun 30, 2016 at 4:16 PM, Vignesh Venkatasubramanian wrote: > Chrome canary now supports decoding of VP9 streams with alpha > channel [1]. Add support to ffmpeg for creating such files. > > [1] https://codereview.chromium.org/2096813002/ > > Signed-off-by: Vignesh Venkatasubramanian > ---