Intel® RealSense™ Cross Platform API
Intel Realsense Cross-platform API
image_avx.h
Go to the documentation of this file.
1 // License: Apache 2.0. See LICENSE file in root directory.
2 // Copyright(c) 2015 Intel Corporation. All Rights Reserved.
3 
4 #pragma once
5 #ifndef LIBREALSENSE_IMAGE_AVX_H
6 #define LIBREALSENSE_IMAGE_AVX_H
7 
8 #include "types.h"
9 
10 namespace librealsense
11 {
12  #ifdef __SSSE3__
13  void unpack_yuy2_avx_y8(byte * const d[], const byte * s, int n);
14  void unpack_yuy2_avx_y16(byte * const d[], const byte * s, int n);
15  void unpack_yuy2_avx_rgb8(byte * const d[], const byte * s, int n);
16  void unpack_yuy2_avx_rgba8(byte * const d[], const byte * s, int n);
17  void unpack_yuy2_avx_bgr8(byte * const d[], const byte * s, int n);
18  void unpack_yuy2_avx_bgra8(byte * const d[], const byte * s, int n);
19  #endif
20 }
21 
22 #endif
unsigned char byte
Definition: types.h:33
Definition: algo.h:16