diff options
author | Philippe Coval <philippe.coval@open.eurogiciel.org> | 2014-07-17 18:50:52 +0200 |
---|---|---|
committer | Philippe Coval <philippe.coval@open.eurogiciel.org> | 2014-07-17 18:50:52 +0200 |
commit | cc011b91ca1b5b9d37412110eef3ef7fab6f4e2f (patch) | |
tree | 88d0d7536bee02fe98c3cf3c931edf549068720e /overlay/x11/rgb2yuv.h | |
parent | 3c7b03f2f7b4ecfb18fb30f2e43b6321cb1aa4de (diff) | |
download | intel-gpu-tools-upstream.tar.gz intel-gpu-tools-upstream.tar.bz2 intel-gpu-tools-upstream.zip |
Imported Upstream version 1.7upstream/1.7upstream
Diffstat (limited to 'overlay/x11/rgb2yuv.h')
-rw-r--r-- | overlay/x11/rgb2yuv.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/overlay/x11/rgb2yuv.h b/overlay/x11/rgb2yuv.h new file mode 100644 index 00000000..c5cc5624 --- /dev/null +++ b/overlay/x11/rgb2yuv.h @@ -0,0 +1,36 @@ +/* + * Copyright © 2013 Intel Corporation + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice (including the next + * paragraph) shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + * IN THE SOFTWARE. + * + */ + +#ifndef RGB2YUV_H +#define RGB2YUV_H + +#include <X11/Xlib.h> +#include <X11/extensions/Xvlib.h> +#include <cairo.h> +#include <stdint.h> + +void rgb2yuv_init(void); +int rgb2yuv(cairo_surface_t *rgb, XvImage *image, uint8_t *yuv); + +#endif /* RGB2YUV_H */ |