Re: [FFmpeg-devel] [PATCH v2 5/5] avformat/chromaprint: Avoid null pointer dereference

2019-10-06 Thread Andriy Gelman
On Sun, 06. Oct 13:56, Paul B Mahol wrote: > On 10/6/19, Andriy Gelman wrote: > > On Sun, 06. Oct 01:49, Andriy Gelman wrote: > >> From: Andriy Gelman > >> > >> As of commit 21b2442f in the chromaprint library, selecting "-algorithm 2" > >> via the ffmpeg cli creates a null pointer dereference.

Re: [FFmpeg-devel] [PATCH v2 5/5] avformat/chromaprint: Avoid null pointer dereference

2019-10-06 Thread Paul B Mahol
On 10/6/19, Andriy Gelman wrote: > On Sun, 06. Oct 01:49, Andriy Gelman wrote: >> From: Andriy Gelman >> >> As of commit 21b2442f in the chromaprint library, selecting "-algorithm 2" >> via the ffmpeg cli creates a null pointer dereference. This can be >> replicated by: >> ./ffmpeg -f lavfi -i

Re: [FFmpeg-devel] [PATCH v2 5/5] avformat/chromaprint: Avoid null pointer dereference

2019-10-06 Thread Andriy Gelman
On Sun, 06. Oct 01:49, Andriy Gelman wrote: > From: Andriy Gelman > > As of commit 21b2442f in the chromaprint library, selecting "-algorithm 2" > via the ffmpeg cli creates a null pointer dereference. This can be replicated > by: > ./ffmpeg -f lavfi -i sine=d=20,asetnsamples=n=1000 -f

[FFmpeg-devel] [PATCH v2 5/5] avformat/chromaprint: Avoid null pointer dereference

2019-10-05 Thread Andriy Gelman
From: Andriy Gelman As of commit 21b2442f in the chromaprint library, selecting "-algorithm 2" via the ffmpeg cli creates a null pointer dereference. This can be replicated by: ./ffmpeg -f lavfi -i sine=d=20,asetnsamples=n=1000 -f chromaprint -algorithm 2 - Until this issue is resolved, this