Re: [Libav-user] msvc compiling issue

2018-10-24 Thread Carl Eugen Hoyos
2018-10-24 2:42 GMT+02:00, Anton Shekhovtsov : > Hi, > I begin to build ffmpeg with VC 2015 and have difficulty with cpu specific > features. > > For example this code (libavutil\float_dsp.c) > > if (ARCH_AARCH64) > ff_float_dsp_init_aarch64(fdsp); > if (ARCH_ARM) >

Re: [Libav-user] msvc compiling issue

2018-10-24 Thread Hristo Ivanov
Hi Anton, Recently I built ffmpeg with VC 2017 and had no problems. I had to use the following flags with the configure script. --arch=x86_64 \ --target-os=win64 \ --toolchain=msvc Maybe you are missing the --arch, hope this helps you.

[Libav-user] msvc compiling issue

2018-10-23 Thread Anton Shekhovtsov
Hi, I begin to build ffmpeg with VC 2015 and have difficulty with cpu specific features. For example this code (libavutil\float_dsp.c) if (ARCH_AARCH64) ff_float_dsp_init_aarch64(fdsp); if (ARCH_ARM) ff_float_dsp_init_arm(fdsp); if (ARCH_PPC)