Description: Explicitly declare change_encoding_speed function
Author: أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>
Bug: http://xpra.org/trac/ticket/125
a
|
b
|
|
36 | 36 | @param outstride: Output stride. |
37 | 37 | */ |
38 | 38 | int decompress_image(struct x264lib_ctx *, uint8_t *in, int size, uint8_t **out, int *outsize, int *outstride); |
| 39 | |
| 40 | /** |
| 41 | * Change the speed of encoding (x264 preset). |
| 42 | * @param increase: increase encoding speed (decrease preset) by this value. Negative values decrease encoding speed. |
| 43 | */ |
| 44 | void change_encoding_speed(struct x264lib_ctx *, int increase); |