Definition in file vidl_vil1_avicodec.cxx.
#include "vidl_vil1_avicodec.h"
#include <vidl_vil1/vidl_vil1_frame.h>
#include <vidl_vil1/vidl_vil1_movie.h>
#include <vcl_iostream.h>
#include <vcl_cstdio.h>
#include <vul/vul_file.h>
#include <windows.h>
#include <vfw.h>
#include <windowsx.h>
Go to the source code of this file.
Defines | |
| #define | RGB16R(rgb) ((((UINT)(rgb) >> 10) & 0x1F) * 255u / 31u) |
| #define | RGB16G(rgb) ((((UINT)(rgb) >> 5) & 0x1F) * 255u / 31u) |
| #define | RGB16B(rgb) ((((UINT)(rgb) >> 0) & 0x1F) * 255u / 31u) |
| #define RGB16B | ( | rgb | ) | ((((UINT)(rgb) >> 0) & 0x1F) * 255u / 31u) |
Definition at line 23 of file vidl_vil1_avicodec.cxx.
| #define RGB16G | ( | rgb | ) | ((((UINT)(rgb) >> 5) & 0x1F) * 255u / 31u) |
Definition at line 22 of file vidl_vil1_avicodec.cxx.
| #define RGB16R | ( | rgb | ) | ((((UINT)(rgb) >> 10) & 0x1F) * 255u / 31u) |
Definition at line 21 of file vidl_vil1_avicodec.cxx.
1.5.1