mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Fix compilation in video.cpp
/home/deen/isos/ddnet/ddnet-source/src/engine/client/video.cpp:829:9: error: ‘c’ was not declared in this s cope 829 | c->thread_count = 1; | ^
This commit is contained in:
parent
e9f95dbefd
commit
eb14755501
|
@ -826,7 +826,7 @@ bool CVideo::AddStream(OutputStream *pStream, AVFormatContext *pOC, const AVCode
|
|||
|
||||
#if defined(CONF_ARCH_IA32) || defined(CONF_ARCH_ARM)
|
||||
// use only 1 ffmpeg thread on 32-bit to save memory
|
||||
c->thread_count = 1;
|
||||
pContext->thread_count = 1;
|
||||
#endif
|
||||
|
||||
switch((*ppCodec)->type)
|
||||
|
|
Loading…
Reference in a new issue