mpv/video/out
Stefano Pigozzi 37388ebb0e configure: uniform the defines to #define HAVE_xxx (0|1)
The configure followed 5 different convetions of defines because the next guy
always wanted to introduce a new better way to uniform it[1]. For an
hypothetic feature 'hurr' you could have had:

  * #define HAVE_HURR 1   / #undef HAVE_DURR
  * #define HAVE_HURR     / #undef HAVE_DURR
  * #define CONFIG_HURR 1 / #undef CONFIG_DURR
  * #define HAVE_HURR 1   / #define HAVE_DURR 0
  * #define CONFIG_HURR 1 / #define CONFIG_DURR 0

All is now uniform and uses:
  * #define HAVE_HURR 1
  * #define HAVE_DURR 0

We like definining to 0 as opposed to `undef` bcause it can help spot typos
and is very helpful when doing big reorganizations in the code.

[1]: http://xkcd.com/927/ related
2013-11-03 21:59:54 +01:00
..
cocoa cocoa: apply the more invasive constraining only with cmd+1/2/3 2013-10-28 09:08:08 +01:00
aspect.c aspect: mp_msg conversion 2013-09-12 01:34:42 +02:00
aspect.h video: simplify aspect calculation stuff 2013-03-17 22:07:13 +01:00
bitmap_packer.c core: move contents to mpvcore (2/2) 2013-08-06 22:52:31 +02:00
bitmap_packer.h
cocoa_common.h cocoa_common: call gl_clear indirectly 2013-09-28 15:08:40 +02:00
cocoa_common.m cocoa: set and clear gl context inside of sync sections 2013-10-20 21:25:55 +02:00
d3d_shader_yuv.h
d3d_shader_yuv.hlsl vo_direct3d: remove 2ch hack for 10 bit playback 2013-01-13 20:04:14 +01:00
dither.c dither: don't use long double 2013-07-05 20:26:32 +02:00
dither.h gl_video: improve dithering 2013-05-26 16:44:20 +02:00
filter_kernels.c
filter_kernels.h
gl_cocoa.c cocoa_common: call gl_clear indirectly 2013-09-28 15:08:40 +02:00
gl_common.c configure: uniform the defines to #define HAVE_xxx (0|1) 2013-11-03 21:59:54 +01:00
gl_common.h configure: uniform the defines to #define HAVE_xxx (0|1) 2013-11-03 21:59:54 +01:00
gl_header_fixes.h configure: uniform the defines to #define HAVE_xxx (0|1) 2013-11-03 21:59:54 +01:00
gl_lcms.c configure: uniform the defines to #define HAVE_xxx (0|1) 2013-11-03 21:59:54 +01:00
gl_lcms.h gl_lcms: mp_msg conversion 2013-09-12 01:34:42 +02:00
gl_osd.c gl_osd: mp_msg conversion 2013-09-12 01:34:42 +02:00
gl_osd.h gl_osd: mp_msg conversion 2013-09-12 01:34:42 +02:00
gl_video.c configure: uniform the defines to #define HAVE_xxx (0|1) 2013-11-03 21:59:54 +01:00
gl_video.h m_config: refactor option defaults handling 2013-10-24 22:50:13 +02:00
gl_video_shaders.glsl vo_opengl: blend alpha components by default 2013-09-19 17:03:03 +02:00
gl_w32.c gl_common: complete mp_msg conversion 2013-09-12 01:34:42 +02:00
gl_wayland.c wayland/egl: use wayland log 2013-09-12 16:36:52 +02:00
gl_x11.c gl_x11: change error message when GL3 context creation fails 2013-10-28 23:54:02 +01:00
pnm_loader.c
pnm_loader.h
vo.c configure: uniform the defines to #define HAVE_xxx (0|1) 2013-11-03 21:59:54 +01:00
vo.h command: add property to scale window size 2013-10-31 23:30:14 +01:00
vo_caca.c video/out: remove useless info struct and redundant fields 2013-10-23 19:30:01 +02:00
vo_corevideo.c configure: uniform the defines to #define HAVE_xxx (0|1) 2013-11-03 21:59:54 +01:00
vo_direct3d.c m_config: refactor option defaults handling 2013-10-24 22:50:13 +02:00
vo_image.c video/out: remove useless info struct and redundant fields 2013-10-23 19:30:01 +02:00
vo_lavc.c video/out: remove useless info struct and redundant fields 2013-10-23 19:30:01 +02:00
vo_null.c video/out: remove useless info struct and redundant fields 2013-10-23 19:30:01 +02:00
vo_opengl.c m_config: refactor option defaults handling 2013-10-24 22:50:13 +02:00
vo_opengl_old.c video/out: remove useless info struct and redundant fields 2013-10-23 19:30:01 +02:00
vo_sdl.c video/out: remove useless info struct and redundant fields 2013-10-23 19:30:01 +02:00
vo_vaapi.c configure: uniform the defines to #define HAVE_xxx (0|1) 2013-11-03 21:59:54 +01:00
vo_vdpau.c configure: uniform the defines to #define HAVE_xxx (0|1) 2013-11-03 21:59:54 +01:00
vo_wayland.c configure: uniform the defines to #define HAVE_xxx (0|1) 2013-11-03 21:59:54 +01:00
vo_x11.c configure: uniform the defines to #define HAVE_xxx (0|1) 2013-11-03 21:59:54 +01:00
vo_xv.c configure: uniform the defines to #define HAVE_xxx (0|1) 2013-11-03 21:59:54 +01:00
w32_common.c w32: implement functionality required for window-scale 2013-11-02 17:54:46 +01:00
w32_common.h input: deal with spurious X11 LeaveNotify events 2013-09-01 20:17:51 +02:00
wayland_common.c wayland: better name for mouse coordinates 2013-10-25 10:30:12 +02:00
wayland_common.h wayland: better name for mouse coordinates 2013-10-25 10:30:12 +02:00
x11_common.c configure: uniform the defines to #define HAVE_xxx (0|1) 2013-11-03 21:59:54 +01:00
x11_common.h x11: fix border toggling 2013-10-27 23:22:46 +01:00
x11_icon.bin x11: add window icon 2013-09-01 23:27:33 +02:00