Re: [FFmpeg-devel] [PATCH] lavc/qsvenc: add the missing vp9 file

2019-11-04 Thread Dennis Mungai
On Mon, 4 Nov 2019 at 10:12, Zhong Li wrote: > > It is missed in commit 3358380 > > Signed-off-by: Zhong Li > --- > libavcodec/qsvenc_vp9.c | 113 > > 1 file changed, 113 insertions(+) > create mode 100644 libavcodec/qsvenc_vp9.c > > diff --git

Re: [FFmpeg-devel] [PATCH] avutil/eval: add function to track variable use

2019-11-04 Thread Gyan
On 05-11-2019 04:35 am, Michael Niedermayer wrote: On Sun, Nov 03, 2019 at 11:14:25AM +0530, Gyan wrote: Helps better identification of expr eval failures. Gyan eval.c| 21 + eval.h| 10 ++ version.h |4 ++-- 3 files changed, 33 insertions(+),

[FFmpeg-devel] [PATCH v3] avdevice/v4l2: Remove av_assert0 when format not supported

2019-11-04 Thread Andriy Gelman
From: Andriy Gelman Before this commit an av_assert0 would fail if a v4l2 device did not support a target format. For example, ./ffmpeg -f v4l2 -codec:v h264 -i /dev/video0 -f mpegts - would signal an abort if /dev/video0 did not support h264. The new behaviour is to return an AVERROR(EINVAL) er

[FFmpeg-devel] [PATCH v1 4/4] avcodec/proresenc_anatoliy: support for more color matrix for proresenc

2019-11-04 Thread lance . lmwang
From: Limin Wang Please tested with below command: ./ffmpeg -i ../fate-suite/mpeg2/t.mpg -c:v prores_aw -color_primaries bt2020 -colorspace bt2020_ncl -color_trc smpte2084 -an output.mov mediainfo outout.mov ... Color primaries : BT.2020 Transfer characteristics

Re: [FFmpeg-devel] [PATCHv2 2/6] avcodec/libvpxenc: only allocate alpha U/V planes on size changes

2019-11-04 Thread James Zern
On Sat, Nov 2, 2019 at 9:20 AM Marton Balint wrote: > > Signed-off-by: Marton Balint > --- > libavcodec/libvpxenc.c | 60 > ++ > 1 file changed, 36 insertions(+), 24 deletions(-) > lgtm. I'll apply this set of patches soon if there aren't any fur

Re: [FFmpeg-devel] [PATCH 1/8] configure: select mdct & sinewin for atrac3pal decoder

2019-11-04 Thread Carl Eugen Hoyos
Am Di., 5. Nov. 2019 um 00:45 Uhr schrieb Lou Logan : [...] Set lgtm. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffm

[FFmpeg-devel] [PATCH 6/8] configure: select blockdsp for mdec decoder

2019-11-04 Thread Lou Logan
Signed-off-by: Lou Logan --- Fixes: ./configure --disable-everything --enable-decoder=mdec /usr/bin/ld: libavcodec/libavcodec.a(mdec.o): in function `decode_init': mdec.c:(.text+0x1602): undefined reference to `ff_bswapdsp_init' --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[FFmpeg-devel] [PATCH 7/8] configure: select fft for qdmc decoder

2019-11-04 Thread Lou Logan
Signed-off-by: Lou Logan --- Fixes: ./configure --disable-everything --enable-decoder=qdmc /usr/bin/ld: libavcodec/libavcodec.a(qdmc.o): in function `qdmc_decode_init': qdmc.c:(.text+0x112d): undefined reference to `ff_fft_init' /usr/bin/ld: libavcodec/libavcodec.a(qdmc.o): in function `qdmc_decod

[FFmpeg-devel] [PATCH 4/8] avcodec/Makefile: add missing ass dependency to ccaption decoder

2019-11-04 Thread Lou Logan
Signed-off-by: Lou Logan --- Fixes: ./configure --disable-everything --enable-decoder=ccaption /usr/bin/ld: libavcodec/libavcodec.a(ccaption_dec.o): in function `init_decoder': ccaption_dec.c:(.text+0xa8): undefined reference to `ff_ass_subtitle_header' /usr/bin/ld: libavcodec/libavcodec.a(ccapti

[FFmpeg-devel] [PATCH 8/8] configure: select bswapdsp for ylc decoder

2019-11-04 Thread Lou Logan
Signed-off-by: Lou Logan --- Fixes: ./configure --disable-everything --enable-decoder=ylc /usr/bin/ld: libavcodec/libavcodec.a(ylc.o): in function `decode_init': ylc.c:(.text+0x366): undefined reference to `ff_bswapdsp_init' --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/config

[FFmpeg-devel] [PATCH 5/8] configure: select blockdsp for imm4 decoder

2019-11-04 Thread Lou Logan
Signed-off-by: Lou Logan --- Fixes: ./configure --disable-everything --enable-decoder=imm4 /usr/bin/ld: libavcodec/libavcodec.a(imm4.o): in function `decode_init': imm4.c:(.text+0x267a): undefined reference to `ff_bswapdsp_init' --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/co

[FFmpeg-devel] [PATCH 3/8] configure: select audiodsp for acelp_kelvin decoder

2019-11-04 Thread Lou Logan
Signed-off-by: Lou Logan --- Fixes: ./configure --disable-everything --enable-decoder=acelp_kelvin /usr/bin/ld: libavcodec/libavcodec.a(g729dec.o): in function `decoder_init': g729dec.c:(.text+0xba1): undefined reference to `ff_audiodsp_init' --- configure | 1 + 1 file changed, 1 insertion(+) d

[FFmpeg-devel] [PATCH 2/8] configure: select mdct for atrac3al decoder

2019-11-04 Thread Lou Logan
Signed-off-by: Lou Logan --- Fixes: --disable-everything --enable-decoder=atrac3al /usr/bin/ld: libavcodec/libavcodec.a(atrac3.o): in function `atrac3_decode_close': atrac3.c:(.text+0x882): undefined reference to `ff_mdct_end' /usr/bin/ld: libavcodec/libavcodec.a(atrac3.o): in function `atrac3_d

[FFmpeg-devel] [PATCH 1/8] configure: select mdct & sinewin for atrac3pal decoder

2019-11-04 Thread Lou Logan
Signed-off-by: Lou Logan --- Fixes: --disable-everything --enable-decoder=atrac3pal /usr/bin/ld: libavcodec/libavcodec.a(atrac3plusdec.o): in function `atrac3p_decode_close': atrac3plusdec.c:(.text+0x2cf): undefined reference to `ff_mdct_end' /usr/bin/ld: atrac3plusdec.c:(.text+0x2e1): undefined

Re: [FFmpeg-devel] [PATCH] avutil/eval: add function to track variable use

2019-11-04 Thread Michael Niedermayer
On Sun, Nov 03, 2019 at 11:14:25AM +0530, Gyan wrote: > > Helps better identification of expr eval failures. > > Gyan > eval.c| 21 + > eval.h| 10 ++ > version.h |4 ++-- > 3 files changed, 33 insertions(+), 2 deletions(-) > 3dd142baa0144fd324eb9da8a

Re: [FFmpeg-devel] [PATCH 5/5] avformat/Makefile: add missing pcm dependency to sdx demuxer

2019-11-04 Thread Lou Logan
On Sat, Nov 2, 2019, at 2:57 AM, Carl Eugen Hoyos wrote: > Am Fr., 1. Nov. 2019 um 23:37 Uhr schrieb Lou Logan : > > [...] > > Set lgtm. Set pushed. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] avcodec/dvenc: support encoding dvcprohd

2019-11-04 Thread Michael Niedermayer
On Sat, Nov 02, 2019 at 12:06:19PM -0700, Baptiste Coudurier wrote: > --- > libavcodec/dv.h | 1 + > libavcodec/dvenc.c| 555 +- > tests/fate/vcodec.mak | 14 +- here are the corresponding ref files i get: they are the same on x86-64/32, mingw

[FFmpeg-devel] Transcoding frame rate mismatch

2019-11-04 Thread Vassilis
Hi all, I am trying simply to perform a transcoding process using the transcoding.c example. However I am seeing a very strange result (even when the example is not modified at all, ie not even changing codecs); the transcoded file has a marginally different frame rate than the original file. Ie f

[FFmpeg-devel] [PATCH] avformat/movenc: Support for variable timescale in mov containers

2019-11-04 Thread Kevin Wheatley
This pair of patches work together to facilitate user specified timescales for the Movie Header Atom 'mvhd', which allows constant sample table durations for all frame rates. Currently there is a fixed timescale of 1000, which is not an even multiple of all the typical video frame/field rates. Thi

Re: [FFmpeg-devel] [PATCH v2 1/4] frame: handle add side data with the same type

2019-11-04 Thread zhilizhao(赵志立)
> On Nov 4, 2019, at 5:04 AM, Michael Niedermayer > wrote: > > On Fri, Nov 01, 2019 at 06:16:38PM +0100, Marton Balint wrote: >> >> >> On Fri, 1 Nov 2019, "zhilizhao(赵志立)" wrote: >> >>> >>> On Nov 1, 2019, at 8:13 PM, Hendrik Leppkes wrote: On Fri, Nov 1, 2019 at 1:03 PM

Re: [FFmpeg-devel] [PATCH v2] avdevice/v4l2: Remove av_assert0 when format not supported

2019-11-04 Thread Nicolas George
Andriy Gelman (12019-11-03): > The new behaviour is to return an AVERROR(EINVAL) error code. This is not obvious in the code at all: please check it with an av_assert0(). Regards, -- Nicolas George signature.asc Description: PGP signature ___ ffmp

[FFmpeg-devel] [PATCH v1 2/4] avcodec/prores_metadata_bsf: add smpte2084 format support

2019-11-04 Thread lance . lmwang
From: Limin Wang It's based on the following specs: RDD 36:2015 - SMPTE Registered Disclosure Doc - Apple ProRes Bitstream Syntax and Decoding Process Signed-off-by: Limin Wang --- doc/bitstream_filters.texi | 2 ++ libavcodec/prores_metadata_bsf.c | 3 ++- 2 files changed, 4 insertions

[FFmpeg-devel] [PATCH v1 1/4] doc/bitstream_filters: Fix copy an paste typo

2019-11-04 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- doc/bitstream_filters.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/bitstream_filters.texi b/doc/bitstream_filters.texi index 50a1679fc7..8fe5b3ad75 100644 --- a/doc/bitstream_filters.texi +++ b/doc/bitstream_filters.

[FFmpeg-devel] [PATCH v1 3/4] avcodec/prores_metadata_bsf: add arib-std-b67 format support

2019-11-04 Thread lance . lmwang
From: Limin Wang It's based on the following specs: RDD 45:2017 - SMPTE Registered Disclosure Doc - Interoperable Master Format - Application ProRes Signed-off-by: Limin Wang --- doc/bitstream_filters.texi | 7 +++ libavcodec/prores_metadata_bsf.c | 1 + 2 files changed, 8 insertion