Re: [libav-devel] [PATCH] random_seed: use bcrypt instead of the old wincrypt API

2018-04-19 Thread Martin Storsjö
On Tue, 17 Apr 2018, Diego Biurrun wrote: On Mon, Apr 16, 2018 at 05:50:04PM +0300, Martin Storsjö wrote: From: Steve Lhomme Remove the wincrypt API calls since we don't support XP anymore and bcrypt is available since Vista, even on Windows Store builds. --- Now with avutil_extralibs sorted

Re: [libav-devel] [PATCH] random_seed: use bcrypt instead of the old wincrypt API

2018-04-17 Thread Diego Biurrun
On Mon, Apr 16, 2018 at 05:50:04PM +0300, Martin Storsjö wrote: > From: Steve Lhomme > > Remove the wincrypt API calls since we don't support XP anymore and > bcrypt is available since Vista, even on Windows Store builds. > --- > Now with avutil_extralibs sorted alphabetically, and James' extende

[libav-devel] [PATCH] random_seed: use bcrypt instead of the old wincrypt API

2018-04-16 Thread Martin Storsjö
From: Steve Lhomme Remove the wincrypt API calls since we don't support XP anymore and bcrypt is available since Vista, even on Windows Store builds. --- Now with avutil_extralibs sorted alphabetically, and James' extended configure check included. --- configure | 7 --- libav

Re: [libav-devel] [PATCH] random_seed: use bcrypt instead of the old wincrypt API

2018-04-15 Thread Diego Biurrun
On Sun, Apr 15, 2018 at 11:17:40PM +0300, Martin Storsjö wrote: > --- a/configure > +++ b/configure > @@ -2610,7 +2610,7 @@ avdevice_extralibs="libm_extralibs" > -avutil_extralibs="clock_gettime_extralibs cuda_extralibs cuvid_extralibs > d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_

Re: [libav-devel] [PATCH] random_seed: use bcrypt instead of the old wincrypt API

2018-04-15 Thread James Almer
On 4/15/2018 5:17 PM, Martin Storsjö wrote: > From: Steve Lhomme > > Remove the wincrypt API calls since we don't support XP anymore and > bcrypt is available since Vista, even on Windows Store builds. > --- > configure | 6 +++--- > libavutil/random_seed.c | 19 ++

[libav-devel] [PATCH] random_seed: use bcrypt instead of the old wincrypt API

2018-04-15 Thread Martin Storsjö
From: Steve Lhomme Remove the wincrypt API calls since we don't support XP anymore and bcrypt is available since Vista, even on Windows Store builds. --- configure | 6 +++--- libavutil/random_seed.c | 19 ++- 2 files changed, 13 insertions(+), 12 deletions(-) dif