Changes in / [fb7db6b:fa7c03a]
- Files:
-
- 1 added
- 5 deleted
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
rfb7db6b rfa7c03a 1 1 WAFCMD=python waf 2 WAFURL=https://waf.io/waf-1.8.223 2 4 3 SOX=sox … … 13 12 14 13 getwaf: 15 @( which wget > /dev/null && wget -qO waf $(WAFURL) ) || ( which curl > /dev/null && curl $(WAFURL) > waf )14 curl https://waf.io/waf-1.8.20 > waf 16 15 @chmod +x waf 17 16 -
appveyor.yml
rfb7db6b rfa7c03a 50 50 51 51 before_build: 52 - curl -fsS -o waf https://waf.io/waf-1.8.2 252 - curl -fsS -o waf https://waf.io/waf-1.8.20 53 53 - curl -fsS -o waf.bat https://raw.githubusercontent.com/waf-project/waf/master/utils/waf.bat 54 54 -
doc/full.cfg
rfb7db6b rfa7c03a 1 # Doxyfile 1.8. 81 # Doxyfile 1.8.5 2 2 3 3 # This file describes the settings to be used by the documentation system … … 71 71 CREATE_SUBDIRS = NO 72 72 73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII74 # characters to appear in the names of generated files. If set to NO, non-ASCII75 # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode76 # U+3044.77 # The default value is: NO.78 79 ALLOW_UNICODE_NAMES = NO80 81 73 # The OUTPUT_LANGUAGE tag is used to specify the language in which all 82 74 # documentation generated by doxygen is written. Doxygen will use this 83 75 # information to generate all constant output in the proper language. 84 # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, 85 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), 86 # Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, 87 # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), 88 # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, 89 # Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, 90 # Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, 91 # Ukrainian and Vietnamese. 76 # Possible values are: Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese- 77 # Traditional, Croatian, Czech, Danish, Dutch, English, Esperanto, Farsi, 78 # Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en, 79 # Korean, Korean-en, Latvian, Norwegian, Macedonian, Persian, Polish, 80 # Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, 81 # Turkish, Ukrainian and Vietnamese. 92 82 # The default value is: English. 93 83 … … 270 260 # using this tag. The format is ext=language, where ext is a file extension, and 271 261 # language is one of the parsers supported by doxygen: IDL, Java, Javascript, 272 # C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: 273 # FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: 274 # Fortran. In the later case the parser tries to guess whether the code is fixed 275 # or free formatted code, this is the default for Fortran type files), VHDL. For 276 # instance to make doxygen treat .inc files as Fortran files (default is PHP), 277 # and .f files as C (default is Fortran), use: inc=Fortran f=C. 262 # C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make 263 # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C 264 # (default is Fortran), use: inc=Fortran f=C. 278 265 # 279 266 # Note For files without extension you can use no_extension as a placeholder. … … 514 501 SHOW_INCLUDE_FILES = YES 515 502 516 # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each517 # grouped member an include statement to the documentation, telling the reader518 # which file to include in order to use the member.519 # The default value is: NO.520 521 SHOW_GROUPED_MEMB_INC = NO522 523 503 # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include 524 504 # files with double quotes in the documentation rather than with sharp brackets. … … 542 522 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief 543 523 # descriptions of file, namespace and class members alphabetically by member 544 # name. If set to NO the members will appear in declaration order. Note that 545 # this will also influence the order of the classes in the class list. 524 # name. If set to NO the members will appear in declaration order. 546 525 # The default value is: NO. 547 526 … … 681 660 # For LaTeX the style of the bibliography can be controlled using 682 661 # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the 683 # search path. See also \cite for info how to create references. 662 # search path. Do not use file names with spaces, bibtex cannot handle them. See 663 # also \cite for info how to create references. 684 664 685 665 CITE_BIB_FILES = … … 979 959 980 960 VERBATIM_HEADERS = YES 981 982 # If the CLANG_ASSISTED_PARSING tag is set to YES, then doxygen will use the983 # clang parser (see: http://clang.llvm.org/) for more accurate parsing at the984 # cost of reduced performance. This can be particularly helpful with template985 # rich C++ code for which doxygen's built-in parser lacks the necessary type986 # information.987 # Note: The availability of this option depends on whether or not doxygen was988 # compiled with the --with-libclang option.989 # The default value is: NO.990 991 CLANG_ASSISTED_PARSING = NO992 993 # If clang assisted parsing is enabled you can provide the compiler with command994 # line options that you would normally use when invoking the compiler. Note that995 # the include paths will already be set by doxygen for the files and directories996 # specified with INPUT and INCLUDE_PATH.997 # This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.998 999 CLANG_OPTIONS =1000 961 1001 962 #--------------------------------------------------------------------------- … … 1091 1052 HTML_STYLESHEET = 1092 1053 1093 # The HTML_EXTRA_STYLESHEET tag can be used to specify a dditional user-defined1094 # cascading style sheets that areincluded after the standard style sheets1054 # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user- 1055 # defined cascading style sheet that is included after the standard style sheets 1095 1056 # created by doxygen. Using this option one can overrule certain style aspects. 1096 1057 # This is preferred over using HTML_STYLESHEET since it does not replace the 1097 1058 # standard style sheet and is therefor more robust against future updates. 1098 # Doxygen will copy the style sheet files to the output directory. 1099 # Note: The order of the extra stylesheet files is of importance (e.g. the last 1100 # stylesheet in the list overrules the setting of the previous ones in the 1101 # list). For an example see the documentation. 1059 # Doxygen will copy the style sheet file to the output directory. For an example 1060 # see the documentation. 1102 1061 # This tag requires that the tag GENERATE_HTML is set to YES. 1103 1062 … … 1264 1223 1265 1224 # The BINARY_TOC flag controls whether a binary table of contents is generated ( 1266 # YES) or a normal table of contents ( NO) in the .chm file. Furthermore it 1267 # enables the Previous and Next buttons. 1225 # YES) or a normal table of contents ( NO) in the .chm file. 1268 1226 # The default value is: NO. 1269 1227 # This tag requires that the tag GENERATE_HTMLHELP is set to YES. … … 1505 1463 # When the SERVER_BASED_SEARCH tag is enabled the search engine will be 1506 1464 # implemented using a web server instead of a web client using Javascript. There 1507 # are two flavo rs of web server based searching depending on the EXTERNAL_SEARCH1508 # setting. When disabled, doxygen will generate a PHP script for searching and1509 # an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing1510 # and searching needs to be provided by external tools. See the section1511 # "External Indexing and Searching" for details.1465 # are two flavours of web server based searching depending on the 1466 # EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for 1467 # searching and an index file used by the script. When EXTERNAL_SEARCH is 1468 # enabled the indexing and searching needs to be provided by external tools. See 1469 # the section "External Indexing and Searching" for details. 1512 1470 # The default value is: NO. 1513 1471 # This tag requires that the tag SEARCHENGINE is set to YES. … … 1637 1595 # Note: Only use a user-defined header if you know what you are doing! The 1638 1596 # following commands have a special meaning inside the header: $title, 1639 # $datetime, $date, $doxygenversion, $projectname, $projectnumber ,1640 # $projectbrief, $projectlogo. Doxygen will replace $title with the empy string,1641 # for the replacement values of the other commands the user is refered to1642 # HTML_HEADER.1597 # $datetime, $date, $doxygenversion, $projectname, $projectnumber. Doxygen will 1598 # replace them by respectively the title of the page, the current date and time, 1599 # only the current date, the version number of doxygen, the project name (see 1600 # PROJECT_NAME), or the project number (see PROJECT_NUMBER). 1643 1601 # This tag requires that the tag GENERATE_LATEX is set to YES. 1644 1602 … … 1647 1605 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the 1648 1606 # generated LaTeX document. The footer should contain everything after the last 1649 # chapter. If it is left blank doxygen will generate a standard footer. See 1650 # LATEX_HEADER for more information on how to generate a default footer and what 1651 # special commands can be used inside the footer. 1607 # chapter. If it is left blank doxygen will generate a standard footer. 1652 1608 # 1653 1609 # Note: Only use a user-defined footer if you know what you are doing! … … 1673 1629 PDF_HYPERLINKS = YES 1674 1630 1675 # If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate1631 # If the LATEX_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate 1676 1632 # the PDF file directly from the LaTeX files. Set this option to YES to get a 1677 1633 # higher quality PDF documentation. … … 1799 1755 MAN_EXTENSION = .3 1800 1756 1801 # The MAN_SUBDIR tag determines the name of the directory created within1802 # MAN_OUTPUT in which the man pages are placed. If defaults to man followed by1803 # MAN_EXTENSION with the initial . removed.1804 # This tag requires that the tag GENERATE_MAN is set to YES.1805 1806 MAN_SUBDIR =1807 1808 1757 # If the MAN_LINKS tag is set to YES and doxygen generates man output, then it 1809 1758 # will generate one additional man file for each entity documented in the real … … 1833 1782 XML_OUTPUT = xml 1834 1783 1784 # The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a 1785 # validating XML parser to check the syntax of the XML files. 1786 # This tag requires that the tag GENERATE_XML is set to YES. 1787 1788 XML_SCHEMA = 1789 1790 # The XML_DTD tag can be used to specify a XML DTD, which can be used by a 1791 # validating XML parser to check the syntax of the XML files. 1792 # This tag requires that the tag GENERATE_XML is set to YES. 1793 1794 XML_DTD = 1795 1835 1796 # If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program 1836 1797 # listings (including syntax highlighting and cross-referencing information) to … … 1859 1820 1860 1821 DOCBOOK_OUTPUT = docbook 1861 1862 # If the DOCBOOK_PROGRAMLISTING tag is set to YES doxygen will include the1863 # program listings (including syntax highlighting and cross-referencing1864 # information) to the DOCBOOK output. Note that enabling this will significantly1865 # increase the size of the DOCBOOK output.1866 # The default value is: NO.1867 # This tag requires that the tag GENERATE_DOCBOOK is set to YES.1868 1869 DOCBOOK_PROGRAMLISTING = NO1870 1822 1871 1823 #--------------------------------------------------------------------------- … … 1988 1940 1989 1941 # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will 1990 # remove all ref erences to function-like macros that are alone on a line, have1991 # a n all uppercase name, and do not end with a semicolon. Such function macros1992 # aretypically used for boiler-plate code, and will confuse the parser if not1942 # remove all refrences to function-like macros that are alone on a line, have an 1943 # all uppercase name, and do not end with a semicolon. Such function macros are 1944 # typically used for boiler-plate code, and will confuse the parser if not 1993 1945 # removed. 1994 1946 # The default value is: YES. … … 2010 1962 # section "Linking to external documentation" for more information about the use 2011 1963 # of tag files. 2012 # Note: Each tag file must have a unique name (where the name does NOT include1964 # Note: Each tag file must have an unique name (where the name does NOT include 2013 1965 # the path). If a tag file is not located in the directory in which doxygen is 2014 1966 # run, you must also specify the path to the tagfile here. … … 2070 2022 MSCGEN_PATH = 2071 2023 2072 # You can include diagrams made with dia in doxygen documentation. Doxygen will2073 # then run dia to produce the diagram and insert it in the documentation. The2074 # DIA_PATH tag allows you to specify the directory where the dia binary resides.2075 # If left empty dia is assumed to be found in the default search path.2076 2077 DIA_PATH =2078 2079 2024 # If set to YES, the inheritance and collaboration graphs will hide inheritance 2080 2025 # and usage relations if the target is undocumented or is not a class. … … 2088 2033 # Bell Labs. The other options in this section have no effect if this option is 2089 2034 # set to NO 2090 # The default value is: YES.2035 # The default value is: NO. 2091 2036 2092 2037 HAVE_DOT = NO … … 2102 2047 DOT_NUM_THREADS = 0 2103 2048 2104 # When you want a differently looking font in the dot files that doxygen2049 # When you want a differently looking font n the dot files that doxygen 2105 2050 # generates you can specify the font name using DOT_FONTNAME. You need to make 2106 2051 # sure dot is able to find the font, which can be done by putting it in a … … 2240 2185 # to make the SVG files visible in IE 9+ (other browsers do not have this 2241 2186 # requirement). 2242 # Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, 2243 # png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, 2244 # gif:cairo:gd, gif:gd, gif:gd:gd and svg. 2187 # Possible values are: png, jpg, gif and svg. 2245 2188 # The default value is: png. 2246 2189 # This tag requires that the tag HAVE_DOT is set to YES. … … 2278 2221 2279 2222 MSCFILE_DIRS = 2280 2281 # The DIAFILE_DIRS tag can be used to specify one or more directories that2282 # contain dia files that are included in the documentation (see the \diafile2283 # command).2284 2285 DIAFILE_DIRS =2286 2287 # When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the2288 # path where java can find the plantuml.jar file. If left blank, it is assumed2289 # PlantUML is not used or called during a preprocessing step. Doxygen will2290 # generate a warning when it encounters a \startuml command in this case and2291 # will not generate output for the diagram.2292 # This tag requires that the tag HAVE_DOT is set to YES.2293 2294 PLANTUML_JAR_PATH =2295 2223 2296 2224 # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes -
doc/web.cfg
rfb7db6b rfa7c03a 1 # Doxyfile 1.8. 81 # Doxyfile 1.8.5 2 2 3 3 # This file describes the settings to be used by the documentation system … … 71 71 CREATE_SUBDIRS = NO 72 72 73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII74 # characters to appear in the names of generated files. If set to NO, non-ASCII75 # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode76 # U+3044.77 # The default value is: NO.78 79 ALLOW_UNICODE_NAMES = NO80 81 73 # The OUTPUT_LANGUAGE tag is used to specify the language in which all 82 74 # documentation generated by doxygen is written. Doxygen will use this 83 75 # information to generate all constant output in the proper language. 84 # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, 85 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), 86 # Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, 87 # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), 88 # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, 89 # Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, 90 # Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, 91 # Ukrainian and Vietnamese. 76 # Possible values are: Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese- 77 # Traditional, Croatian, Czech, Danish, Dutch, English, Esperanto, Farsi, 78 # Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en, 79 # Korean, Korean-en, Latvian, Norwegian, Macedonian, Persian, Polish, 80 # Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, 81 # Turkish, Ukrainian and Vietnamese. 92 82 # The default value is: English. 93 83 … … 270 260 # using this tag. The format is ext=language, where ext is a file extension, and 271 261 # language is one of the parsers supported by doxygen: IDL, Java, Javascript, 272 # C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: 273 # FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: 274 # Fortran. In the later case the parser tries to guess whether the code is fixed 275 # or free formatted code, this is the default for Fortran type files), VHDL. For 276 # instance to make doxygen treat .inc files as Fortran files (default is PHP), 277 # and .f files as C (default is Fortran), use: inc=Fortran f=C. 262 # C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make 263 # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C 264 # (default is Fortran), use: inc=Fortran f=C. 278 265 # 279 266 # Note For files without extension you can use no_extension as a placeholder. … … 514 501 SHOW_INCLUDE_FILES = YES 515 502 516 # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each517 # grouped member an include statement to the documentation, telling the reader518 # which file to include in order to use the member.519 # The default value is: NO.520 521 SHOW_GROUPED_MEMB_INC = NO522 523 503 # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include 524 504 # files with double quotes in the documentation rather than with sharp brackets. … … 542 522 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief 543 523 # descriptions of file, namespace and class members alphabetically by member 544 # name. If set to NO the members will appear in declaration order. Note that 545 # this will also influence the order of the classes in the class list. 524 # name. If set to NO the members will appear in declaration order. 546 525 # The default value is: NO. 547 526 … … 681 660 # For LaTeX the style of the bibliography can be controlled using 682 661 # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the 683 # search path. See also \cite for info how to create references. 662 # search path. Do not use file names with spaces, bibtex cannot handle them. See 663 # also \cite for info how to create references. 684 664 685 665 CITE_BIB_FILES = … … 999 979 VERBATIM_HEADERS = YES 1000 980 1001 # If the CLANG_ASSISTED_PARSING tag is set to YES, then doxygen will use the1002 # clang parser (see: http://clang.llvm.org/) for more accurate parsing at the1003 # cost of reduced performance. This can be particularly helpful with template1004 # rich C++ code for which doxygen's built-in parser lacks the necessary type1005 # information.1006 # Note: The availability of this option depends on whether or not doxygen was1007 # compiled with the --with-libclang option.1008 # The default value is: NO.1009 1010 CLANG_ASSISTED_PARSING = NO1011 1012 # If clang assisted parsing is enabled you can provide the compiler with command1013 # line options that you would normally use when invoking the compiler. Note that1014 # the include paths will already be set by doxygen for the files and directories1015 # specified with INPUT and INCLUDE_PATH.1016 # This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.1017 1018 CLANG_OPTIONS =1019 1020 981 #--------------------------------------------------------------------------- 1021 982 # Configuration options related to the alphabetical class index … … 1110 1071 HTML_STYLESHEET = 1111 1072 1112 # The HTML_EXTRA_STYLESHEET tag can be used to specify a dditional user-defined1113 # cascading style sheets that areincluded after the standard style sheets1073 # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user- 1074 # defined cascading style sheet that is included after the standard style sheets 1114 1075 # created by doxygen. Using this option one can overrule certain style aspects. 1115 1076 # This is preferred over using HTML_STYLESHEET since it does not replace the 1116 1077 # standard style sheet and is therefor more robust against future updates. 1117 # Doxygen will copy the style sheet files to the output directory. 1118 # Note: The order of the extra stylesheet files is of importance (e.g. the last 1119 # stylesheet in the list overrules the setting of the previous ones in the 1120 # list). For an example see the documentation. 1078 # Doxygen will copy the style sheet file to the output directory. For an example 1079 # see the documentation. 1121 1080 # This tag requires that the tag GENERATE_HTML is set to YES. 1122 1081 … … 1283 1242 1284 1243 # The BINARY_TOC flag controls whether a binary table of contents is generated ( 1285 # YES) or a normal table of contents ( NO) in the .chm file. Furthermore it 1286 # enables the Previous and Next buttons. 1244 # YES) or a normal table of contents ( NO) in the .chm file. 1287 1245 # The default value is: NO. 1288 1246 # This tag requires that the tag GENERATE_HTMLHELP is set to YES. … … 1524 1482 # When the SERVER_BASED_SEARCH tag is enabled the search engine will be 1525 1483 # implemented using a web server instead of a web client using Javascript. There 1526 # are two flavo rs of web server based searching depending on the EXTERNAL_SEARCH1527 # setting. When disabled, doxygen will generate a PHP script for searching and1528 # an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing1529 # and searching needs to be provided by external tools. See the section1530 # "External Indexing and Searching" for details.1484 # are two flavours of web server based searching depending on the 1485 # EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for 1486 # searching and an index file used by the script. When EXTERNAL_SEARCH is 1487 # enabled the indexing and searching needs to be provided by external tools. See 1488 # the section "External Indexing and Searching" for details. 1531 1489 # The default value is: NO. 1532 1490 # This tag requires that the tag SEARCHENGINE is set to YES. … … 1656 1614 # Note: Only use a user-defined header if you know what you are doing! The 1657 1615 # following commands have a special meaning inside the header: $title, 1658 # $datetime, $date, $doxygenversion, $projectname, $projectnumber ,1659 # $projectbrief, $projectlogo. Doxygen will replace $title with the empy string,1660 # for the replacement values of the other commands the user is refered to1661 # HTML_HEADER.1616 # $datetime, $date, $doxygenversion, $projectname, $projectnumber. Doxygen will 1617 # replace them by respectively the title of the page, the current date and time, 1618 # only the current date, the version number of doxygen, the project name (see 1619 # PROJECT_NAME), or the project number (see PROJECT_NUMBER). 1662 1620 # This tag requires that the tag GENERATE_LATEX is set to YES. 1663 1621 … … 1666 1624 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the 1667 1625 # generated LaTeX document. The footer should contain everything after the last 1668 # chapter. If it is left blank doxygen will generate a standard footer. See 1669 # LATEX_HEADER for more information on how to generate a default footer and what 1670 # special commands can be used inside the footer. 1626 # chapter. If it is left blank doxygen will generate a standard footer. 1671 1627 # 1672 1628 # Note: Only use a user-defined footer if you know what you are doing! … … 1692 1648 PDF_HYPERLINKS = YES 1693 1649 1694 # If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate1650 # If the LATEX_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate 1695 1651 # the PDF file directly from the LaTeX files. Set this option to YES to get a 1696 1652 # higher quality PDF documentation. … … 1818 1774 MAN_EXTENSION = .3 1819 1775 1820 # The MAN_SUBDIR tag determines the name of the directory created within1821 # MAN_OUTPUT in which the man pages are placed. If defaults to man followed by1822 # MAN_EXTENSION with the initial . removed.1823 # This tag requires that the tag GENERATE_MAN is set to YES.1824 1825 MAN_SUBDIR =1826 1827 1776 # If the MAN_LINKS tag is set to YES and doxygen generates man output, then it 1828 1777 # will generate one additional man file for each entity documented in the real … … 1852 1801 XML_OUTPUT = xml 1853 1802 1803 # The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a 1804 # validating XML parser to check the syntax of the XML files. 1805 # This tag requires that the tag GENERATE_XML is set to YES. 1806 1807 XML_SCHEMA = 1808 1809 # The XML_DTD tag can be used to specify a XML DTD, which can be used by a 1810 # validating XML parser to check the syntax of the XML files. 1811 # This tag requires that the tag GENERATE_XML is set to YES. 1812 1813 XML_DTD = 1814 1854 1815 # If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program 1855 1816 # listings (including syntax highlighting and cross-referencing information) to … … 1878 1839 1879 1840 DOCBOOK_OUTPUT = docbook 1880 1881 # If the DOCBOOK_PROGRAMLISTING tag is set to YES doxygen will include the1882 # program listings (including syntax highlighting and cross-referencing1883 # information) to the DOCBOOK output. Note that enabling this will significantly1884 # increase the size of the DOCBOOK output.1885 # The default value is: NO.1886 # This tag requires that the tag GENERATE_DOCBOOK is set to YES.1887 1888 DOCBOOK_PROGRAMLISTING = NO1889 1841 1890 1842 #--------------------------------------------------------------------------- … … 2007 1959 2008 1960 # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will 2009 # remove all ref erences to function-like macros that are alone on a line, have2010 # a n all uppercase name, and do not end with a semicolon. Such function macros2011 # aretypically used for boiler-plate code, and will confuse the parser if not1961 # remove all refrences to function-like macros that are alone on a line, have an 1962 # all uppercase name, and do not end with a semicolon. Such function macros are 1963 # typically used for boiler-plate code, and will confuse the parser if not 2012 1964 # removed. 2013 1965 # The default value is: YES. … … 2029 1981 # section "Linking to external documentation" for more information about the use 2030 1982 # of tag files. 2031 # Note: Each tag file must have a unique name (where the name does NOT include1983 # Note: Each tag file must have an unique name (where the name does NOT include 2032 1984 # the path). If a tag file is not located in the directory in which doxygen is 2033 1985 # run, you must also specify the path to the tagfile here. … … 2089 2041 MSCGEN_PATH = 2090 2042 2091 # You can include diagrams made with dia in doxygen documentation. Doxygen will2092 # then run dia to produce the diagram and insert it in the documentation. The2093 # DIA_PATH tag allows you to specify the directory where the dia binary resides.2094 # If left empty dia is assumed to be found in the default search path.2095 2096 DIA_PATH =2097 2098 2043 # If set to YES, the inheritance and collaboration graphs will hide inheritance 2099 2044 # and usage relations if the target is undocumented or is not a class. … … 2107 2052 # Bell Labs. The other options in this section have no effect if this option is 2108 2053 # set to NO 2109 # The default value is: YES.2054 # The default value is: NO. 2110 2055 2111 2056 HAVE_DOT = NO … … 2121 2066 DOT_NUM_THREADS = 0 2122 2067 2123 # When you want a differently looking font in the dot files that doxygen2068 # When you want a differently looking font n the dot files that doxygen 2124 2069 # generates you can specify the font name using DOT_FONTNAME. You need to make 2125 2070 # sure dot is able to find the font, which can be done by putting it in a … … 2259 2204 # to make the SVG files visible in IE 9+ (other browsers do not have this 2260 2205 # requirement). 2261 # Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, 2262 # png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, 2263 # gif:cairo:gd, gif:gd, gif:gd:gd and svg. 2206 # Possible values are: png, jpg, gif and svg. 2264 2207 # The default value is: png. 2265 2208 # This tag requires that the tag HAVE_DOT is set to YES. … … 2297 2240 2298 2241 MSCFILE_DIRS = 2299 2300 # The DIAFILE_DIRS tag can be used to specify one or more directories that2301 # contain dia files that are included in the documentation (see the \diafile2302 # command).2303 2304 DIAFILE_DIRS =2305 2306 # When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the2307 # path where java can find the plantuml.jar file. If left blank, it is assumed2308 # PlantUML is not used or called during a preprocessing step. Doxygen will2309 # generate a warning when it encounters a \startuml command in this case and2310 # will not generate output for the diagram.2311 # This tag requires that the tag HAVE_DOT is set to YES.2312 2313 PLANTUML_JAR_PATH =2314 2242 2315 2243 # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes -
examples/aubionotes.c
rfb7db6b rfa7c03a 19 19 */ 20 20 21 #define AUBIO_UNSTABLE 1 // for fvec_median 21 22 #include "utils.h" 22 23 #define PROG_HAS_PITCH 1 … … 26 27 #include "parse_args.h" 27 28 28 aubio_notes_t *notes; 29 uint_t lastnote = 0; 29 uint_t median = 6; 30 31 fvec_t *note_buffer; 32 fvec_t *note_buffer2; 33 34 smpl_t curnote = 0.; 35 smpl_t newnote = 0.; 36 uint_t isready = 0; 37 38 aubio_pitch_t *pitch; 39 aubio_onset_t *o; 40 fvec_t *onset; 41 fvec_t *pitch_obuf; 42 43 /** append new note candidate to the note_buffer and return filtered value. we 44 * need to copy the input array as fvec_median destroy its input data.*/ 45 void note_append (fvec_t * note_buffer, smpl_t curnote); 46 uint_t get_note (fvec_t * note_buffer, fvec_t * note_buffer2); 30 47 31 48 void process_block (fvec_t *ibuf, fvec_t *obuf) 32 49 { 33 aubio_notes_do (notes, ibuf, obuf); 34 // did we get a note off? 35 if (obuf->data[2] != 0) { 36 send_noteon(obuf->data[2], 0); 50 smpl_t new_pitch, curlevel; 51 fvec_zeros(obuf); 52 aubio_onset_do(o, ibuf, onset); 53 54 aubio_pitch_do (pitch, ibuf, pitch_obuf); 55 new_pitch = fvec_get_sample(pitch_obuf, 0); 56 if(median){ 57 note_append(note_buffer, new_pitch); 37 58 } 38 // did we get a note on? 39 if (obuf->data[0] != 0) { 40 send_noteon(obuf->data[0], obuf->data[1]); 41 lastnote = (uint_t) floor(obuf->data[0]); 59 60 /* curlevel is negatif or 1 if silence */ 61 curlevel = aubio_level_detection(ibuf, silence_threshold); 62 if (fvec_get_sample(onset, 0)) { 63 /* test for silence */ 64 if (curlevel == 1.) { 65 if (median) isready = 0; 66 /* send note off */ 67 send_noteon(curnote,0); 68 } else { 69 if (median) { 70 isready = 1; 71 } else { 72 /* kill old note */ 73 send_noteon(curnote,0); 74 /* get and send new one */ 75 send_noteon(new_pitch,127+(int)floor(curlevel)); 76 curnote = new_pitch; 77 } 78 } 79 } else { 80 if (median) { 81 if (isready > 0) 82 isready++; 83 if (isready == median) 84 { 85 /* kill old note */ 86 send_noteon(curnote,0); 87 newnote = get_note(note_buffer, note_buffer2); 88 curnote = newnote; 89 /* get and send new one */ 90 if (curnote>45){ 91 send_noteon(curnote,127+(int)floor(curlevel)); 92 } 93 } 94 } // if median 42 95 } 43 96 } … … 46 99 { 47 100 //if (verbose) outmsg("%f\n",pitch_obuf->data[0]); 101 } 102 103 void 104 note_append (fvec_t * note_buffer, smpl_t curnote) 105 { 106 uint_t i = 0; 107 for (i = 0; i < note_buffer->length - 1; i++) { 108 note_buffer->data[i] = note_buffer->data[i + 1]; 109 } 110 note_buffer->data[note_buffer->length - 1] = curnote; 111 return; 112 } 113 114 uint_t 115 get_note (fvec_t * note_buffer, fvec_t * note_buffer2) 116 { 117 uint_t i; 118 for (i = 0; i < note_buffer->length; i++) { 119 note_buffer2->data[i] = note_buffer->data[i]; 120 } 121 return fvec_median (note_buffer2); 48 122 } 49 123 … … 63 137 verbmsg ("tolerance: %f\n", pitch_tolerance); 64 138 65 notes = new_aubio_notes ("default", buffer_size, hop_size, samplerate); 139 o = new_aubio_onset (onset_method, buffer_size, hop_size, samplerate); 140 if (onset_threshold != 0.) aubio_onset_set_threshold (o, onset_threshold); 141 onset = new_fvec (1); 142 143 pitch = new_aubio_pitch (pitch_method, buffer_size * 4, hop_size, samplerate); 144 if (pitch_tolerance != 0.) aubio_pitch_set_tolerance (pitch, pitch_tolerance); 145 pitch_obuf = new_fvec (1); 146 147 if (median) { 148 note_buffer = new_fvec (median); 149 note_buffer2 = new_fvec (median); 150 } 66 151 67 152 examples_common_process((aubio_process_func_t)process_block, process_print); 68 153 69 154 // send a last note off 70 send_noteon ( lastnote, 0);155 send_noteon (curnote, 0); 71 156 72 del_aubio_notes (notes); 157 del_aubio_pitch (pitch); 158 if (median) { 159 del_fvec (note_buffer); 160 del_fvec (note_buffer2); 161 } 162 del_fvec (pitch_obuf); 73 163 74 164 examples_common_del(); -
examples/wscript_build
rfb7db6b rfa7c03a 1 1 # vim:set syntax=python: 2 3 import os.path4 2 5 3 uselib = ['aubio'] … … 19 17 # loop over all *.c filenames in examples to build them all 20 18 for source_file in programs_source: 21 target = os.path.basename(os.path.splitext(str(source_file))[0])22 19 bld(features = 'c cprogram', 23 20 source = source_file, 24 target = target,21 target = str(source_file).split('.')[0], 25 22 includes = includes, 26 23 use = uselib + ['utilsio'], -
python/README
rfb7db6b rfa7c03a 57 57 And to try out the demos: 58 58 59 $ ./demos/demo_source. py/path/to/sound/sample.wav59 $ ./demos/demo_source.wav /path/to/sound/sample.wav 60 60 61 61 You need to install additional modules to run some of the demos. For -
python/lib/gen_code.py
rfb7db6b rfa7c03a 75 75 'onset': '1', 76 76 'pitch': '1', 77 'notes': '3',78 77 'wavetable': 'self->hop_size', 79 78 'sampler': 'self->hop_size', … … 83 82 'filterbank': 'self->n_filters', 84 83 'tss': 'self->hop_size', 85 }86 87 objinputsize = {88 'mfcc': 'self->buf_size / 2 + 1',89 'notes': 'self->hop_size',90 'onset': 'self->hop_size',91 'pitch': 'self->hop_size',92 'sampler': 'self->hop_size',93 'specdesc': 'self->buf_size / 2 + 1',94 'tempo': 'self->hop_size',95 'wavetable': 'self->hop_size',96 84 } 97 85 … … 389 377 return NULL; 390 378 }}""".format(input_param, pytoaubio = pytoaubio_fn[input_param['type']]) 391 if self.shortname in objinputsize: 392 out += """ 393 394 if (self->{0[name]}.length != {expected_size}) {{ 395 PyErr_Format (PyExc_ValueError, 396 "input size of {shortname} should be %d, not %d", 397 {expected_size}, self->{0[name]}.length); 398 return NULL; 399 }}""".format(input_param, expected_size = objinputsize[self.shortname], **self.__dict__) 400 else: 401 out += """ 379 out += """ 402 380 403 381 // TODO: check input sizes""" -
python/tests/test_mfcc.py
rfb7db6b rfa7c03a 57 57 mfcc(samplerate = -1) 58 58 59 def test_wrong_input_size(self):60 m = mfcc(buf_size = 1024)61 with self.assertRaises(ValueError):62 m(cvec(512))63 64 59 class aubio_mfcc_compute(TestCase): 65 60 -
python/tests/test_specdesc.py
rfb7db6b rfa7c03a 127 127 def test_spread(self): 128 128 o = specdesc("spread") 129 c = cvec( 1024)129 c = cvec(2048) 130 130 ramp = arange(c.length, dtype=float_type) 131 131 assert_equal( 0., o(c)) -
scripts/setenv_local.sh
rfb7db6b rfa7c03a 13 13 AUBIODIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )" 14 14 AUBIOLIB=$AUBIODIR/build/src 15 AUBIOPYTHON=$AUBIODIR/ build/lib.$PYTHON_PLATFORM15 AUBIOPYTHON=$AUBIODIR/python/build/lib.$PYTHON_PLATFORM 16 16 17 17 if [ "$(dirname $PWD)" == "scripts" ]; then -
src/aubio.h
rfb7db6b rfa7c03a 183 183 #include "onset/onset.h" 184 184 #include "tempo/tempo.h" 185 #include "notes/notes.h"186 185 #include "io/source.h" 187 186 #include "io/sink.h" -
src/fmat.h
rfb7db6b rfa7c03a 157 157 void fmat_copy(const fmat_t *s, fmat_t *t); 158 158 159 /* *compute the product of a matrix by a vector159 /* compute the product of a matrix by a vector 160 160 161 161 \param s matrix to compute product with -
src/io/source_avcodec.c
rfb7db6b rfa7c03a 73 73 void aubio_source_avcodec_readframe(aubio_source_avcodec_t *s, uint_t * read_samples); 74 74 75 uint_t aubio_source_avcodec_has_network_url(aubio_source_avcodec_t *s);76 77 uint_t aubio_source_avcodec_has_network_url(aubio_source_avcodec_t *s) {78 char proto[20], authorization[256], hostname[128], uripath[256];79 int proto_size = 20, authorization_size = 256, hostname_size = 128,80 *port_ptr = 0, path_size = 256;81 av_url_split(proto, proto_size, authorization, authorization_size, hostname,82 hostname_size, port_ptr, uripath, path_size, s->path);83 if (strlen(proto)) {84 return 1;85 }86 return 0;87 }88 89 90 75 aubio_source_avcodec_t * new_aubio_source_avcodec(const char_t * path, uint_t samplerate, uint_t hop_size) { 91 76 aubio_source_avcodec_t * s = AUBIO_NEW(aubio_source_avcodec_t); … … 114 99 av_register_all(); 115 100 116 if (aubio_source_avcodec_has_network_url(s)) { 117 avformat_network_init(); 118 } 101 // if path[0] != '/' 102 //avformat_network_init(); 119 103 120 104 // try opening the file and get some info about it -
src/mathutils.c
rfb7db6b rfa7c03a 565 565 566 566 smpl_t 567 aubio_level_detection ( constfvec_t * o, smpl_t threshold)567 aubio_level_detection (fvec_t * o, smpl_t threshold) 568 568 { 569 569 smpl_t db_spl = aubio_db_spl (o); -
src/musicutils.h
rfb7db6b rfa7c03a 155 155 156 156 */ 157 smpl_t aubio_level_detection ( constfvec_t * v, smpl_t threshold);157 smpl_t aubio_level_detection (fvec_t * v, smpl_t threshold); 158 158 159 159 #ifdef __cplusplus -
src/tempo/tempo.h
rfb7db6b rfa7c03a 161 161 smpl_t aubio_tempo_get_confidence(aubio_tempo_t * o); 162 162 163 /* *set number of tatum per beat163 /* set number of tatum per beat 164 164 165 165 \param o beat tracking object … … 169 169 uint_t aubio_tempo_set_tatum_signature(aubio_tempo_t *o, uint_t signature); 170 170 171 /* *check whether a tatum was detected in the current frame171 /* check whether a tatum was detected in the current frame 172 172 173 173 \param o beat tracking object … … 178 178 uint_t aubio_tempo_was_tatum(aubio_tempo_t *o); 179 179 180 /* *get position of last_tatum, in samples180 /* get position of last_tatum, in samples 181 181 182 182 \param o beat tracking object -
tests/wscript_build
rfb7db6b rfa7c03a 1 1 # vim:set syntax=python: 2 3 import os.path4 2 5 3 uselib = ['aubio'] … … 9 7 10 8 for source_file in programs_sources: 11 target = os.path.basename(os.path.splitext(str(source_file))[0])12 9 bld(features = 'c cprogram test', 13 10 source = source_file, 14 target = target,11 target = str(source_file).split('.')[0], 15 12 includes = includes, 16 13 use = uselib, -
wscript
rfb7db6b rfa7c03a 10 10 # have Python installed, you do *not* need to install anything to build aubio. 11 11 # For more info about waf, see http://code.google.com/p/waf/ . 12 13 import sys14 12 15 13 APPNAME = 'aubio' … … 114 112 ctx.check(header_name='unistd.h', mandatory = False) 115 113 116 target_platform = sys.platform114 target_platform = Options.platform 117 115 if ctx.options.target_platform: 118 116 target_platform = ctx.options.target_platform
Note: See TracChangeset
for help on using the changeset viewer.