#include "color-formats-converter.h"
#include "option.h"
#include "image-avx.h"
#include "image.h"
#include "../third-party/stb_image.h"
#include <cpuid.h>
Go to the source code of this file.
|
void | cpuid (int info[4], int info_type) |
|
bool | has_avx () |
|
void | librealsense::unpack_mjpeg (byte *const dest[], const byte *source, int width, int height, int actual_size, int input_size) |
|
void | librealsense::unpack_rgb_from_bgr (byte *const dest[], const byte *source, int width, int height, int actual_size) |
|
template<rs2_format FORMAT> |
void | librealsense::unpack_uyvy (byte *const d[], const byte *s, int width, int height, int actual_size) |
|
void | librealsense::unpack_uyvyc (rs2_format dst_format, rs2_stream dst_stream, byte *const d[], const byte *s, int w, int h, int actual_size) |
|
template<rs2_format FORMAT> |
void | librealsense::unpack_yuy2 (byte *const d[], const byte *s, int width, int height, int actual_size) |
|
void | librealsense::unpack_yuy2 (rs2_format dst_format, rs2_stream dst_stream, byte *const d[], const byte *s, int w, int h, int actual_size) |
|
#define clamp |
( |
|
x | ) |
((t=(x)) > 255 ? 255 : t < 0 ? 0 : t) |
#define clamp |
( |
|
x | ) |
((t=(x)) > 255 ? 255 : t < 0 ? 0 : t) |
#define STB_IMAGE_IMPLEMENTATION |
void cpuid |
( |
int |
info[4], |
|
|
int |
info_type |
|
) |
| |