Commit 198ef152 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Remove tabs in source code

parent d12d32c7
...@@ -26,15 +26,15 @@ ...@@ -26,15 +26,15 @@
* inferred from the color subsampling ratio. */ * inferred from the color subsampling ratio. */
struct yuv_planes struct yuv_planes
{ {
void *y, *u, *v; void *y, *u, *v;
size_t pitch; size_t pitch;
}; };
/* Packed picture buffer. Pitch is in bytes (_not_ pixels). */ /* Packed picture buffer. Pitch is in bytes (_not_ pixels). */
struct yuv_pack struct yuv_pack
{ {
void *yuv; void *yuv;
size_t pitch; size_t pitch;
}; };
/* I420 to YUYV conversion. */ /* I420 to YUYV conversion. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment