kpld

Results 7 comments of kpld

ffmpeg 5.1 source code problem, not for this project

> @hustlei 1.8 版本的,也仍然无法实时预览。(非实时也不行) It's a permisson error. Run it under administrator privileges will OK.

Great work! Thanks tianjun9 to fix this bug.

has not check the return value in file [projectGenerator_pass.cpp:168] startPos = m_inLine.find_first_not_of(".\\/", startPos); need to add following code: if (startPos == string::npos) return true;

Another compile error exist: error C2011: 'DBParams': 'struct' type redefinition (compiling source file ../ffmpeg-7.1/libavcodec/hevc/hevcdec.c) error C2011: 'RefPicList': 'struct' type redefinition (compiling source file ../ffmpeg-7.1/libavcodec/hevc/hevcdec.c) error C2011: 'RefPicListTab': 'struct' type redefinition...

temporary add following lines in file [projectGenerator_compiler.cpp:95] to avoid struct type redefinition: ``` if (extraCl.find("libavcodec/hevc") != string::npos && i.find("libavcodec/vvc") != string::npos) { continue; } if (extraCl.find("libavcodec/vvc") != string::npos && i.find("libavcodec/hevc")...

end of function ProjectGenerator::outputSourceFiles, filterKeys item count is less than foundFilters item count, so need to add some filter key constant. Or it will be crashed.