| OLD | NEW |
| 1 /*! \page usage_encode Encode | 1 /*! \page usage_encode Encoding |
| 2 | 2 |
| 3 The vpx_codec_encode() function is at the core of the encode loop. It | 3 The vpx_codec_encode() function is at the core of the encode loop. It |
| 4 processes raw images passed by the application, producing packets of | 4 processes raw images passed by the application, producing packets of |
| 5 compressed data. The <code>deadline</code> parameter controls the amount | 5 compressed data. The <code>deadline</code> parameter controls the amount |
| 6 of time in microseconds the encoder should spend working on the frame. For | 6 of time in microseconds the encoder should spend working on the frame. For |
| 7 more information on the <code>deadline</code> parameter, see | 7 more information on the <code>deadline</code> parameter, see |
| 8 \ref usage_deadline. | 8 \ref usage_deadline. |
| 9 | 9 |
| 10 | 10 |
| 11 \ref samples | 11 \ref samples |
| 12 | 12 |
| 13 */ | 13 */ |
| OLD | NEW |