[libav-devel] [PATCH] libavfilter/vf_yadif: fix race condition

2017-08-18 Thread Bradley Sepos
From FFmpeg. Fixes https://bugzilla.libav.org/show_bug.cgi?id=1031 --- From 221f902f1dc167bdc0bfdff6b6af3214ae3cc1f4 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 24 May 2013 17:12:58 +0200 Subject: [PATCH] avfilter/vf_yadif: fix race condition Signed-off-by: Michael Niedermayer

Re: [libav-devel] [PATCH] lavf: make avio_read_partial() public

2017-08-18 Thread wm4
On Fri, 18 Aug 2017 15:22:28 +0200 Anton Khirnov wrote: > Quoting wm4 (2017-08-18 14:44:45) > > On Fri, 18 Aug 2017 15:40:32 +0300 (EEST) > > Martin Storsjö wrote: > > > > > On Fri, 18 Aug 2017, Anton Khirnov wrote: > > > > > > > Quoting wm4 (2017-08-17 15:01:44) > > > >> Main use-case

Re: [libav-devel] [PATCH] lavf: make avio_read_partial() public

2017-08-18 Thread Anton Khirnov
Quoting wm4 (2017-08-18 14:44:45) > On Fri, 18 Aug 2017 15:40:32 +0300 (EEST) > Martin Storsjö wrote: > > > On Fri, 18 Aug 2017, Anton Khirnov wrote: > > > > > Quoting wm4 (2017-08-17 15:01:44) > > >> Main use-case is proxying avio through a foreign I/O layer and a custom > > >> AVIO context,

Re: [libav-devel] [PATCH 01/10] lavc: Add support for external hardware frame pool initialisation

2017-08-18 Thread Anton Khirnov
Quoting Mark Thompson (2017-08-06 00:53:02) > This can be used to refine the parameters of lavc-created hardware frames > contexts - this is useful for APIs which require some use information to > to be supplied at create time, such as DXVA2 and D3D11VA. (Suggested by > wm4 ). > > Also adds a fie

Re: [libav-devel] [PATCH 5/5] mpeg2enc: Don't mark all streams as component video

2017-08-18 Thread Anton Khirnov
Quoting Mark Thompson (2017-08-15 01:02:40) > Since there is no information about the source format, "unspecified" > is the correct value to write here. > > All tests using the MPEG-2 encoder are updated, as this changes the > header on all outputs. > --- > The actual diffs are all trivial, e.g. f

Re: [libav-devel] [PATCH 3/5] lavc: Add mpeg2_metadata bitstream filter

2017-08-18 Thread Anton Khirnov
Quoting Mark Thompson (2017-08-15 01:02:38) > --- > configure | 1 + > doc/bitstream_filters.texi | 36 > libavcodec/Makefile | 1 + > libavcodec/bitstream_filters.c | 1 + > libavcodec/mpeg2_metadata_bsf.c | 356 > ++

Re: [libav-devel] [PATCH 2/5] lavc: Add coded bitstream read/write support for MPEG-2

2017-08-18 Thread Anton Khirnov
Quoting Mark Thompson (2017-08-15 01:02:37) > Also enable MPEG-2 support in the trace_headers filter. > --- > * Updated to add build system. > * Writing support is redone to not have a huge buffer. > * Cleaned the tricky part of the split setup a bit. > * Unit free actually implemented so it doesn'

Re: [libav-devel] [PATCH] lavf: make avio_read_partial() public

2017-08-18 Thread wm4
On Fri, 18 Aug 2017 15:40:32 +0300 (EEST) Martin Storsjö wrote: > On Fri, 18 Aug 2017, Anton Khirnov wrote: > > > Quoting wm4 (2017-08-17 15:01:44) > >> Main use-case is proxying avio through a foreign I/O layer and a custom > >> AVIO context, without losing latency and performance characteris

Re: [libav-devel] [PATCH] lavf: make avio_read_partial() public

2017-08-18 Thread Martin Storsjö
On Fri, 18 Aug 2017, Anton Khirnov wrote: Quoting wm4 (2017-08-17 15:01:44) Main use-case is proxying avio through a foreign I/O layer and a custom AVIO context, without losing latency and performance characteristics. --- doc/APIchanges | 3 +++ libavformat/avio.h | 9 +++

Re: [libav-devel] [PATCH] lavf: make avio_read_partial() public

2017-08-18 Thread Anton Khirnov
Quoting wm4 (2017-08-17 15:01:44) > Main use-case is proxying avio through a foreign I/O layer and a custom > AVIO context, without losing latency and performance characteristics. > --- > doc/APIchanges | 3 +++ > libavformat/avio.h | 9 + > libavformat/avio_internal.