diff options
author | Błażej Szczygieł <spaz16@wp.pl> | 2016-10-17 17:14:07 +0200 |
---|---|---|
committer | Błażej Szczygieł <spaz16@wp.pl> | 2016-10-23 02:46:06 +0200 |
commit | d710b265f8c9c94f3315d2d2ae2267c7437eb179 (patch) | |
tree | c3c967259f8ce60eb87059d1ba08ea6cd520b2e4 /modules/theora | |
parent | 1556d0d377ec376dd02db80a1bee7fc81eb684d9 (diff) |
Add WebM module
Use already existing libraries: libvorbis and libopus. Also use newly
added libraries: libvpx, libwebm, libsimplewebm.
Diffstat (limited to 'modules/theora')
-rw-r--r-- | modules/theora/yuv2rgb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/theora/yuv2rgb.h b/modules/theora/yuv2rgb.h index 59101bd057..431b47e651 100644 --- a/modules/theora/yuv2rgb.h +++ b/modules/theora/yuv2rgb.h @@ -801,7 +801,7 @@ do { \ *(DSTPTR)++ = 255; \ } while (0 == 1) -void yuv422_2_rgb8888(uint8_t *dst_ptr, +static void yuv422_2_rgb8888(uint8_t *dst_ptr, const uint8_t *y_ptr, const uint8_t *u_ptr, const uint8_t *v_ptr, @@ -912,7 +912,7 @@ do { \ (DSTPTR) = 0xFF000000 | (Y & 0xFF) | (0xFF00 & (Y>>14)) | (0xFF0000 & (Y<<5));\ } while (0 == 1) -void yuv420_2_rgb8888(uint8_t *dst_ptr_, +static void yuv420_2_rgb8888(uint8_t *dst_ptr_, const uint8_t *y_ptr, const uint8_t *u_ptr, const uint8_t *v_ptr, @@ -1034,7 +1034,7 @@ do { \ *(DSTPTR)++ = 255; \ } while (0 == 1) -void yuv444_2_rgb8888(uint8_t *dst_ptr, +static void yuv444_2_rgb8888(uint8_t *dst_ptr, const uint8_t *y_ptr, const uint8_t *u_ptr, const uint8_t *v_ptr, |