Re: [FFmpeg-devel] [PATCH v3] lavu: add an AV_FRAME_DATA_GAMMA side data type

2017-11-06 Thread Nicolas George
Le sextidi 16 brumaire, an CCXXVI, Rostislav Pehlivanov a écrit : > Signed-off-by: Rostislav Pehlivanov > --- > doc/APIchanges | 3 +++ > libavutil/frame.h | 6 ++ > libavutil/version.h | 2 +- > 3 files changed, 10 insertions(+), 1 deletion(-) Sorry if it has

[FFmpeg-devel] Support for h264/SVC over RTP and SVC base layer decoding in h264

2017-11-06 Thread Breeden, Joshua
> can you add a fate test for this ? I took a look around the existing tests to see how the existing extradata parsing is being tested, but didn't find anything. Is there something existing that I'm not seeing? If not, could you provide a little more guidance on how you'd like this tested?

[FFmpeg-devel] [PATCH v3] pngdec: expose gAMA and cHRM chunks as side data

2017-11-06 Thread Rostislav Pehlivanov
Signed-off-by: Rostislav Pehlivanov --- libavcodec/pngdec.c | 32 1 file changed, 32 insertions(+) diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c index 0d6612ccca..9ce57b7e70 100644 --- a/libavcodec/pngdec.c +++ b/libavcodec/pngdec.c

[FFmpeg-devel] [PATCH v3] lavu: add an AV_FRAME_DATA_GAMMA side data type

2017-11-06 Thread Rostislav Pehlivanov
Signed-off-by: Rostislav Pehlivanov --- doc/APIchanges | 3 +++ libavutil/frame.h | 6 ++ libavutil/version.h | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/APIchanges b/doc/APIchanges index 1490d67f27..75051deaf8 100644 ---

Re: [FFmpeg-devel] [PATCH] avfilter:vf_libvmaf: fix errors while running with psnr=1 and improve docs

2017-11-06 Thread Carl Eugen Hoyos
2017-11-06 15:09 GMT+01:00 Ronald S. Bultje : > Hi, > > On Mon, Nov 6, 2017 at 8:21 AM, Carl Eugen Hoyos wrote: > >> 2017-11-06 13:52 GMT+01:00 Ronald S. Bultje : >> > Split, and pushed. >> >> +format = (char *) s->desc->name; >> >>

Re: [FFmpeg-devel] [PATCH] avformat/rtpdec_asf: free the buffer pointed by the AVIOContext

2017-11-06 Thread James Almer
On 11/6/2017 3:54 PM, Carl Eugen Hoyos wrote: > 2017-11-06 17:29 GMT+01:00 James Almer : >> Don't free the buffer allocated in ff_wms_parse_sdp_a_line() after >> calling avformat_open_input(), as it may free it and replace it with >> another one. >> >> Should fix ticket #6808 >

Re: [FFmpeg-devel] [PATCH] avformat/rtpdec_asf: free the buffer pointed by the AVIOContext

2017-11-06 Thread Carl Eugen Hoyos
2017-11-06 17:29 GMT+01:00 James Almer : > Don't free the buffer allocated in ff_wms_parse_sdp_a_line() after > calling avformat_open_input(), as it may free it and replace it with > another one. > > Should fix ticket #6808 I can confirm that the patch fixes the issue, consider

Re: [FFmpeg-devel] On in-tree external headers

2017-11-06 Thread Jorge Ramirez
On 11/05/2017 11:12 PM, Jan Ekstrom wrote: I also feel like whatever this rule would look like, it's already practiced that way. There isn't really a way not do decide this on a case by case basis. Luckily it's not something that comes up every other day. If someone would submit random third

Re: [FFmpeg-devel] [PATCH 6/8] x86inc: reduce difference to x264 upstream

2017-11-06 Thread James Darnley
On 2017-10-31 04:30, Michael Niedermayer wrote: > On Mon, Oct 30, 2017 at 02:08:33PM +0100, James Darnley wrote: >> These changes were commited to x264 in b568a256 "Experimental nasm >> support" >> --- >> libavutil/x86/x86inc.asm | 16 ++-- >> 1 file changed, 14 insertions(+), 2

Re: [FFmpeg-devel] [PATCH 6/8] x86inc: reduce difference to x264 upstream

2017-11-06 Thread James Almer
On 11/6/2017 4:56 PM, James Darnley wrote: > On 2017-10-31 04:30, Michael Niedermayer wrote: >> On Mon, Oct 30, 2017 at 02:08:33PM +0100, James Darnley wrote: >>> These changes were commited to x264 in b568a256 "Experimental nasm >>> support" >>> --- >>> libavutil/x86/x86inc.asm | 16

Re: [FFmpeg-devel] [PATCH 6/8] x86inc: reduce difference to x264 upstream

2017-11-06 Thread James Darnley
On 2017-11-06 21:15, James Almer wrote: > On 11/6/2017 4:56 PM, James Darnley wrote: >> Line 733 is the align command to align the start of the function. I >> can't see why it fails here but not on any other function in that file >> or any other file. >> >> After some cutting and pasting there is

[FFmpeg-devel] remove last use of deprecated avcodec_get_chroma_sub_sample

2017-11-06 Thread Martin Vignali
Hello, patch in attach remove last use of this func replace it by av_pix_fmt_get_chroma_sub_sample, and return check remove several warning based on previous patch by Nicolas Frattaroli also remove the comment, where it's recommanded to use the deprecated func pass fate test for me Martin

Re: [FFmpeg-devel] [PATCH] avfilter:vf_libvmaf: fix errors while running with psnr=1 and improve docs

2017-11-06 Thread Ronald S. Bultje
Hi, On Mon, Nov 6, 2017 at 1:58 PM, Carl Eugen Hoyos wrote: > It is one thing to know that within FFmpeg, we do not modify > a pointer target and therefore decide to cast, but isn't it > another (bad) thing to assume this for an external library? I'm guessing that what you

Re: [FFmpeg-devel] [PATCH 6/8] x86inc: reduce difference to x264 upstream

2017-11-06 Thread James Almer
On 11/6/2017 5:28 PM, James Darnley wrote: > On 2017-11-06 21:15, James Almer wrote: >> On 11/6/2017 4:56 PM, James Darnley wrote: >>> Line 733 is the align command to align the start of the function. I >>> can't see why it fails here but not on any other function in that file >>> or any other

Re: [FFmpeg-devel] [PATCH]lavc/pcm-dvd: Do not use an incompatible pointer on big-endian.

2017-11-06 Thread Hendrik Leppkes
On Wed, Nov 1, 2017 at 6:33 PM, Carl Eugen Hoyos wrote: > 2017-11-01 18:18 GMT+01:00 Hendrik Leppkes : >> On Wed, Nov 1, 2017 at 5:13 PM, Carl Eugen Hoyos wrote: >>> Hi! >>> >>> Attached patch silences a gcc warning, tested with

Re: [FFmpeg-devel] [PATCH]lavf/amr: Add amrnb and amrwb demuxers

2017-11-06 Thread Paul B Mahol
On 11/5/17, Carl Eugen Hoyos wrote: > 2017-10-09 0:24 GMT+02:00 Carl Eugen Hoyos : >> 2017-10-07 16:51 GMT+02:00 Carl Eugen Hoyos : >>> 2017-10-01 18:23 GMT+02:00 Carl Eugen Hoyos : 2017-09-27 18:08 GMT+02:00

Re: [FFmpeg-devel] [PATCH]lavc/pcm-bluray: Do not use incompatible pointers on big-endian.

2017-11-06 Thread Hendrik Leppkes
On Wed, Nov 1, 2017 at 7:01 PM, Carl Eugen Hoyos wrote: > 2017-11-01 18:31 GMT+01:00 Hendrik Leppkes : >> On Wed, Nov 1, 2017 at 6:25 PM, Carl Eugen Hoyos wrote: >>> 2017-11-01 18:16 GMT+01:00 Hendrik Leppkes :

[FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc non-uni hv mc msa functions

2017-11-06 Thread kaustubh.raste
From: Kaustubh Raste Use mask buffer. Signed-off-by: Kaustubh Raste --- libavcodec/mips/hevcdsp_msa.c | 1478 - 1 file changed, 870 insertions(+), 608 deletions(-) diff --git

[FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc uni 4 tap hv mc msa functions

2017-11-06 Thread kaustubh.raste
From: Kaustubh Raste Use global mask buffer for appropriate mask load. Remove unused macro and table. Signed-off-by: Kaustubh Raste --- libavcodec/mips/hevc_mc_uni_msa.c | 1125 +++-- 1 file changed, 566

Re: [FFmpeg-devel] [PATCH] avutil/frame: Add avcodec_private_ref to AVFrame

2017-11-06 Thread Timo Rothenpieler
Am 05.11.2017 um 14:35 schrieb James Almer: On 11/5/2017 9:34 AM, Michael Niedermayer wrote: This gives libavcodec a field that it can freely and safely use. Avoiding the need of wraping of a users opaque_ref field and its issues. Could this perhaps be in an opaque internal struct instead,

[FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc uni weighted 4 tap vt mc msa functions

2017-11-06 Thread kaustubh.raste
From: Kaustubh Raste Use global mask buffer for appropriate mask load. Use immediate unsigned saturation for clip to max saving one vector register. Remove unused macro. Signed-off-by: Kaustubh Raste --- libavcodec/mips/hevc_mc_uniw_msa.c

Re: [FFmpeg-devel] [PATCH]lavf/amr: Add amrnb and amrwb demuxers

2017-11-06 Thread Carl Eugen Hoyos
2017-11-06 11:50 GMT+01:00 Paul B Mahol : > On 11/5/17, Carl Eugen Hoyos wrote: >> 2017-10-09 0:24 GMT+02:00 Carl Eugen Hoyos : >>> 2017-10-07 16:51 GMT+02:00 Carl Eugen Hoyos : 2017-10-01 18:23 GMT+02:00 Carl

Re: [FFmpeg-devel] Must I subscribe to ffmpeg-devel in order to submit a patch?

2017-11-06 Thread Lou Logan
Hi, On Sat, 4 Nov 2017 21:52:28 -0700 Jim DeLaHunt wrote: > Hello, ffmpeg developers: > > I'm gearing up to submit a patch, adding an FAQ to the documentation. > According to , > "Patches should be posted to the

[FFmpeg-devel] libavcodec/mpegvideo : remove warning introduce by previous patch

2017-11-06 Thread Martin Vignali
Hello, Sorry, i put the ret variable declaration in the previous patch, at the wrong place (at the start of the func, instead of inside the FF_API_DEBUG_MV part patch in attach fix warning, Martin 0001-libavcodec-mepgvideo-remove-warning-introduce-by-pre.patch Description: Binary data

Re: [FFmpeg-devel] Added HW H.264 and HEVC encoding for AMD GPUs based on AMF SDK

2017-11-06 Thread Michael Niedermayer
On Mon, Nov 06, 2017 at 11:28:38PM +, Mironov, Mikhail wrote: > > -Original Message- > > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > > Of Michael Niedermayer > > Sent: November 6, 2017 5:47 PM > > To: FFmpeg development discussions and patches >

Re: [FFmpeg-devel] [PATCH] avformat: move priv_pts from AVStream to an internal struct

2017-11-06 Thread Michael Niedermayer
On Sun, Nov 05, 2017 at 03:06:56PM -0300, James Almer wrote: > It has no reason to be in a public header, even if defined as private. > > Signed-off-by: James Almer > --- > To be honest, none of the fields below the "not part of the API" notice > have any reason to be in the

Re: [FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc bi 4 tap hv mc msa functions

2017-11-06 Thread Michael Niedermayer
On Mon, Nov 06, 2017 at 01:20:51PM +, Manojkumar Bhosale wrote: > LGTM will apply thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB "I am not trying to be anyone's saviour, I'm trying to think about the future and not be sad" - Elon Musk

Re: [FFmpeg-devel] [PATCH] avcodec/mips: Improve avc avg mc 10, 30, 01 and 03 msa functions

2017-11-06 Thread Michael Niedermayer
On Mon, Nov 06, 2017 at 01:20:16PM +, Manojkumar Bhosale wrote: > LGTM will apply [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Frequently ignored answer#1 FFmpeg bugs should be sent to our bugtracker. User questions about the command line tools should be

Re: [FFmpeg-devel] [PATCH v3] pngdec: expose gAMA and cHRM chunks as side data

2017-11-06 Thread Michael Niedermayer
On Mon, Nov 06, 2017 at 05:59:27PM +, Rostislav Pehlivanov wrote: > Signed-off-by: Rostislav Pehlivanov > --- > libavcodec/pngdec.c | 32 > 1 file changed, 32 insertions(+) probably ok if tested thx [...] -- Michael GnuPG

Re: [FFmpeg-devel] Added HW H.264 and HEVC encoding for AMD GPUs based on AMF SDK

2017-11-06 Thread Michael Niedermayer
On Tue, Nov 07, 2017 at 01:36:57AM +, Mironov, Mikhail wrote: > > > > theres no match for ID3D11VideoContext in my d3d11.h > > > my mingw stuff should be just the official packages from > > ubuntu LTS 14.04 > > Then how would you compile hwcontext_d3d11va.h where ID3D11DeviceContext and >

Re: [FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc non-uni hv mc msa functions

2017-11-06 Thread Manojkumar Bhosale
LGTM -Original Message- From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of kaustubh.ra...@imgtec.com Sent: Monday, November 6, 2017 6:07 PM To: ffmpeg-devel@ffmpeg.org Cc: Kaustubh Raste Subject: [FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc non-uni hv mc msa

Re: [FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc uni weighted 4 tap vt mc msa functions

2017-11-06 Thread Manojkumar Bhosale
LGTM -Original Message- From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of kaustubh.ra...@imgtec.com Sent: Monday, November 6, 2017 4:29 PM To: ffmpeg-devel@ffmpeg.org Cc: Kaustubh Raste Subject: [FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc uni weighted 4 tap

[FFmpeg-devel] [PATCH V2] examples/vaapi_encode: Add a VA-API encode example.

2017-11-06 Thread Jun Zhao
V2: Fix the build error (avfiltergraph.h have been remove with merge 99ba85a0). From 48fa48129de4f81812c2c11faf30fff7312640d4 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Mon, 6 Nov 2017 14:45:27 +0800 Subject: [PATCH V2] examples/vaapi_encode: Add a VA-API encode example.

Re: [FFmpeg-devel] [PATCH 2/4] libavformat/tcp: Added an option to reuse sockets

2017-11-06 Thread Jeyapal, Karthick
>On 11/3/17, 9:44 PM, "Aman Gupta" wrote: > >I recently implemented keepalive support in the hls demuxer, and have been >using it with a lot of success. See my patchset: >http://ffmpeg.org/pipermail/ffmpeg-devel/2017-October/217353.html > >Aman Thanks a lot for your excellent

Re: [FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc bi wgt 4 tap hv mc msa functions

2017-11-06 Thread Manojkumar Bhosale
LGTM -Original Message- From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of kaustubh.ra...@imgtec.com Sent: Monday, November 6, 2017 11:33 AM To: ffmpeg-devel@ffmpeg.org Cc: Kaustubh Raste Subject: [FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc bi wgt 4 tap hv mc

Re: [FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc uni 4 tap hv mc msa functions

2017-11-06 Thread Manojkumar Bhosale
LGTM -Original Message- From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of kaustubh.ra...@imgtec.com Sent: Monday, November 6, 2017 4:21 PM To: ffmpeg-devel@ffmpeg.org Cc: Kaustubh Raste Subject: [FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc uni 4 tap hv mc msa

Re: [FFmpeg-devel] [PATCH 1/1] avdevice/decklink_dec: Autodetect the video input format

2017-11-06 Thread Jeyapal, Karthick
>On 11/6/17, 6:19 AM, "Marton Balint" wrote: > >>On Fri, 27 Oct 2017, Jeyapal, Karthick wrote: > >> Please find the patch attached. >> > >Thanks, below some comments: Thanks a lot for your detailed comments. I have incorporated all your comments in this new patch(es). Also, I

Re: [FFmpeg-devel] [PATCH] examples/vaapi_encode: Add a VA-API encode example.

2017-11-06 Thread Jun Zhao
On 2017/11/7 9:38, Michael Niedermayer wrote: > On Mon, Nov 06, 2017 at 02:56:16PM +0800, Jun Zhao wrote: >> configure |2 >> doc/examples/Makefile |1 >> doc/examples/vaapi_encode.c | 308 >> >> 3 files changed,

Re: [FFmpeg-devel] libavcodec/mpegvideo : remove warning introduce by previous patch

2017-11-06 Thread James Almer
On 11/6/2017 8:05 PM, Martin Vignali wrote: > Hello, > > Sorry, i put the ret variable declaration in the previous patch, at the > wrong place (at the start of the func, instead of inside the > FF_API_DEBUG_MV part > > patch in attach fix warning, > > Martin I'm not sure why you bothered to

Re: [FFmpeg-devel] Added HW H.264 and HEVC encoding for AMD GPUs based on AMF SDK

2017-11-06 Thread Mironov, Mikhail
> theres no match for ID3D11VideoContext in my d3d11.h > my mingw stuff should be just the official packages from > ubuntu LTS 14.04 Then how would you compile hwcontext_d3d11va.h where ID3D11DeviceContext and ID3D11VideoDevice are used? Thanks, Mikhail

Re: [FFmpeg-devel] [PATCH] examples/vaapi_encode: Add a VA-API encode example.

2017-11-06 Thread Michael Niedermayer
On Mon, Nov 06, 2017 at 02:56:16PM +0800, Jun Zhao wrote: > > configure |2 > doc/examples/Makefile |1 > doc/examples/vaapi_encode.c | 308 > > 3 files changed, 311 insertions(+) >

Re: [FFmpeg-devel] remove last use of deprecated avcodec_get_chroma_sub_sample

2017-11-06 Thread James Almer
On 11/6/2017 6:47 PM, Martin Vignali wrote: > Hello, > > patch in attach remove last use of this func > replace it by av_pix_fmt_get_chroma_sub_sample, and return check > > remove several warning > > based on previous patch by Nicolas Frattaroli > > > also remove the comment, where it's

Re: [FFmpeg-devel] Added HW H.264 and HEVC encoding for AMD GPUs based on AMF SDK

2017-11-06 Thread Michael Niedermayer
On Sat, Nov 04, 2017 at 10:49:44PM -0500, Mikhail Mironov wrote: > From fc6a3f63eb9c3734f4101cee2a2f5707e063ab62 Mon Sep 17 00:00:00 2001 > From: mmironov > Date: Fri, 27 Oct 2017 13:03:15 -0400 > Subject: [PATCH] Added: HW accelerated H.264 and HEVC encoding for AMD GPUs

Re: [FFmpeg-devel] [PATCH] avfilter:vf_libvmaf: fix errors while running with psnr=1 and improve docs

2017-11-06 Thread Carl Eugen Hoyos
2017-11-06 21:27 GMT+01:00 Ronald S. Bultje : > Hi, > > On Mon, Nov 6, 2017 at 1:58 PM, Carl Eugen Hoyos wrote: > >> It is one thing to know that within FFmpeg, we do not modify >> a pointer target and therefore decide to cast, but isn't it >> another (bad)

Re: [FFmpeg-devel] [PATCH] avutil/frame: Add avcodec_private_ref to AVFrame

2017-11-06 Thread Timo Rothenpieler
I would prefer if this field would not be library-specific, but perhaps just "private_ref" which is not allowed to be touched by users, and documented to only be valid while within one library - ie. if you pass a frame from avcodec to avfilter, avfilter could take over the field (and just free

Re: [FFmpeg-devel] [PATCH 1/3] sbc: implement SBC codec (low-complexity subband codec)

2017-11-06 Thread James Almer
On 11/5/2017 8:35 PM, Aurelien Jacobs wrote: > This was originally based on libsbc, and was fully integrated into ffmpeg. > --- > doc/general.texi | 2 + > libavcodec/Makefile | 4 + > libavcodec/allcodecs.c | 2 + > libavcodec/arm/Makefile |

Re: [FFmpeg-devel] [PATCH]lavc/pcm-dvd: Do not use an incompatible pointer on big-endian.

2017-11-06 Thread Carl Eugen Hoyos
2017-11-06 11:53 GMT+01:00 Hendrik Leppkes : > On Wed, Nov 1, 2017 at 6:33 PM, Carl Eugen Hoyos wrote: >> 2017-11-01 18:18 GMT+01:00 Hendrik Leppkes : >>> On Wed, Nov 1, 2017 at 5:13 PM, Carl Eugen Hoyos wrote:

Re: [FFmpeg-devel] [PATCH] avutil/frame: Add avcodec_private_ref to AVFrame

2017-11-06 Thread James Almer
On 11/6/2017 9:19 AM, Timo Rothenpieler wrote: > Am 05.11.2017 um 14:35 schrieb James Almer: >> On 11/5/2017 9:34 AM, Michael Niedermayer wrote: >>> This gives libavcodec a field that it can freely and safely use. >>> Avoiding the need of wraping of a users opaque_ref field and its issues. >> >>

Re: [FFmpeg-devel] [PATCH] avfilter:vf_libvmaf: fix errors while running with psnr=1 and improve docs

2017-11-06 Thread Ronald S. Bultje
Hi, On Thu, Oct 12, 2017 at 4:43 PM, Carl Eugen Hoyos wrote: > 2017-10-11 15:53 GMT+02:00 Ashish Pratap Singh : > > > Hi, this patch fixes the seg fault which ocuured while running libvmaf > filter > > with option psnr=1. This also improves libvmaf doc a

Re: [FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc bi 4 tap hv mc msa functions

2017-11-06 Thread Manojkumar Bhosale
LGTM From: ffmpeg-devel [ffmpeg-devel-boun...@ffmpeg.org] on behalf of kaustubh.ra...@imgtec.com [kaustubh.ra...@imgtec.com] Sent: Monday, November 06, 2017 11:15 AM To: ffmpeg-devel@ffmpeg.org Cc: Kaustubh Raste Subject: [FFmpeg-devel] [PATCH]

Re: [FFmpeg-devel] [PATCH] avcodec/mips: Improve avc avg mc 10, 30, 01 and 03 msa functions

2017-11-06 Thread Manojkumar Bhosale
LGTM From: ffmpeg-devel [ffmpeg-devel-boun...@ffmpeg.org] on behalf of kaustubh.ra...@imgtec.com [kaustubh.ra...@imgtec.com] Sent: Monday, November 06, 2017 10:49 AM To: ffmpeg-devel@ffmpeg.org Cc: Kaustubh Raste Subject: [FFmpeg-devel] [PATCH]

[FFmpeg-devel] [PATCH]configure: libvmaf is not GPLv2-compatible

2017-11-06 Thread Carl Eugen Hoyos
Hi! I believe the following patch is necessary to fix the libvmaf license dependencies. Please comment, Carl Eugen From 4f71e84f7b89031a6a808e4291d412e5371f677d Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Mon, 6 Nov 2017 14:15:31 +0100 Subject: [PATCH] configure:

Re: [FFmpeg-devel] [PATCH 1/3] sbc: implement SBC codec (low-complexity subband codec)

2017-11-06 Thread James Almer
On 11/6/2017 9:53 AM, Carl Eugen Hoyos wrote: > 2017-11-06 5:40 GMT+01:00 Rostislav Pehlivanov : > >>> +{ >>> +.id= AV_CODEC_ID_SBC, >>> +.type = AVMEDIA_TYPE_AUDIO, >>> +.name = "sbc", >>> +.long_name =

Re: [FFmpeg-devel] [PATCH] avfilter:vf_libvmaf: fix errors while running with psnr=1 and improve docs

2017-11-06 Thread Ronald S. Bultje
Hi, On Mon, Nov 6, 2017 at 8:21 AM, Carl Eugen Hoyos wrote: > 2017-11-06 13:52 GMT+01:00 Ronald S. Bultje : > > Hi, > > > > On Thu, Oct 12, 2017 at 4:43 PM, Carl Eugen Hoyos > > wrote: > > > >> 2017-10-11 15:53 GMT+02:00 Ashish Pratap

Re: [FFmpeg-devel] [PATCH 1/3] sbc: implement SBC codec (low-complexity subband codec)

2017-11-06 Thread Carl Eugen Hoyos
2017-11-06 5:40 GMT+01:00 Rostislav Pehlivanov : >> +{ >> +.id= AV_CODEC_ID_SBC, >> +.type = AVMEDIA_TYPE_AUDIO, >> +.name = "sbc", >> +.long_name = NULL_IF_CONFIG_SMALL("SBC (low-complexity subband >> codec)"), >> +},

Re: [FFmpeg-devel] [PATCH] avfilter:vf_libvmaf: fix errors while running with psnr=1 and improve docs

2017-11-06 Thread Carl Eugen Hoyos
2017-11-06 13:52 GMT+01:00 Ronald S. Bultje : > Hi, > > On Thu, Oct 12, 2017 at 4:43 PM, Carl Eugen Hoyos > wrote: > >> 2017-10-11 15:53 GMT+02:00 Ashish Pratap Singh : >> >> > Hi, this patch fixes the seg fault which ocuured while

Re: [FFmpeg-devel] [PATCH] avfilter:vf_libvmaf: fix errors while running with psnr=1 and improve docs

2017-11-06 Thread Ashish Pratap Singh
Hi, On Nov 6, 2017 18:22, "Ronald S. Bultje" wrote: Hi, On Thu, Oct 12, 2017 at 4:43 PM, Carl Eugen Hoyos wrote: > 2017-10-11 15:53 GMT+02:00 Ashish Pratap Singh : > > > Hi, this patch fixes the seg fault which ocuured while

[FFmpeg-devel] [PATCH] avformat/rtpdec_asf: free the buffer pointed by the AVIOContext

2017-11-06 Thread James Almer
Don't free the buffer allocated in ff_wms_parse_sdp_a_line() after calling avformat_open_input(), as it may free it and replace it with another one. Should fix ticket #6808 Signed-off-by: James Almer --- Untested. libavformat/rtpdec_asf.c | 4 ++-- 1 file changed, 2