| OLD | NEW |
| 1 /*!\mainpage WebM VP8 Codec SDK | 1 /*!\mainpage WebM Codec SDK |
| 2 | 2 |
| 3 \section main_contents Page Contents | 3 \section main_contents Page Contents |
| 4 - \ref main_intro | 4 - \ref main_intro |
| 5 - \ref main_startpoints | 5 - \ref main_startpoints |
| 6 - \ref main_support | 6 - \ref main_support |
| 7 | 7 |
| 8 \section main_intro Introduction | 8 \section main_intro Introduction |
| 9 Welcome to the WebM VP8 Codec SDK. This SDK allows you to integrate your | 9 Welcome to the WebM Codec SDK. This SDK allows you to integrate your |
| 10 applications with the VP8 video codec, a high quality, royalty free, open | 10 applications with the VP8 and VP9 video codecs, high quality, royalty free, |
| 11 source codec deployed on millions of computers and devices worldwide. | 11 open source codecs deployed on billions of computers and devices worldwide. |
| 12 | 12 |
| 13 This distribution of the WebM VP8 Codec SDK includes the following support: | 13 This distribution of the WebM Codec SDK includes the following support: |
| 14 | 14 |
| 15 \if vp8_encoder | 15 \if vp8_encoder |
| 16 - \ref vp8_encoder | 16 - \ref vp8_encoder |
| 17 \endif | 17 \endif |
| 18 \if vp8_decoder | 18 \if vp8_decoder |
| 19 - \ref vp8_decoder | 19 - \ref vp8_decoder |
| 20 \endif | 20 \endif |
| 21 | 21 |
| 22 | 22 |
| 23 \section main_startpoints Starting Points | 23 \section main_startpoints Starting Points |
| 24 - Consult the \ref changelog for a complete list of improvements in this | 24 - Consult the \ref changelog for a complete list of improvements in this |
| 25 release. | 25 release. |
| 26 - The \ref readme contains instructions on recompiling the sample applications
. | 26 - The \ref readme contains instructions on recompiling the sample applications
. |
| 27 - Read the \ref usage "usage" for a narrative on codec usage. | 27 - Read the \ref usage "usage" for a narrative on codec usage. |
| 28 - Read the \ref samples "sample code" for examples of how to interact with the | 28 - Read the \ref samples "sample code" for examples of how to interact with the |
| 29 codec. | 29 codec. |
| 30 - \ref codec reference | 30 - \ref codec reference |
| 31 \if encoder | 31 \if encoder |
| 32 - \ref encoder reference | 32 - \ref encoder reference |
| 33 \endif | 33 \endif |
| 34 \if decoder | 34 \if decoder |
| 35 - \ref decoder reference | 35 - \ref decoder reference |
| 36 \endif | 36 \endif |
| 37 | 37 |
| 38 \section main_support Support Options & FAQ | 38 \section main_support Support Options & FAQ |
| 39 The WebM project is an open source project supported by its community. For | 39 The WebM project is an open source project supported by its community. For |
| 40 questions about this SDK, please mail the apps-devel@webmproject.org list. | 40 questions about this SDK, please mail the apps-devel@webmproject.org list. |
| 41 To contribute, see http://www.webmproject.org/code/contribute and mail | 41 To contribute, see http://www.webmproject.org/code/contribute and mail |
| 42 codec-devel@webmproject.org. | 42 codec-devel@webmproject.org. |
| 43 */ | 43 */ |
| 44 | 44 |
| 45 /*!\page changelog CHANGELOG | 45 /*!\page changelog CHANGELOG |
| 46 \verbinclude CHANGELOG | 46 \verbinclude CHANGELOG |
| 47 */ | 47 */ |
| 48 | 48 |
| 49 /*!\page readme README | 49 /*!\page readme README |
| 50 \verbinclude README | 50 \verbinclude README |
| 51 */ | 51 */ |
| 52 | 52 |
| 53 /*!\defgroup codecs Supported Codecs */ | 53 /*!\defgroup codecs Supported Codecs */ |
| OLD | NEW |