r1006: configure: Use libx264_pic instead of libx264 if available.
[cinelerra_cv/mob.git] / cinelerra / strategies.inc
blob1ec7a8cfd6c6e77f0ad64964d479851797df7682
1 #ifndef STRATEGIES_INC
2 #define STRATEGIES_INC
4 // Rendering strategies
5 #define VRENDER_MJPG 5        // Hardware decompression
6 #define VRENDER_YUV420 0      // BC_Bitmap access
7 #define VRENDER_RGB565 1      // BC_Bitmap access
8 #define VRENDER_BGR8880 3     // BC_Bitmap access
9 #define VRENDER_RGB888 2      // Framebuffer
10 #define VRENDER_VPIXEL 4      // Virtual console
13 #endif