OLD | NEW |
1 # Doxyfile 1.7.4 | 1 # Doxyfile 1.7.4 |
2 | 2 |
3 # This file describes the settings to be used by the documentation system | 3 # This file describes the settings to be used by the documentation system |
4 # doxygen (www.doxygen.org) for a project. | 4 # doxygen (www.doxygen.org) for a project. |
5 # | 5 # |
6 # All text after a hash (#) is considered a comment and will be ignored. | 6 # All text after a hash (#) is considered a comment and will be ignored. |
7 # The format is: | 7 # The format is: |
8 # TAG = value [value, ...] | 8 # TAG = value [value, ...] |
9 # For lists items can also be appended using: | 9 # For lists items can also be appended using: |
10 # TAG += value [value, ...] | 10 # TAG += value [value, ...] |
(...skipping 19 matching lines...) Expand all Loading... |
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number. | 30 # The PROJECT_NUMBER tag can be used to enter a project or revision number. |
31 # This could be handy for archiving the generated documentation or | 31 # This could be handy for archiving the generated documentation or |
32 # if some version control system is used. | 32 # if some version control system is used. |
33 | 33 |
34 PROJECT_NUMBER = @VERSION@ | 34 PROJECT_NUMBER = @VERSION@ |
35 | 35 |
36 # Using the PROJECT_BRIEF tag one can provide an optional one line description | 36 # Using the PROJECT_BRIEF tag one can provide an optional one line description |
37 # for a project that appears at the top of each page and should give viewer | 37 # for a project that appears at the top of each page and should give viewer |
38 # a quick idea about the purpose of the project. Keep the description short. | 38 # a quick idea about the purpose of the project. Keep the description short. |
39 | 39 |
40 PROJECT_BRIEF = "IETF low-delay audio codec: API and operations manual" | 40 PROJECT_BRIEF = "Opus audio codec (RFC 6716): API and operations manual
" |
41 | 41 |
42 # With the PROJECT_LOGO tag one can specify an logo or icon that is | 42 # With the PROJECT_LOGO tag one can specify an logo or icon that is |
43 # included in the documentation. The maximum height of the logo should not | 43 # included in the documentation. The maximum height of the logo should not |
44 # exceed 55 pixels and the maximum width should not exceed 200 pixels. | 44 # exceed 55 pixels and the maximum width should not exceed 200 pixels. |
45 # Doxygen will copy the logo to the output directory. | 45 # Doxygen will copy the logo to the output directory. |
46 | 46 |
47 PROJECT_LOGO = | 47 PROJECT_LOGO = |
48 | 48 |
49 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) | 49 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) |
50 # base path where the generated documentation will be put. | 50 # base path where the generated documentation will be put. |
(...skipping 1664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1715 # generate a legend page explaining the meaning of the various boxes and | 1715 # generate a legend page explaining the meaning of the various boxes and |
1716 # arrows in the dot generated graphs. | 1716 # arrows in the dot generated graphs. |
1717 | 1717 |
1718 GENERATE_LEGEND = YES | 1718 GENERATE_LEGEND = YES |
1719 | 1719 |
1720 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will | 1720 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will |
1721 # remove the intermediate dot files that are used to generate | 1721 # remove the intermediate dot files that are used to generate |
1722 # the various graphs. | 1722 # the various graphs. |
1723 | 1723 |
1724 DOT_CLEANUP = YES | 1724 DOT_CLEANUP = YES |
OLD | NEW |