vlc | branch: master | Francois Cartegnie <[email protected]> | Fri Nov 24 19:43:04 2017 +0100| [ab6efdcccc982b803fa74d2926e37b38d3d3ed94] | committer: Francois Cartegnie
vout: epg: remove double defined macros > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ab6efdcccc982b803fa74d2926e37b38d3d3ed94 --- src/video_output/video_epg.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/video_output/video_epg.c b/src/video_output/video_epg.c index 9e94f7707f..1115f3a00f 100644 --- a/src/video_output/video_epg.c +++ b/src/video_output/video_epg.c @@ -60,14 +60,6 @@ #define EPGOSD_TEXTSIZE_PROG (OSDEPG_ROWS(2)) #define EPGOSD_TEXTSIZE_NTWK (OSDEPG_ROWS(2)) -#define RGB2YUV( R, G, B ) \ - ((0.257 * R) + (0.504 * G) + (0.098 * B) + 16), \ - (-(0.148 * R) - (0.291 * G) + (0.439 * B) + 128),\ - ((0.439 * R) - (0.368 * G) - (0.071 * B) + 128) - -#define HEX2YUV( rgb ) \ - RGB2YUV( (rgb >> 16), ((rgb & 0xFF00) >> 8), (rgb & 0xFF) ) - //#define RGB_COLOR1 0xf48b00 //#define ARGB_BGCOLOR 0xC0333333 _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
