[FFmpeg-devel] burn-in timestamp and pts:localtime:offset

2016-10-09 Thread Patrick Fischer
Hello list, I'm using drawtext to burn-in the timestamp into a video. the current way is to use *drawtext='fontfile=FreeSans.ttf:text=%{localtime\:%T %d.%m.%Y}'* but it only works fine with real-time encoding. I'm receiving a UDP multicast stream and the problem is that the stream will be buffe

[FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
Signed-off-by: Steven Liu --- doc/protocols.texi|3 +++ libavformat/udp.c | 19 ++- libavformat/version.h |3 +++ 3 files changed, 24 insertions(+), 1 deletions(-) diff --git a/doc/protocols.texi b/doc/protocols.texi index 3abc5f3..85a3f56 100644 --- a/doc/prot

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread 刘歧
> 在 2016年10月10日,上午10:30,Steven Liu 写道: > > 2016-10-10 10:27 GMT+08:00 James Almer : > >> On 10/9/2016 11:24 PM, Steven Liu wrote: >>> >>> Signed-off-by: Steven Liu >>> --- >>> doc/protocols.texi|3 +++ >>> libavformat/udp.c | 19 ++- >>> libavformat/version.h |

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread James Almer
On 10/9/2016 11:24 PM, Steven Liu wrote: > > Signed-off-by: Steven Liu > --- > doc/protocols.texi|3 +++ > libavformat/udp.c | 19 ++- > libavformat/version.h |3 +++ > 3 files changed, 24 insertions(+), 1 deletions(-) > > diff --git a/doc/protocols.texi b/doc/

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-10 10:27 GMT+08:00 James Almer : > On 10/9/2016 11:24 PM, Steven Liu wrote: > > > > Signed-off-by: Steven Liu > > --- > > doc/protocols.texi|3 +++ > > libavformat/udp.c | 19 ++- > > libavformat/version.h |3 +++ > > 3 files changed, 24 insertions(+), 1

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
Hi Michael, What about this patch, add local_port into documention and tell users this option will be deprecated, and give will be deprecated message to users when user using it. and give users 10 versions time. :-) 2016-10-10 10:24 GMT+08:00 Steven Liu : > > Signed-off-by: Ste

[FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
Signed-off-by: Steven Liu --- doc/protocols.texi|3 +++ libavformat/udp.c | 19 ++- libavformat/version.h |3 +++ 3 files changed, 24 insertions(+), 1 deletions(-) diff --git a/doc/protocols.texi b/doc/protocols.texi index 3abc5f3..85a3f56 100644 --- a/doc/prot

Re: [FFmpeg-devel] [PATCH] lavf/matroskaenc.c: use dyn_buf to write header elements for non-seekable outputs.

2016-10-09 Thread James Almer
On 10/9/2016 10:13 PM, Neil Birkbeck wrote: > For non-seekable output files, larger elements written in write_header > (like larger attachments, or possibly many tags) can go over > IO_BUFFER_SIZE meaning seeking back to write valid seek head may fail. Ever since the CRC32 implementation, matroska

[FFmpeg-devel] [PATCH] lavf/matroskaenc.c: use dyn_buf to write header elements for non-seekable outputs.

2016-10-09 Thread Neil Birkbeck
For non-seekable output files, larger elements written in write_header (like larger attachments, or possibly many tags) can go over IO_BUFFER_SIZE meaning seeking back to write valid seek head may fail. Fate test checksums are the same when "-write_crc32=0". Adding dyn_buf causes buffer to be seek

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-10 5:53 GMT+08:00 Steven Liu : > > > 2016-10-10 2:11 GMT+08:00 Michael Niedermayer : > >> On Sun, Oct 09, 2016 at 11:48:08PM +0800, Steven Liu wrote: >> > Signed-off-by: Steven Liu >> > --- >> > libavformat/udp.c | 19 ++- >> > libavformat/version.h | 3 +++ >> > 2 f

[FFmpeg-devel] [PATCH] avformat/isom: Fix old API regression with exporting max bitrate

2016-10-09 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavformat/isom.c | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/libavformat/isom.c b/libavformat/isom.c index cb457dd..ab79e22 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -488,9 +488,14 @@ int ff_mp4_read_de

Re: [FFmpeg-devel] [PATCH 2/2] avformat/movenc: Check frame rate in mov_write_uuidprof_tag()

2016-10-09 Thread Michael Niedermayer
On Sun, Oct 09, 2016 at 03:36:37AM +0200, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > libavformat/movenc.c | 11 +-- > 1 file changed, 9 insertions(+), 2 deletions(-) applied [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB I

Re: [FFmpeg-devel] [PATCH 1/2] avformat/movenc: Switch mov_write_uuidprof_tag() to avg_frame_rate

2016-10-09 Thread Michael Niedermayer
On Sun, Oct 09, 2016 at 03:36:36AM +0200, Michael Niedermayer wrote: > Using the stream timebase simply overflows > Fix integer overflow in psp framerate computation > > Signed-off-by: Michael Niedermayer > --- > libavformat/movenc.c| 3 +-- > tests/ref/fate/copy-psp | 2 +- > 2 files change

Re: [FFmpeg-devel] [PATCH] avformat/utils: Update codec_id before using it in the parser init

2016-10-09 Thread Michael Niedermayer
On Sat, Oct 08, 2016 at 06:32:29PM +0200, Michael Niedermayer wrote: > Fixes assertion failure > > Fixes: input.avi > > Found-by: 连一汉 > Signed-off-by: Michael Niedermayer > --- > libavformat/utils.c | 21 +++-- > 1 file changed, 11 insertions(+), 10 deletions(-) applied [...

Re: [FFmpeg-devel] [PATCH] openssl: Support version 1.1.0.

2016-10-09 Thread Michael Niedermayer
On Mon, Oct 10, 2016 at 07:30:16AM +1100, Matt Oliver wrote: > From ad4d838ed6673c6d12aeaa7b00036b66371b4d63 Mon Sep 17 00:00:00 2001 > From: Matt Oliver > Date: Mon, 10 Oct 2016 06:49:54 +1100 > Subject: [PATCH] openssl: Support version 1.1.0. > > Fixes #5675 > > Signed-off-by: Matt Oliver > -

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-10 2:11 GMT+08:00 Michael Niedermayer : > On Sun, Oct 09, 2016 at 11:48:08PM +0800, Steven Liu wrote: > > Signed-off-by: Steven Liu > > --- > > libavformat/udp.c | 19 ++- > > libavformat/version.h | 3 +++ > > 2 files changed, 21 insertions(+), 1 deletion(-) > > > >

Re: [FFmpeg-devel] [PATCH] openssl: Support version 1.1.0.

2016-10-09 Thread Matt Oliver
On 10 October 2016 at 05:48, Lou Logan wrote: > On Sun, Oct 9, 2016, at 07:39 AM, Matt Oliver wrote: > > --- > > configure | 3 +- > > libavformat/tls_openssl.c | 159 > > -- > > 2 files changed, 98 insertions(+), 64 deletions(-) > >

Re: [FFmpeg-devel] [PATCH] openssl: Support version 1.1.0.

2016-10-09 Thread Matt Oliver
>From ad4d838ed6673c6d12aeaa7b00036b66371b4d63 Mon Sep 17 00:00:00 2001 From: Matt Oliver Date: Mon, 10 Oct 2016 06:49:54 +1100 Subject: [PATCH] openssl: Support version 1.1.0. Fixes #5675 Signed-off-by: Matt Oliver --- configure | 3 +- libavformat/tls_openssl.c | 163 ++

[FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/udp.c | 19 ++- libavformat/version.h | 3 +++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/libavformat/udp.c b/libavformat/udp.c index 3835f98..fd400c6 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -86,6

[FFmpeg-devel] [PATCH] doc: fix various typos and grammar errors

2016-10-09 Thread Moritz Barsnick
Signed-off-by: Moritz Barsnick --- doc/codecs.texi | 2 +- doc/demuxers.texi| 4 ++-- doc/ffmpeg.texi | 2 +- doc/fftools-common-opts.texi | 8 doc/filters.texi | 42 +- doc/formats.texi

Re: [FFmpeg-devel] [PATCH] openssl: Support version 1.1.0.

2016-10-09 Thread Lou Logan
On Sun, Oct 9, 2016, at 07:39 AM, Matt Oliver wrote: > --- > configure | 3 +- > libavformat/tls_openssl.c | 159 > -- > 2 files changed, 98 insertions(+), 64 deletions(-) Does this fix ticket #5675? If it does you can mention that in

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Michael Niedermayer
On Sun, Oct 09, 2016 at 11:48:08PM +0800, Steven Liu wrote: > Signed-off-by: Steven Liu > --- > libavformat/udp.c | 19 ++- > libavformat/version.h | 3 +++ > 2 files changed, 21 insertions(+), 1 deletion(-) > > diff --git a/libavformat/udp.c b/libavformat/udp.c > index 3835

Re: [FFmpeg-devel] [PATCH 0/5] fix various typos and grammar errors

2016-10-09 Thread Michael Niedermayer
On Sun, Oct 09, 2016 at 12:56:57PM +0200, Moritz Barsnick wrote: > These can likely be squashed, or kept separately, as you like. > > Moritz Barsnick (5): > tools: fix grammar error > lavc: fix typos > lavfi: fix typos > lavf: fix typos > cmdutils: fix typos all applied thx [...] --

[FFmpeg-devel] [PATCH 2/2] crystalhd: Use mpeg4_unpack_bframes to avoid buggy crystalhd handling

2016-10-09 Thread Philip Langdale
The hardware handling of packed bframes was always questionable but it used to ok with my workaround. Today, not so much. But today we have a bsf to unpack the bframes, so let's just use that and be done with it. --- libavcodec/crystalhd.c | 127 - 1

[FFmpeg-devel] [PATCH 1/2] crystalhd: Fix handling of PTS

2016-10-09 Thread Philip Langdale
With all the various refactorings that have happened over the years, the current pts logic is very broken for non-trivial cases (ie: ones where not every frame/field has a meaningful pts assocated with it). Generally, we do not want to write AV_NOPTS_VALUE as the output timestamp, regardless of an

[FFmpeg-devel] [PATCH 0/2] crystalhd: Fix various regressions

2016-10-09 Thread Philip Langdale
These changes should bring CrystalHD functionality back to where it was when the decoder was originally completed. There are various interlaced edge cases that remain problematic, and can probably only be addressed by switching to the new m:n decode API - which I might do someday. Philip Langdale

Re: [FFmpeg-devel] [PATCH] openssl: Support version 1.1.0.

2016-10-09 Thread Matt Oliver
On 10 October 2016 at 03:18, Michael Niedermayer wrote: > On Mon, Oct 10, 2016 at 02:39:51AM +1100, Matt Oliver wrote: > > --- > > configure | 3 +- > > libavformat/tls_openssl.c | 159 > > -- > > 2 files changed, 98 insertions(+), 64

Re: [FFmpeg-devel] [PATCH] doc: fix various typos and grammar errors

2016-10-09 Thread Michael Niedermayer
On Sun, Oct 09, 2016 at 12:42:13PM +0200, Moritz Barsnick wrote: > Signed-off-by: Moritz Barsnick > --- > doc/codecs.texi | 2 +- > doc/demuxers.texi| 4 ++-- > doc/ffmpeg.texi | 2 +- > doc/fftools-common-opts.texi | 8 > doc/filters.texi

Re: [FFmpeg-devel] [PATCH] openssl: Support version 1.1.0.

2016-10-09 Thread Michael Niedermayer
On Mon, Oct 10, 2016 at 02:39:51AM +1100, Matt Oliver wrote: > --- > configure | 3 +- > libavformat/tls_openssl.c | 159 > -- > 2 files changed, 98 insertions(+), 64 deletions(-) > > diff --git a/configure b/configure > index df6ffa2.

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
ok, this is sent by git send-email :) there have no newline ,and i'll always use git send-email to send patch 2016-10-09 23:48 GMT+08:00 Steven Liu : > Signed-off-by: Steven Liu > --- > libavformat/udp.c | 19 ++- > libavformat/version.h | 3 +++ > 2 files changed, 21 inse

[FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
Signed-off-by: Steven Liu --- libavformat/udp.c | 19 ++- libavformat/version.h | 3 +++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/libavformat/udp.c b/libavformat/udp.c index 3835f98..fd400c6 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -86,6

[FFmpeg-devel] [PATCH] openssl: Support version 1.1.0.

2016-10-09 Thread Matt Oliver
--- configure | 3 +- libavformat/tls_openssl.c | 159 -- 2 files changed, 98 insertions(+), 64 deletions(-) diff --git a/configure b/configure index df6ffa2..750684a 100755 --- a/configure +++ b/configure @@ -5813,7 +5813,8 @@ enabled

Re: [FFmpeg-devel] [PATCH v2] aacenc: add SIMD optimizations for abs_pow34 and quantization

2016-10-09 Thread Henrik Gramner
On Sun, Oct 9, 2016 at 5:04 PM, Michael Niedermayer wrote: > this segfaults on x86-32 I'm guessing due to unaligned local arrays in search_for_ms(): float M[128], S[128]; ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/li

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Michael Niedermayer
On Sun, Oct 09, 2016 at 02:33:46PM +0200, Moritz Barsnick wrote: > On Sun, Oct 09, 2016 at 20:25:39 +0800, Steven Liu wrote: > > 2016-10-09 20:24 GMT+08:00 Steven Liu : > > > > > check newline with chrome+gmail > > > > > Shit! > > https://productforums.google.com/forum/#!topic/gmail/VUbNjK8mUbA >

Re: [FFmpeg-devel] [PATCH v2] aacenc: add SIMD optimizations for abs_pow34 and quantization

2016-10-09 Thread Michael Niedermayer
On Sun, Oct 09, 2016 at 01:15:44PM +0100, Rostislav Pehlivanov wrote: > On 9 October 2016 at 03:18, Michael Niedermayer > wrote: > > > On Sat, Oct 08, 2016 at 06:42:28PM +0100, Rostislav Pehlivanov wrote: > > > Performance improvements: > > > > > > quant_bands: > > > with: 681 decicycles in q

Re: [FFmpeg-devel] [PATCH v2] aacenc: add SIMD optimizations for abs_pow34 and quantization

2016-10-09 Thread Henrik Gramner
On Sun, Oct 9, 2016 at 2:15 PM, Rostislav Pehlivanov wrote: > +cglobal aac_quantize_bands, 6, 6, 6, out, in, scaled, size, is_signed, > maxval, Q34, rounding Now that this function is SSE2 you should explicitly use floating-point instructions to avoid bypass delays from transitioning between int

Re: [FFmpeg-devel] [PATCH v2] aacenc: add SIMD optimizations for abs_pow34 and quantization

2016-10-09 Thread Rostislav Pehlivanov
On 9 October 2016 at 03:18, Michael Niedermayer wrote: > On Sat, Oct 08, 2016 at 06:42:28PM +0100, Rostislav Pehlivanov wrote: > > Performance improvements: > > > > quant_bands: > > with: 681 decicycles in quant_bands, 8388453 runs,155 skips > > without: 1190 decicycles in quant_bands, 83

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Moritz Barsnick
On Sun, Oct 09, 2016 at 20:25:39 +0800, Steven Liu wrote: > 2016-10-09 20:24 GMT+08:00 Steven Liu : > > > check newline with chrome+gmail > > > Shit! https://productforums.google.com/forum/#!topic/gmail/VUbNjK8mUbA So you'd probably get the patch marked as text/plain if you renamed it to .patch.

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-09 20:09 GMT+08:00 Steven Liu : > > > 2016-10-09 19:54 GMT+08:00 Michael Niedermayer : > >> On Sun, Oct 09, 2016 at 07:18:48PM +0800, Steven Liu wrote: >> > 2016-10-09 19:00 GMT+08:00 Michael Niedermayer > >: >> > >> > > On Sat, Oct 08, 2016 at 03:35:02PM +0800, Steven Liu wrote: >> > > >

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-09 20:24 GMT+08:00 Steven Liu : > check newline with chrome+gmail > Shit! > > > Signed-off-by: Steven Liu > --- > libavformat/udp.c | 19 ++- > libavformat/version.h | 3 +++ > 2 files changed, 21 insertions(+), 1 deletion(-) > > diff --git a/libavformat/udp.c b/lib

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
check newline with chrome+gmail Signed-off-by: Steven Liu --- libavformat/udp.c | 19 ++- libavformat/version.h | 3 +++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/libavformat/udp.c b/libavformat/udp.c index 3835f98..fd400c6 100644 --- a/libavformat/udp.

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-09 20:19 GMT+08:00 Nicolas George : > L'octidi 18 vendémiaire, an CCXXV, Steven Liu a écrit : > > I promise there have no newline, the captrue picture is atteched. > > You can see for yourself there are: > http://ffmpeg.org/pipermail/ffmpeg-devel/2016-October/200799.html > > Your MUA is ly

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Nicolas George
L'octidi 18 vendémiaire, an CCXXV, Steven Liu a écrit : > I promise there have no newline, the captrue picture is atteched. You can see for yourself there are: http://ffmpeg.org/pipermail/ffmpeg-devel/2016-October/200799.html Your MUA is lying to you. Also, why do you send JPEG screenshots disgu

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Michael Niedermayer
On Sun, Oct 09, 2016 at 07:18:48PM +0800, Steven Liu wrote: > 2016-10-09 19:00 GMT+08:00 Michael Niedermayer : > > > On Sat, Oct 08, 2016 at 03:35:02PM +0800, Steven Liu wrote: > > > > > > > > udp.c | 19 ++- > > > version.h |3 +++ > > > 2 files changed, 21 insertions(+

Re: [FFmpeg-devel] [PATCH] doc/developer: Add patchwork mentioning to "patch submission checklist"

2016-10-09 Thread Steven Liu
2016-09-16 15:07 GMT+08:00 Michael Niedermayer : > On Thu, Sep 15, 2016 at 05:53:58PM -0800, Lou Logan wrote: > > On Wed, 7 Sep 2016 14:27:07 +0200, Michael Niedermayer wrote: > > > > > yes one can ignore it but its alot more usefull if people keep in > > > mind that theres patchwork. > > > > The

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-09 19:18 GMT+08:00 Steven Liu : > > > 2016-10-09 19:00 GMT+08:00 Michael Niedermayer : > >> On Sat, Oct 08, 2016 at 03:35:02PM +0800, Steven Liu wrote: >> > >> >> > udp.c | 19 ++- >> > version.h |3 +++ >> > 2 files changed, 21 insertions(+), 1 deletion(-) >> >

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Steven Liu
2016-10-09 19:00 GMT+08:00 Michael Niedermayer : > On Sat, Oct 08, 2016 at 03:35:02PM +0800, Steven Liu wrote: > > > > > udp.c | 19 ++- > > version.h |3 +++ > > 2 files changed, 21 insertions(+), 1 deletion(-) > > bf9c64b4a0fd9a1d998c11376c5c5c2a90389caf 0001-avformat

Re: [FFmpeg-devel] [PATCH] avformat/udp: deprecate local_port option

2016-10-09 Thread Michael Niedermayer
On Sat, Oct 08, 2016 at 03:35:02PM +0800, Steven Liu wrote: > > udp.c | 19 ++- > version.h |3 +++ > 2 files changed, 21 insertions(+), 1 deletion(-) > bf9c64b4a0fd9a1d998c11376c5c5c2a90389caf > 0001-avformat-udp-deprecate-local_port-option.patch > From 16a41c1e76fef

[FFmpeg-devel] [PATCH 5/5] cmdutils: fix typos

2016-10-09 Thread Moritz Barsnick
Signed-off-by: Moritz Barsnick --- cmdutils.c | 4 ++-- cmdutils.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmdutils.c b/cmdutils.c index 71b3b2f..469c2d5 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -2112,7 +2112,7 @@ static int print_device_sources(AVInputFormat *

[FFmpeg-devel] [PATCH 4/5] lavf: fix typos

2016-10-09 Thread Moritz Barsnick
Signed-off-by: Moritz Barsnick --- libavformat/hlsenc.c | 4 ++-- libavformat/oggparsevp8.c | 2 +- libavformat/swfdec.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index e0bb44b..9ca2df7 100644 --- a/libavformat/hls

[FFmpeg-devel] [PATCH 3/5] lavfi: fix typos

2016-10-09 Thread Moritz Barsnick
Signed-off-by: Moritz Barsnick --- libavfilter/af_pan.c| 4 ++-- libavfilter/vf_blackframe.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libavfilter/af_pan.c b/libavfilter/af_pan.c index 1eb102c..7c02f67 100644 --- a/libavfilter/af_pan.c +++ b/libavfilter/af_p

[FFmpeg-devel] [PATCH 2/5] lavc: fix typos

2016-10-09 Thread Moritz Barsnick
Signed-off-by: Moritz Barsnick --- libavcodec/asvenc.c| 2 +- libavcodec/mpeg12dec.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/asvenc.c b/libavcodec/asvenc.c index ec98a0c..c4eca2a 100644 --- a/libavcodec/asvenc.c +++ b/libavcodec/asvenc.c @@ -61,7 +61,

[FFmpeg-devel] [PATCH 0/5] fix various typos and grammar errors

2016-10-09 Thread Moritz Barsnick
These can likely be squashed, or kept separately, as you like. Moritz Barsnick (5): tools: fix grammar error lavc: fix typos lavfi: fix typos lavf: fix typos cmdutils: fix typos cmdutils.c | 4 ++-- cmdutils.h | 4 ++-- libavcodec/asvenc.c | 2

[FFmpeg-devel] [PATCH 1/5] tools: fix grammar error

2016-10-09 Thread Moritz Barsnick
Signed-off-by: Moritz Barsnick --- tools/ismindex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ismindex.c b/tools/ismindex.c index 5917d42..c16e2f2 100644 --- a/tools/ismindex.c +++ b/tools/ismindex.c @@ -375,7 +375,7 @@ static int read_tfra(struct Tracks *tracks, i

Re: [FFmpeg-devel] [PATCH 1/6] lavc/qsv(hevc): Change default plugin from hevc_sw to hevc_default, which will load hevc_hw first, due to newly released MSDK.

2016-10-09 Thread Michael Niedermayer
Hi Patches 1,5,6 of this patchset have no comments, are they rejected need changes or something else ? [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The real ebay dictionary, page 2 "100% positive feedback" - "All either got their money back or didnt complain"

[FFmpeg-devel] [PATCH] doc: fix various typos and grammar errors

2016-10-09 Thread Moritz Barsnick
Signed-off-by: Moritz Barsnick --- doc/codecs.texi | 2 +- doc/demuxers.texi| 4 ++-- doc/ffmpeg.texi | 2 +- doc/fftools-common-opts.texi | 8 doc/filters.texi | 42 +- doc/formats.texi