| OLD | NEW |
| 1 ## | 1 ## |
| 2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
| 3 ## | 3 ## |
| 4 ## Use of this source code is governed by a BSD-style license | 4 ## Use of this source code is governed by a BSD-style license |
| 5 ## that can be found in the LICENSE file in the root of the source | 5 ## that can be found in the LICENSE file in the root of the source |
| 6 ## tree. An additional intellectual property rights grant can be found | 6 ## tree. An additional intellectual property rights grant can be found |
| 7 ## in the file PATENTS. All contributing project authors may | 7 ## in the file PATENTS. All contributing project authors may |
| 8 ## be found in the AUTHORS file in the root of the source tree. | 8 ## be found in the AUTHORS file in the root of the source tree. |
| 9 ## | 9 ## |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 # follow. The default is UTF-8 which is also the encoding used for all text befo
re | 29 # follow. The default is UTF-8 which is also the encoding used for all text befo
re |
| 30 # the first occurrence of this tag. Doxygen uses libiconv (or the iconv built in
to | 30 # the first occurrence of this tag. Doxygen uses libiconv (or the iconv built in
to |
| 31 # libc) for the transcoding. See http://www.gnu.org/software/libiconv for the li
st of | 31 # libc) for the transcoding. See http://www.gnu.org/software/libiconv for the li
st of |
| 32 # possible encodings. | 32 # possible encodings. |
| 33 | 33 |
| 34 DOXYFILE_ENCODING = UTF-8 | 34 DOXYFILE_ENCODING = UTF-8 |
| 35 | 35 |
| 36 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded | 36 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded |
| 37 # by quotes) that should identify the project. | 37 # by quotes) that should identify the project. |
| 38 | 38 |
| 39 PROJECT_NAME = "WebM VP8 Codec SDK" | 39 PROJECT_NAME = "WebM Codec SDK" |
| 40 | 40 |
| 41 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) | 41 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) |
| 42 # base path where the generated documentation will be put. | 42 # base path where the generated documentation will be put. |
| 43 # If a relative path is entered, it will be relative to the location | 43 # If a relative path is entered, it will be relative to the location |
| 44 # where doxygen was started. If left blank the current directory will be used. | 44 # where doxygen was started. If left blank the current directory will be used. |
| 45 | 45 |
| 46 OUTPUT_DIRECTORY = docs | 46 OUTPUT_DIRECTORY = docs |
| 47 | 47 |
| 48 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create | 48 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create |
| 49 # 4096 sub-directories (in 2 levels) under the output directory of each output | 49 # 4096 sub-directories (in 2 levels) under the output directory of each output |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 # command in the documentation regardless of this setting. | 408 # command in the documentation regardless of this setting. |
| 409 | 409 |
| 410 MAX_INITIALIZER_LINES = 30 | 410 MAX_INITIALIZER_LINES = 30 |
| 411 | 411 |
| 412 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated | 412 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated |
| 413 # at the bottom of the documentation of classes and structs. If set to YES the | 413 # at the bottom of the documentation of classes and structs. If set to YES the |
| 414 # list will mention the files that were used to generate the documentation. | 414 # list will mention the files that were used to generate the documentation. |
| 415 | 415 |
| 416 SHOW_USED_FILES = YES | 416 SHOW_USED_FILES = YES |
| 417 | 417 |
| 418 # If the sources in your project are distributed over multiple directories | |
| 419 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy | |
| 420 # in the documentation. The default is NO. | |
| 421 | |
| 422 SHOW_DIRECTORIES = NO | |
| 423 | |
| 424 # The FILE_VERSION_FILTER tag can be used to specify a program or script that | 418 # The FILE_VERSION_FILTER tag can be used to specify a program or script that |
| 425 # doxygen should invoke to get the current version for each file (typically from
the | 419 # doxygen should invoke to get the current version for each file (typically from
the |
| 426 # version control system). Doxygen will invoke the program by executing (via | 420 # version control system). Doxygen will invoke the program by executing (via |
| 427 # popen()) the command <command> <input-file>, where <command> is the value of | 421 # popen()) the command <command> <input-file>, where <command> is the value of |
| 428 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file | 422 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file |
| 429 # provided by doxygen. Whatever the program writes to standard output | 423 # provided by doxygen. Whatever the program writes to standard output |
| 430 # is used as the file version. See the manual for examples. | 424 # is used as the file version. See the manual for examples. |
| 431 | 425 |
| 432 FILE_VERSION_FILTER = | 426 FILE_VERSION_FILTER = |
| 433 | 427 |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 | 702 |
| 709 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading | 703 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading |
| 710 # style sheet that is used by each HTML page. It can be used to | 704 # style sheet that is used by each HTML page. It can be used to |
| 711 # fine-tune the look of the HTML output. If the tag is left blank doxygen | 705 # fine-tune the look of the HTML output. If the tag is left blank doxygen |
| 712 # will generate a default style sheet. Note that doxygen will try to copy | 706 # will generate a default style sheet. Note that doxygen will try to copy |
| 713 # the style sheet file to the HTML output directory, so don't put your own | 707 # the style sheet file to the HTML output directory, so don't put your own |
| 714 # stylesheet in the HTML output directory as well, or it will be erased! | 708 # stylesheet in the HTML output directory as well, or it will be erased! |
| 715 | 709 |
| 716 HTML_STYLESHEET = | 710 HTML_STYLESHEET = |
| 717 | 711 |
| 718 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, | |
| 719 # files or namespaces will be aligned in HTML using tables. If set to | |
| 720 # NO a bullet list will be used. | |
| 721 | |
| 722 HTML_ALIGN_MEMBERS = YES | |
| 723 | |
| 724 # If the GENERATE_HTMLHELP tag is set to YES, additional index files | 712 # If the GENERATE_HTMLHELP tag is set to YES, additional index files |
| 725 # will be generated that can be used as input for tools like the | 713 # will be generated that can be used as input for tools like the |
| 726 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) | 714 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) |
| 727 # of the generated HTML documentation. | 715 # of the generated HTML documentation. |
| 728 | 716 |
| 729 GENERATE_HTMLHELP = NO | 717 GENERATE_HTMLHELP = NO |
| 730 | 718 |
| 731 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML | 719 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML |
| 732 # documentation will contain sections that can be hidden and shown after the | 720 # documentation will contain sections that can be hidden and shown after the |
| 733 # page has loaded. For this to work a browser that supports | 721 # page has loaded. For this to work a browser that supports |
| (...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1299 DOT_CLEANUP = YES | 1287 DOT_CLEANUP = YES |
| 1300 | 1288 |
| 1301 #--------------------------------------------------------------------------- | 1289 #--------------------------------------------------------------------------- |
| 1302 # Configuration::additions related to the search engine | 1290 # Configuration::additions related to the search engine |
| 1303 #--------------------------------------------------------------------------- | 1291 #--------------------------------------------------------------------------- |
| 1304 | 1292 |
| 1305 # The SEARCHENGINE tag specifies whether or not a search engine should be | 1293 # The SEARCHENGINE tag specifies whether or not a search engine should be |
| 1306 # used. If set to NO the values of all tags below this one will be ignored. | 1294 # used. If set to NO the values of all tags below this one will be ignored. |
| 1307 | 1295 |
| 1308 SEARCHENGINE = NO | 1296 SEARCHENGINE = NO |
| OLD | NEW |