diff options
Diffstat (limited to 'src/video_out/yuv2rgb.h')
-rw-r--r-- | src/video_out/yuv2rgb.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/video_out/yuv2rgb.h b/src/video_out/yuv2rgb.h index 8ff6fbc9c..6e84bd923 100644 --- a/src/video_out/yuv2rgb.h +++ b/src/video_out/yuv2rgb.h @@ -27,6 +27,11 @@ struct yuv2rgb_s { void (*yuv2rgb_fun) (yuv2rgb_t *this, uint8_t * image, uint8_t * py, uint8_t * pu, uint8_t * pv) ; + /* + * this is the function to call for the yuy2->rgb and scaling process + */ + void (*yuy22rgb_fun) (yuv2rgb_t *this, uint8_t * image, uint8_t * p); + /* private stuff below */ uint32_t matrix_coefficients; |