Presently, call graph generation using cflow includes C source and headers files related to unit test, documentation, and other non-production FFmpeg features. By excluding these files we could reduce noise in the call graph.
A first step to filtering such files is to identify non-production code in the FFmpeg source code repository and ensure these files are excluded by cflow.
cflow -b -r``find -name "*.c" -or -name "*.h" | grep -vwE "(tests|doc)" works. The list of files and/or directories to ignore could be added to grep's regular expression
Presently, call graph generation using cflow includes C source and headers files related to unit test, documentation, and other non-production FFmpeg features. By excluding these files we could reduce noise in the call graph.
A first step to filtering such files is to identify non-production code in the FFmpeg source code repository and ensure these files are excluded by cflow.