7d9ce919797b553f673735e50ca3c78dee41267a
[goodguy/cin-manual-latex.git] / parts / Developer.tex
1 \chapter{Developer's Section}%
2 \label{cha:Developer's_Section}
3
4 \section{How Builds Really Work and Even More Options}
5 \label{sec:How Builds Really Work and Even More Options}
6
7 This section describes how builds really work if you want to know more about making changes or understanding the process; probably only for a developer or system administrator.
8 \medskip
9
10 Builds occur in 4 basic steps:
11 \smallskip
12 \begin{enumerate}[nosep]
13         \item unpack/patch source code
14         \item configure build
15         \item make build targets
16         \item installation
17 \end{enumerate}
18
19 So, an example of what happens in 4 steps for a single-user build would be as follows:
20 \smallskip
21
22 \begin{enumerate}[nosep]
23         \item unpack/patch source code\newline
24         git clone --depth 1 ``git:/{\dots}/target'' cinelerra5\newline
25         ./autogen.sh
26         \item configure build\newline
27         ./configure --with-single-user
28         \item make build targets\newline
29         make 2{\textgreater}\&1 {\textbar} tee log
30         \item installation\newline
31         make install
32 \end{enumerate}
33 \medskip
34
35 A lot of things can be tweaked to change the results. \ Mostly these changes are parameters to the configure step, which can change important build related items, like the application name, or where and what the target system directories should be. \ This makes it possible to have several versions at the same time on the same computer if needed. \ To see what it is that the makefiles use to build Cinelerra, look at the resulting top-level global\_config file which is created by the ./configure step.
36 \medskip
37
38 Building Cinelerra requires many thirdparty libraries, and it is recommended that you use the static build version included in the git repo. \ Some of them are patched, and fix significant bugs. \ It is important to note that because system installation historically has been with as many shared objects as possible, the defaults are that any system library detected during configuration setup will be used, when the package is built ``-{}-without-single-user'', which is the default build. \ To build with static thirdparty libraries for system install to the system /usr area, use:
39 \smallskip
40
41 \hspace{2em}.configure -{}-enable-static-build --prefix=/usr
42 \medskip
43
44 Sometimes, additional package parameters and variables are needed during thirdparty builds. \ These optional values occur before and after the ``configure'' and ``make'' commands during a build. \ A presentation of the format of the package qualified variable names and how they appear in the build procedure are:
45 \medskip
46
47 \hspace{2em}
48 \begin{tabular}{@{}ll}
49         pkg.cfg\_vars & prepended to configure\\
50         pkg.cfg\_params & appended to configure\\
51         pkg.mak\_vars & prepended to make\\
52         pkg.mak\_params & appended to make\\
53     pkg.cflags & added as CFLAGS+=\$(cflags) to pkg.vars\\
54         pkg.cppflags & added as CPPFLAGS+=\$(cppflags) to pkg.vars\\
55 \end{tabular}
56 \bigskip
57
58 These steps are done for EACH of the packages in the thirdparty build:
59 \smallskip
60
61 \hspace{2em}{\textless}pkg.cfg\_vars{\textgreater} ./configure {\textless}pkg.cfg\_params{\textgreater}
62
63 \hspace{2em}{\textless}pkg.mak\_vars{\textgreater} make {\textless}pkg.mak\_params{\textgreater}
64 \bigskip
65
66 The thirdparty Makefile has a set of default vars and params used to build each of the needed thirdparty packages, but you can specify new or overriding values for these Makefile substitutions. \ These thirdparty build config changes are specified in the top-level file: cin\_config. \ By using this file, you can save the configuration changes made for the current build to use the next time you do a new build. \ For example, to add an include file path to the giflib build, add this line to cin\_config:
67 \medskip
68
69 \hspace{2em}giflib.cflags := -I/usr/local/include/giflib5
70 \medskip
71
72 To have a param/var change apply to all thirdparty builds, use:
73 \medskip
74
75 \hspace{2em}CFG\_VARS, CFG\_PARAMS, MAK\_VARS, MAK\_PARAMS
76 \medskip
77
78 CFLAGS, CXXFLAGS and LDFLAGS are forwarded to the thirdparty build environment via:
79 \medskip
80
81 \hspace{2em}CFLAGS=-ggdb ./configure -{}-with-single-user
82 \medskip
83
84 However, there is no guarantee that the thirdparty build will honor the environmental flags.
85
86 Finally, there are build controls, which enable/disable and set build features.
87 \bigskip
88
89 A few of the more useful ./configure -{}-parameters are:
90 \smallskip
91
92 \hspace{2em}
93 \begin{tabular}{@{}ll}
94         {}-{}-with-jobs=n & where n=number of build jobs; defaults to 1.5*cpus+2\\
95         {}-{}-enable-static-build & build all 3rd party libs; defaults to yes if single-user, else no\\
96         {}-{}-with-single-user& build installs to {\textless}build\_path{\textgreater}/bin; \ no system installation\\
97 \end{tabular}
98
99 \medskip
100
101 The ./configure command builds ``global\_config''. \ The global\_config is read by the thirdparty/Makefile to create the recipes and definitions used by the thirdparty build.
102 \medskip
103
104 There are a lot of different options.  Thirdparty library build control is available in the configure step of the build.  Thirdparty libraries are built on a demand basis.  So if you use:
105 \medskip
106
107 \hspace{2em}
108 \begin{tabular}{@{}ll}
109   --enable-libname=auto & \# the static-build enable, or the lack of a system library causes a build\\
110   --enable-libname=yes  &  \# this forces the thirdparty build\\
111   --enable-libname=no   &  \# this forces no thirdparty build\\
112 \end{tabular}
113 \medskip
114
115 FFmpeg is a ``strongly connected component''in the build linkage and widely influences the Cinelerra library demands.  It is possible to make small additions to the ffmpeg configuration step using the environment variable FFMPEG\_EXTRA\_CFG.  For example, to eliminate the use of libvdpau (an nvidia support library) in the ffmpeg configuration step after you have determined that it is causing an error, use:
116
117 \begin{itemize}[label={},nosep]
118         \item make clean
119         \item autogen.sh
120         \item export FFMPEG\_EXTRA\_CFG={\textquotedbl} -{}-disable-vdpau{\textquotedbl} 
121         \item ./configure {\dots}
122 \end{itemize}
123 \medskip
124
125 Specific information on using the current ffmpeg GIT repository follows.  You have to supply the actual URL location of the ffmpeg git as you can see in this example ?bld.sh? script:
126 \medskip
127
128 \begin{lstlisting}[numbers=none]
129 #!/bin/bash\newline
130 () ./autogen.sh\newline
131 ./configure --with-single-user --with-booby --with-git-ffmpeg=https://git.ffmpeg.org/ffmpeg.git
132 make && make install ) 2>1 | tee log
133 mv Makefile Makefile.cfg
134 cp Makefile.devel Makefile
135 \end{lstlisting}
136
137 Since the procedure for obtaining the latest ffmpeg version is not always kept up-to-date and the line numbers will always change, you may have to create that patch first. \ Generally those line numbers are only updated by a developer when a new stable version with worthwhile features is actually included in the Cinelerra build. FFmpeg is constantly changing and many times the git version is not as stable as desired.
138
139 \section{Configuration Features}
140 \label{sec:Configuration Features}
141
142 A listing of the current configuration features as of January 11, 2020:
143
144 \begingroup
145     \fontsize{10pt}{12pt}\selectfont
146 \begin{verbatim}
147
148 `configure' configures cinelerra 5.1 to adapt to many kinds of systems.
149
150 Usage: ./configure [OPTION]... [VAR=VALUE]...
151
152 To assign environment variables (e.g., CC, CFLAGS...), specify them as
153 VAR=VALUE.  See below for descriptions of some of the useful variables.
154
155 Defaults for the options are specified in brackets.
156
157 Configuration:
158   -h, --help              display this help and exit
159       --help=short        display options specific to this package
160       --help=recursive    display the short help of all the included packages
161   -V, --version           display version information and exit
162   -q, --quiet, --silent   do not print `checking ...' messages
163       --cache-file=FILE   cache test results in FILE [disabled]
164   -C, --config-cache      alias for `--cache-file=config.cache'
165   -n, --no-create         do not create output files
166       --srcdir=DIR        find the sources in DIR [configure dir or `..']
167
168 Installation directories:
169   --prefix=PREFIX         install architecture-independent files in PREFIX
170                           [/usr/local]
171   --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
172                           [PREFIX]
173
174 By default, `make install' will install all the files in
175 `/usr/local/bin', `/usr/local/lib' etc.  You can specify
176 an installation prefix other than `/usr/local' using `--prefix',
177 for instance `--prefix=$HOME'.
178
179 For better control, use the options below.
180
181 Fine tuning of the installation directories:
182   --bindir=DIR            user executables [EPREFIX/bin]
183   --sbindir=DIR           system admin executables [EPREFIX/sbin]
184   --libexecdir=DIR        program executables [EPREFIX/libexec]
185   --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
186   --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
187   --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
188   --libdir=DIR            object code libraries [EPREFIX/lib]
189   --includedir=DIR        C header files [PREFIX/include]
190   --oldincludedir=DIR     C header files for non-gcc [/usr/include]
191   --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
192   --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
193   --infodir=DIR           info documentation [DATAROOTDIR/info]
194   --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
195   --mandir=DIR            man documentation [DATAROOTDIR/man]
196   --docdir=DIR            documentation root [DATAROOTDIR/doc/cinelerra]
197   --htmldir=DIR           html documentation [DOCDIR]
198   --dvidir=DIR            dvi documentation [DOCDIR]
199   --pdfdir=DIR            pdf documentation [DOCDIR]
200   --psdir=DIR             ps documentation [DOCDIR]
201
202 Program names:
203   --program-prefix=PREFIX            prepend PREFIX to installed program names
204   --program-suffix=SUFFIX            append SUFFIX to installed program names
205   --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
206
207 Optional Features:
208   --disable-option-checking  ignore unrecognized --enable/--with options
209   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
210   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
211   --enable-silent-rules   less verbose build output (undo: "make V=1")
212   --disable-silent-rules  verbose build output (undo: "make V=0")
213   --enable-dependency-tracking
214                           do not reject slow dependency extractors
215   --disable-dependency-tracking
216                           speeds up one-time build
217   --enable-a52dec         build a52dec (yes)
218   --enable-djbfft         build djbfft (yes)
219   --enable-audiofile      build audiofile (no)
220   --enable-encore         build encore (no)
221   --enable-esound         build esound (no)
222   --enable-ffmpeg         build ffmpeg (yes)
223   --enable-fftw           build fftw (auto)
224   --enable-flac           build flac (auto)
225   --enable-giflib         build giflib (yes)
226   --enable-ilmbase        build ilmbase (auto)
227   --enable-lame           build lame (auto)
228   --enable-libavc1394     build libavc1394 (auto)
229   --enable-libraw1394     build libraw1394 (auto)
230   --enable-libiec61883    build libiec61883 (auto)
231   --enable-libdv          build libdv (auto)
232   --enable-libjpeg        build libjpeg (auto)
233   --enable-opus           build opus (auto)
234   --enable-openjpeg       build openjpeg (auto)
235   --enable-libogg         build libogg (auto)
236   --enable-libsndfile     build libsndfile (auto)
237   --enable-libtheora      build libtheora (auto)
238   --enable-libuuid        build libuuid (yes)
239   --enable-libvorbis      build libvorbis (auto)
240   --enable-mjpegtools     build mjpegtools (yes)
241   --enable-openexr        build openexr (auto)
242   --enable-tiff           build tiff (auto)
243   --enable-twolame        build twolame (auto)
244   --enable-x264           build x264 (auto)
245   --enable-x265           build x265 (auto)
246   --enable-libvpx         build libvpx (auto)
247   --enable-lv2            build lv2 (auto)
248   --enable-sratom         build sratom (auto)
249   --enable-serd           build serd (auto)
250   --enable-sord           build sord (auto)
251   --enable-lilv           build lilv (auto)
252   --enable-suil           build suil (auto)
253   --enable-libaom         build libaom (auto)
254   --enable-dav1d          build dav1d (auto)
255   --enable-libwebp        build libwebp (auto)
256   --enable-ffnvcodec      build ffnvcodec (auto)
257   --enable-static-build   build static ([auto])
258   --enable-x264_hidepth   build x264 10bit ([no])
259   --enable-x265_hidepth   build x265 10bit ([no])
260
261 Optional Packages:
262   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
263   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
264   --with-jobs             parallel build jobs (auto)
265   --with-exec-name        binary executable name (cin)
266   --with-single-user      to install cin in bin (no)
267   --with-ladspa-build     build ladspa library (yes)
268   --with-lv2              lv2 library support (yes)
269   --with-cinlib           cinelerra library path (auto)
270   --with-cindat           cinelerra share path (auto)
271   --with-plugin-dir       plugin install dir (auto)
272   --with-ladspa-dir       ladspa install dir (auto)
273   --with-config-dir       .bcast config dir ($$HOME/.bcast5)
274   --with-nested-dir       nested proxy dir ($$HOME/Videos)
275   --with-browser          cin_browser path (firefox)
276   --with-git-ffmpeg       git ffmpeg using url (no)
277   --with-noelision        use noelision/libpthread (auto)
278   --with-booby            window lock trace booby trap (no)
279   --with-libzmpeg         build libzmpeg (yes)
280   --with-commercial       enable commercial capture (yes)
281   --with-thirdparty       use thirdparty build (yes)
282   --with-shuttle          shuttle device (yes)
283   --with-wintv            usb 2040:826d wintv device (yes)
284   --with-x10tv            usb 0bc7:0004 X10 remote device (yes)
285   --with-vaapi            video acceleration api (yes)
286   --with-vdpau            video decode+presentation api for unix (yes)
287   --with-nv               nvenc/nvdec ffnvcodec api (yes)
288   --with-cuda             nv cuda plugins (auto)
289   --with-clang            use clang instead of gcc/g++ (no)
290   --with-gl               use opengl (auto)
291   --with-oss              use OSS audio (auto)
292   --with-xft              use libXft (auto)
293   --with-alsa             use libasound/alsa (auto)
294   --with-firewire         use firewire (auto)
295   --with-dv               use dv (auto)
296   --with-dvb              use dvb (auto)
297   --with-video4linux2     use v4l2 (auto)
298   --with-xxf86vm          use xf86vmode (auto)
299   --with-esound           use esd (auto)
300   --with-shuttle          shuttle dev support (auto)
301   --with-shuttle_usb      use libusb-1.0 (auto)
302   --with-lv2              use lv2 (auto)
303   --with-cuda             build cuda plugins (auto)
304   --with-dl               system has libdl (auto)
305   --with-opencv           opencv=sys/sta/dyn,git/tar=url (auto)
306   --with-numa             system has libnuma (auto)
307   --with-openexr          use openexr (auto)
308
309 Some influential environment variables:
310   CC          C compiler command
311   CFLAGS      C compiler flags
312   LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
313               nonstandard directory <lib dir>
314   LIBS        libraries to pass to the linker, e.g. -l<library>
315   CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
316               you have headers in a nonstandard directory <include dir>
317   CCAS        assembler compiler command (defaults to CC)
318   CCASFLAGS   assembler compiler flags (defaults to CFLAGS)
319   CXX         C++ compiler command
320   CXXFLAGS    C++ compiler flags
321
322 Use these variables to override the choices made by `configure' or to help
323 it to find libraries and programs with nonstandard names/locations.
324
325 Report bugs to <mail@lists.cinelerra-gg.org>.
326
327 \end{verbatim}
328 \endgroup
329
330 \section{Thirdparty Parallel Build}
331 \label{sec:Thirdparty Parallel Build}
332
333 The Makefile in the thirdparty build directory employs a set of macros used to create a build rule set of thirdparty library build dependencies.  The standard build sequence of [source, config, build] is used to prepare thirdparty products as static libraries.  Build package dependency can be specified in the Makefile std-build macro call.  These Makefile macro calls define the rules used for each thirdparty build.  The expanded rule definitions may be viewed by using:
334 \smallskip
335
336 \hspace{2em}make -C thirdparty rules
337 \medskip
338
339 Individual package libraries can be rebuilt, via:
340 \smallskip
341 \hspace{2em}make -C thirdparty <pkg>-clean;  make -C thirdparty <pkg>
342 \medskip
343
344 The rule targets create the set of thirdparty packages which are built from local source archive copies of thirdparty source code and patches, if needed.  The build rule set of dependencies allows for compiling multiple thirdparty programs simultaneously using maximum computer resources.  This parallel build speeds up the process considerably.  For example, these are full static build timings on the production build machine (full build includes building all thirdparty programs as well as all of Cinelerra):
345 \medskip
346
347 \hspace{2em}
348 \begin{tabular}{@{}rcr}
349         1 cpu & = & 61 mins\\
350         12 cpus & = & 7.5 mins\\
351         24 cpus & = & 2 mins\\
352 \end{tabular}
353
354 \section{Find Lock Problems with Booby Trap}
355 \label{sec:Find Lock Problems with Booby Trap}
356
357 A Booby Trap is used in CinGG for setting a trap to catch lock problems that might have been missed. \ It will trap boobies only if compile by adding ``-{}-with-booby'' on the configuration command line. \ \ This is the default if you compile using ./bld.sh from the GIT repository. \ It should not interfere with normal execution.
358 \medskip
359
360 If you have the time and inclination, enable -{}-with-booby and send any trap output that you find. \ Maybe you will catch some boobies and if you do, send a snapshot of any boobies you find.
361 \medskip
362
363 There are 2 potential traps:
364 \begin{itemize}[nosep]
365         \item If you try to unlock a lock when it is not locked
366         \item If you execute a drawing operation without holding the window lock
367 \end{itemize}
368 \medskip
369
370 The trap prints the following in the controlling terminal window:
371 \medskip
372
373 \hspace{2em}BOOBY!hspace{2em}{\textless}backtrace{\textgreater}
374 \medskip
375
376 An example backtrace is below along with a hint below on how to analyze:
377
378 \begin{lstlisting}[numbers=none]
379 /home/cin5/bin/./cin(_Z5boobyv+0x3f) [0x557069fa9b2f] /home/cin5/bin/./cin(_ZN13BC_WindowBase9draw_lineEiiiiP9BC_Pixmap+0x3b)0x557069fb9a9b]
380 /home/cin5/bin/./cin(\_ZN10BC_ListBox11draw_borderEi+0x73)[0x557069f7dc73]
381 /home/cin5/bin/./cin(+0x9707fb) [0x557069f7e7fb]
382 /home/cin5/bin/./cin(\ZN10BC\ListBox16center\selectionEv+0x4e)[0x557069f7f2ae]
383 /home/cin5/bin/plugins/video/sketcher.plugin(_ZN17SketcherCurveList6updateEi+0x1a0)[0x7f1b8002a4c0]
384 /home/cin5/bin/plugins/video/sketcher.plugin(_ZN18SketcherCurveColor17handle_done_eventEi+0x76)[0x7f1b8002a5f6]
385 /home/cin5/bin/./cin(_ZN15BC_DialogThread3runEv+0xd8)[0x557069f6fb78]
386 /home/cin5/bin/./cin(_ZN6Thread10entrypointEPv+0x45)[0x557069fc5995]
387 /usr/lib/libpthread.so.0(+0x7a9d) [0x7f1b91b4ea9d]
388 /usr/lib/libc.so.6(clone+0x43) [0x7f1b90accb23]
389 \end{lstlisting}
390
391 To see which routine is reporting the booby key in:
392 \smallskip
393
394 \hspace{2em}c++filt
395 \smallskip
396
397 And then the 2nd line in the backtrace above:
398 \smallskip
399
400 \hspace{2em}\_ZN13BC\_WindowBase9draw\_lineEiiiiP9BC\_Pixmap
401 \smallskip
402
403 It comes back with the routine as:
404 \smallskip
405
406 \hspace{2em}BC\_WindowBase::draw\_line(int, int, int, int, BC\_Pixmap*)
407 \medskip
408
409 \section{Valgrind Support Level}
410 \label{sec:Valgrind Support Level}
411
412 Valgrind is a memory mis-management detector.  It shows you memory leaks, deallocation errors, mismanaged threads, rogue reads/writes, etc.  Cinelerra-GG memory management is designed to work with Valgrind detection methods.  This assists in developing reliable code.  Use of Valgrind points out problems so that they can be fixed.  For example, when this version of Cinelerra shuts down, it deallocates memory instead of just stopping, thus making memory leak detection possible.
413 \medskip
414
415 The best way to compile and run valgrind is to run the developer static build. This takes 2 steps and you must already have gdb and valgrind installed:
416 \medskip
417
418 \begin{enumerate}[nosep]
419         \item The standard static build:\newline
420                 cd /path/cinelerra-5.1\newline
421                 make clean\newline
422                 ./bld.sh
423         \item run the incremental rebuild for debug objs\newline
424                 CFLAGS=-ggdb make -j8 rebuild\_all
425 \end{enumerate}
426 \medskip
427
428 Now your Cinelerra obj has all of the debug stuff. Next run valgrind as root for the most useful results:
429 \smallskip
430
431 \hspace{2em}cd /path/cinelerra-5.1/cinelerra
432
433 \hspace{2em}valgrind -{}-log-file=/tmp/log -{}-leak-check=full -{}-num-callers=32 ./ci
434 \medskip
435
436 This runs Cinelerra under the control of valgrind, and produces a log file in /tmp which will list information about any leaks, usually clearly identifiable. \ Be sure to Quit out of Cinelerra normally instead of Ctrl-C or a SEGV otherwise the program does not have a chance to cleanup and there will be some false alarms. But it runs very slowly, and is basically single threaded, which means that race conditions may be impossible to catch... like one thread deletes memory that another thread is currently using. But overall it is a big help and if you test any new features, please email the log output. \ A lot of effort when writing the code was put into trying to be sure that all of the object constructors have matching destructors so that the leaks can be identified. There are already several libraries that create predictable memory leaks and valgrind does a good job for most of these.
437 \medskip
438
439 It is impossible to test everything with valgrind because some things are just too big and slow for a practical test. \ Occasionally you can find a leak or an illegal memory access. There are several false alarms that are difficult to avoid {\textquotedbl}Conditional jump{\textquotedbl} messages, and {\textquotedbl}unhandled DW\_OP\_{\textquotedbl}, but anything with the word {\textquotedbl}illegal{\textquotedbl} in the message is important. Memory leaks that originate in Cinelerra are good to find and fix, but are usually not deadly.
440
441 \section{CFLAGS has -Wall}
442 \label{sec:CFLAGS has -Wall}
443 When compiling Cinelerra-GG Infinity a CFLAGS option used is "Wall" where the "W" represents warnings and "all" means all.  This causes the compile to check for simple mistakes that can be detected automatically and issue warnings when the code is questionable.  It can also detect situations where the compiler will generate incorrect code, like type-punned pointer.  By turning on this flag, when new code is vetted for predictable mistakes, the code can be corrected before becoming manifested in the application.
444
445 \section{Prof2 -- A Profiler}
446 \label{sec:Prof2 -- A Profiler}
447
448 Frequently there is a problem with a program running slow and you do not know why. \ You need a thumbnail analysis of where the program is spending most of its time without all of the overwhelming details. \ This is when a Profiler comes in handy.
449 \medskip
450
451 There are many different profilers available -- this particular one does not do anything special and is fairly ordinary in that it just characterizes frequency of execution of various regions in the program. \ However, it has some pretty good strengths as listed next.
452 \medskip
453 \begin{enumerate}[nosep]
454         \item It takes very little or no preconditioning, i.e. setup
455         \item The effect it has on the running program is minimal
456         \item It runs almost at full speed, which is really nice
457         \item It is not particularly thread aware
458         \item Reports where it is executing at intervals of 100 times a second
459 \end{enumerate}
460 \subsection{Setup}
461
462 This profiler works on x86\_64 systems and you must be root to compile and run it. \ Also, you must install your operating system's ``iberty'' -- for example, which would be binutils-devel for Fedora or libiberty-dev for Ubuntu 18.
463 \medskip
464
465 Go to the top level Cinelerra directory.
466
467 Key in: \ \ \ \ cd prof2
468
469 Key in: \ \ \ \ make clean all install
470
471 Later, if you wanttitle to remove this from the system, key in: \ \ \ \ make uninstall
472 \subsection{How to use}
473
474 The program you are profiling should be compiled debuggable with stack frame and symbols enabled.
475 \medskip
476
477 To see help, key in: \ \ prof -h
478 \smallskip
479
480 usage: -h [-o path] [-d] [-e] [-p libpath] [-012] [-u \#] cmd args...
481
482 \hspace{2em}
483 \begin{tabular}{@{}ll}
484         -o & profile output pathname, -=stdout, -{}-=stderr\\
485         -d & debug otitleutput enabled\\
486         -e & child debug output enabled\\
487         -p & specify path for libprofile.so\\
488         -0 & usr+sys cpu timer intervals (sigprof)\\
489         -1 & usr only cpu timer intervals (sigvtalrm)\\
490         -2 & real time timer intervals (sigalrm)\\
491         -u & profile timer interval in usecs\\
492 \end{tabular}
493 \medskip
494
495 To execute the profiler, key in: \ \ 
496 \medskip
497
498 \hspace{2em}prof -o /tmp/prof\_list.txt ./cin
499 \medskip
500
501 where /tmp/prof\_list.txt is the output file and in this case ``cin'' is the Cinelerra binary file. \ The pid of this command will be displayed on the startup window. \ This comes in handy in the use case where there is a lot of initial load and possible configuration setup inside of Cinelerra and you want to profile plugins and not necessarily all of the setup steps. \ Then you can use the following command in another window to continue running Cinelerra and obtain the more useful information:
502 \medskip
503
504 \hspace{2em}kill -USR1 pid
505 \medskip
506
507 Running this command refreshes the memory maps used for profiling. \ When you are profiling a plugin, you want to run this AFTER the plugin loads.
508 \medskip
509
510 \subsection{Results}
511
512 There are 3 sections in the resulting output file of this stochastic quick analysis.
513 \medskip
514
515 \begin{enumerate}[nosep]
516         \item The first section is a histogram of the timer intervals of that sample set. \ Each function occupies a region of addresses. \ One hundred times a second, the profiler samples the program address in the region of execution.
517         \item In the second section, there is another histogram of the cumulative frequency of all things in the call stack and this should point out who is the culprit. \ For example, a codec calls a bunch of subroutines, the cost of the subroutines is accumulated to the codec parent caller. \ This makes the actual cpu user much more apparent.
518         \item The last section is for the library spaces. \ Each library occupies a region and the profiler adds up the time spent in each of the libraries by frequency.
519 \end{enumerate}
520 \smallskip
521
522 On the very bottom is a 1 line summary which shows you if there is a bad guy and who it is.
523 \medskip
524
525 \subsection{Sample output}
526
527 \medskip
528
529 %\begin{lstlisting}[numbers=none] %\textwidth
530
531 ---- profile start ----\\
532 1020 ticks 43 modules 81412 syms\\
533 \begin{tabular}{@{}rrp{\linewidth-6em}}
534  0.010s & 0.1\% & Autos::copy(long, long, FileXML*, int, int) /mnt0/build5/cinelerra-5.1/bin/cin\\
535  0.010s & 0.1\% & BinFolders::copy\_from(BinFolders*) /mnt0/build5/cinelerra-5.1/bin/cin\\
536  0.010s & 0.1\% & cstrdup(char const*)     /mnt0/build5/cinelerra-5.1/bin/cin\\
537  0.010s & 0.1\% & XMLBuffer::encode\_data(char*, char const*, int) /mnt0/build5/cinelerra-5.1/bin/cin\\
538  0.010s & 0.1\% & XMLBuffer::encoded\_length(char const*, int) /mnt0/build5/cinelerra-5.1/bin/cin\\
539  0.010s & 0.1\% & PluginClient::send\_configure\_change() /mnt0/build5/cinelerra-5.1/bin/cin\\
540  0.010s & 0.1\% & UndoVersion::scan\_lines(UndoHashTable*, char*, char*) /mnt0/.../cin\\
541  0.010s & 0.1\% & UndoStackItem::set\_data(char*) /mnt0/build5/cinelerra-5.1/bin/cin\\
542  0.010s & 0.1\% & UndoStack::load(\_IO\_FILE*) /mnt0/build5/cinelerra-5.1/bin/cin\\
543  0.010s & 0.1\% & BC\_Bitmap::cur\_bfr()     /mnt0/build5/cinelerra-5.1/bin/cin\\
544  0.010s & 0.1\% & YUV::init\_tables(int, int*, int*, int*, int*, int*, int*, int*, int*, int*, int*, int*, int*, int*, int*) /mnt0/build5/cinelerra-5.1/bin/cin\\
545 \end{tabular}\\
546 ...\\
547 ...\\
548 ---- profile calls ----\\
549 \begin{tabular}{@{}rrl}
550  0.010s & 0.1\% & AutoConf::save\_xml(FileXML*)   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
551  0.010s & 0.1\% & Automation::copy(long, long, FileXML*, int, int)   1.0 /mnt0/.../cin\\
552  0.010s & 0.1\% & AWindow::run()             1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
553  0.010s & 0.1\% & Canvas::stop\_single()      1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
554  0.010s & 0.1\% & ColorPicker::new\_gui()     1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
555  0.010s & 0.1\% & ColorWindow::create\_objects()   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
556  0.010s & 0.1\% & PaletteWheel::draw(float, float)   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
557  0.010s & 0.1\% & PaletteHex::update()       1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
558  0.010s & 0.1\% & CWindowGUI::draw\_status(int)   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
559  0.010s & \textbf{0.1\%} & CWindowCanvas::status\_event()   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
560 \end{tabular}\\
561 ...\\
562 ...\\
563 \begin{tabular}{@{}rrl}
564  0.990s & \textbf{9.7\%} & BC\_Xfer::xfer\_slices(int)   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
565  1.880s & \textbf{18.4\%} & DirectUnit::process\_package(LoadPackage*)   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
566  1.880s & \textbf{18.4\%} & DirectUnit::rgba8888()     1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
567  3.910s & \textbf{38.3\%} & \_\_init\_array\_end           1.1 /mnt0/build5/cinelerra-5.1/bin/cin\\
568  5.450s & \textbf{53.4\%} & LoadClient::run()          1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
569  7.890s & \textbf{77.4\%} & Thread::entrypoint(void*)   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
570  7.890s & \textbf{77.4\%} & start\_thread               1.0 /lib64/libpthread-2.28.so\\
571 \end{tabular}\\
572 ----\\
573 ----\\
574 \begin{tabular}{@{}rrl}
575  0.010s & 0.1\%/  0.0\% & /lib64/libm-2.28.so\\
576  0.010s & 0.1\%/  0.0\% & /lib64/libexpat.so.1.6.8\\
577  0.020s & 0.2\%/  0.1\% & /lib64/libXext.so.6.4.0\\
578  0.020s & 0.2\%/  0.1\% & /lib64/libXft.so.2.3.2\\
579  0.020s & 0.2\%/  0.1\% & /lib64/libxcb.so.1.1.0\\
580  0.040s & 0.4\%/  0.2\% & /lib64/ld-2.28.so\\
581  0.050s & 0.5\%/  0.2\% & /lib64/libpng16.so.16.34.0\\
582  0.130s & 1.3\%/  0.6\% & /lib64/libX11.so.6.3.0\\
583  0.180s & 1.8\%/  0.8\% & /lib64/libz.so.1.2.11\\
584  0.200s & 2.0\%/  0.9\% & /lib64/libfontconfig.so.1.12.0\\
585  0.380s & 3.7\%/  1.8\% & /lib64/libpthread-2.28.so\\
586  1.660s & 16.3\%/ 7.7\% & /lib64/libc-2.28.so\\
587  7.480s & 73.3\%/34.7\% & /mnt0/build5/cinelerra-5.1/bin/cin\\
588 \end{tabular}\\
589
590 \textbf{10.200t 0.001u+0.000s 21.566r  47.3\%}
591 \\
592 ---- profile end ----
593 %\end{lstlisting}
594 \medskip
595
596 The summary line above in Bold represents the User time, System time, Real time and the percentage is how much Timer time elapsed over Real time so in this case the measurement covers 47.3\% of time. 
597 \medskip
598
599 So why use a Profiler? \ Because it is the ``ls'' for executable functions!!