Re: [FFmpeg-devel] [PATCH]lavf/matroskaenc: Print an error if an unreadable rawvideo pix_fmt is written

2017-01-14 Thread wm4
On Sat, 14 Jan 2017 06:18:13 +0100 Carl Eugen Hoyos wrote: > 2017-01-13 6:28 GMT+01:00 wm4 : > > On Thu, 12 Jan 2017 23:31:11 +0100 > > Carl Eugen Hoyos wrote: > > > >> 2017-01-12 23:20 GMT+01:00 Hendrik Leppkes : > >> > On Fri, Jan 13, 2017 at 1:10 AM, Carl Eugen Hoyos > >> > wrote: > >

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: Accept time base hint

2017-01-14 Thread Michael Niedermayer
On Tue, Dec 27, 2016 at 09:47:47PM -0800, Michael Bradshaw wrote: > From: Michael Bradshaw > > Signed-off-by: Michael Bradshaw > --- > libavformat/matroskaenc.c | 38 +++--- > 1 file changed, 31 insertions(+), 7 deletions(-) > > diff --git a/libavformat/matroska

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: Accept time base hint

2017-01-14 Thread Michael Niedermayer
On Fri, Jan 13, 2017 at 08:48:01AM -0800, Michael Bradshaw wrote: > On Wed, Dec 28, 2016 at 5:03 AM, Michael Niedermayer > wrote: > > > On Tue, Dec 27, 2016 at 09:47:47PM -0800, Michael Bradshaw wrote: > > > From: Michael Bradshaw > > > > > > Signed-off-by: Michael Bradshaw > > > --- > > > lib

[FFmpeg-devel] [PATCH] avcodec: add SIPR parser

2017-01-14 Thread Paul B Mahol
Fixes #2056. Signed-off-by: Paul B Mahol --- libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/sipr_parser.c | 74 libavformat/aadec.c | 2 ++ libavformat/rmdec.c | 1 + 5 files changed, 79 insertions(+) cre

Re: [FFmpeg-devel] AVFilter for watermarking DCTELEM MPEG2 blocks

2017-01-14 Thread Jesse Liu
hello royger! I’d love to read the realize of the AVFilter for watermarking DCTELEM MPEG2 blocks source, how can I get the code, thanks a lot! Jesse. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: Accept time base hint

2017-01-14 Thread Michael Bradshaw
On Sat, Jan 14, 2017 at 3:57 AM, Michael Niedermayer wrote: > On Tue, Dec 27, 2016 at 09:47:47PM -0800, Michael Bradshaw wrote: > > +// ms precision is the de-facto standard timescale for mkv files > > +mkv->timecode_scale = 100; > > + > > +// If the user has supplied a desired ti

[FFmpeg-devel] [PATCH]lavf/rtmpproto: Make bytes_read variables 64bit.

2017-01-14 Thread Carl Eugen Hoyos
Hi! Attached patch is meant to fix ticket #5836, completely untested. Please comment, Carl Eugen From b6d895a9bf1a4ed9d1660d99043b8edc5cc8b169 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sat, 14 Jan 2017 19:17:09 +0100 Subject: [PATCH] lavf/rtmpproto: Make bytes_read variables 64bit.

Re: [FFmpeg-devel] [PATCH] ffmpeg: Add -time_base option to hint the time base

2017-01-14 Thread Michael Niedermayer
On Tue, Dec 27, 2016 at 10:05:35PM -0800, Michael Bradshaw wrote: > From: Michael Bradshaw > > Signed-off-by: Michael Bradshaw > --- > ffmpeg.c | 6 -- > ffmpeg.h | 2 ++ > ffmpeg_opt.c | 16 +++- > 3 files changed, 21 insertions(+), 3 deletions(-) applied thx [...]

Re: [FFmpeg-devel] [PATCH 01/13] aarch64: vp9: use alternative returns in the core loop filter function

2017-01-14 Thread Michael Niedermayer
On Tue, Jan 10, 2017 at 12:15:07AM +0200, Martin Storsjö wrote: > From: Janne Grunau > > Since aarch64 has enough free general purpose registers use them to > branch to the appropiate storage code. 1-2 cycles faster for the > functions using loop_filter 8/16, ... on a cortex-a53. Mixed results >

Re: [FFmpeg-devel] [FFmpeg-cvslog] ffmpeg: Add -time_base option to hint the time base

2017-01-14 Thread Clément Bœsch
On Sat, Jan 14, 2017 at 08:04:48PM +0100, Michael Bradshaw wrote: > ffmpeg | branch: master | Michael Bradshaw | Tue Dec 27 > 22:05:35 2016 -0800| [3ac46a0a62386a52e38c066379ff36b5038dd4d0] | committer: > Michael Niedermayer > > ffmpeg: Add -time_base option to hint the time base > > Signed-of

Re: [FFmpeg-devel] AVFilter for watermarking DCTELEM MPEG2 blocks

2017-01-14 Thread Moritz Barsnick
On Sun, Jan 15, 2017 at 01:15:59 +0800, Jesse Liu wrote: > hello royger! > > I’d love to read the realize of the AVFilter for watermarking DCTELEM MPEG2 > blocks source, how can I get the code, thanks a lot! Since Roger Pau Monné may not be on the mailing list anymore, you would need to mail him

Re: [FFmpeg-devel] [FFmpeg-cvslog] ffmpeg: Add -time_base option to hint the time base

2017-01-14 Thread Michael Bradshaw
On Sat, Jan 14, 2017 at 1:12 PM, Clément Bœsch wrote: > > erm. We have at least a codec option with that same name. How much does it > conflict with this? > The only use of a "time_base" option I'm aware of is in buffer/abuffer in libavfilter. Is there another one somewhere else? Can we have som

Re: [FFmpeg-devel] [FFmpeg-cvslog] ffmpeg: Add -time_base option to hint the time base

2017-01-14 Thread Clément Bœsch
On Sat, Jan 14, 2017 at 01:46:02PM -0800, Michael Bradshaw wrote: > On Sat, Jan 14, 2017 at 1:12 PM, Clément Bœsch wrote: > > > > erm. We have at least a codec option with that same name. How much does it > > conflict with this? > > > > The only use of a "time_base" option I'm aware of is in buff

Re: [FFmpeg-devel] AVFilter for watermarking DCTELEM MPEG2 blocks

2017-01-14 Thread Jesse Liu
Hi, Moritz. It’s great help for me, thanks a lot ! > On 15 Jan 2017, at 5:16 AM, Moritz Barsnick wrote: > > On Sun, Jan 15, 2017 at 01:15:59 +0800, Jesse Liu wrote: >> hello royger! >> >> I’d love to read the realize of the AVFilter for watermarking DCTELEM MPEG2 >> blocks source, how can I ge