mirror of
https://github.com/mpv-player/mpv
synced 2025-01-18 04:51:52 +00:00
vo_gl: add helper macros to build the yuv conversion type number
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31742 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
7de77cdb11
commit
93336619b2
@ -347,6 +347,9 @@ int loadGPUProgram(GLenum target, char *prog);
|
||||
#define YUV_LUM_SCALER(t) (((t) >> YUV_LUM_SCALER_SHIFT) & YUV_SCALER_MASK)
|
||||
//! extract chrominance scaler out of type
|
||||
#define YUV_CHROM_SCALER(t) (((t) >> YUV_CHROM_SCALER_SHIFT) & YUV_SCALER_MASK)
|
||||
#define SET_YUV_CONVERSION(c) ((c) & YUV_CONVERSION_MASK)
|
||||
#define SET_YUV_LUM_SCALER(s) (((s) & YUV_SCALER_MASK) << YUV_LUM_SCALER_SHIFT)
|
||||
#define SET_YUV_CHROM_SCALER(s) (((s) & YUV_SCALER_MASK) << YUV_CHROM_SCALER_SHIFT)
|
||||
/** \} */
|
||||
|
||||
typedef struct {
|
||||
|
@ -534,7 +534,9 @@ static int initGl(uint32_t d_width, uint32_t d_height) {
|
||||
int scale_type = mipmap_gen ? GL_LINEAR_MIPMAP_NEAREST : GL_LINEAR;
|
||||
autodetectGlExtensions();
|
||||
gl_target = use_rectangle == 1 ? GL_TEXTURE_RECTANGLE : GL_TEXTURE_2D;
|
||||
yuvconvtype = use_yuv | lscale << YUV_LUM_SCALER_SHIFT | cscale << YUV_CHROM_SCALER_SHIFT;
|
||||
yuvconvtype = SET_YUV_CONVERSION(use_yuv) |
|
||||
SET_YUV_LUM_SCALER(lscale) |
|
||||
SET_YUV_CHROM_SCALER(cscale);
|
||||
|
||||
texSize(image_width, image_height, &texture_width, &texture_height);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user