You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
changed f ((m->socket_udp = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) == -1)
Visual studio complains that it's missing an identifier
\pluginssource\network-hardware-video-decoder\nhvd.h(70): error C2226: syntax error: unexpected type 'nhvd'
\pluginssource\network-hardware-video-decoder\nhvd.h(71): error C2062: type 'void' unexpected
\pluginssource\network-hardware-video-decoder\nhvd.h(74): error C2062: type 'int' unexpected
r\pluginssource\network-hardware-video-decoder\nhvd.h(77): error C2062: type 'int' unexpected
The text was updated successfully, but these errors were encountered:
A word of caution - unless you have VAAPI compatible hardware with Linux you will have trouble testing NHVD (you need encoder to test the decoder, the network protocol is custom).
Unlike the decoding path (HVD) which implements several hardware decoders support, the encoding path (HVE) only supports VAAPI. Also using NVIDIA for encoder is not possible through VAAPI (works through VDPAU bridge which only supports decoding).
So if you are on Windows, to test the decoder, on the encoding part your will have to:
add some Windows hardware encoding support to HVE (some hints)
or add software encoding to HVE
Edit:
added link with hints on extending HVE with other hardware support
Hi,
I'm compiling for Windows 10 64 bit. I almost got it working. Will create pull request when i'm finished.
Used cmake to build the project:
cmake .. -G "Visual Studio 15 2017" -A x64 -T host=x64
downloaded https://ffmpeg.zeranoe.com/builds/win64/dev/ffmpeg-20190823-b29c7bc-win64-dev.zip
added
ffmpeg
toinclude directories
andlibrary directories
in
mpsp.c
After
#include "mlsp.h":
changed
f ((m->socket_udp = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) == -1)
Visual studio complains that it's missing an identifier
The text was updated successfully, but these errors were encountered: