mpv/video/filter
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
..
pullup.c
pullup.h
vf.c
vf.h
vf_crop.c
vf_delogo.c
vf_divtc.c
vf_dlopen.c
vf_dlopen.h
vf_down3dright.c
vf_dsize.c
vf_eq.c
vf_expand.c
vf_flip.c
vf_format.c
vf_gradfun.c
vf_hqdn3d.c
vf_ilpack.c
vf_lavfi.c
vf_mirror.c
vf_noformat.c
vf_noise.c
vf_phase.c
vf_pp.c
vf_pullup.c
vf_rotate.c
vf_scale.c
vf_screenshot.c
vf_softpulldown.c
vf_stereo3d.c
vf_sub.c
vf_swapuv.c
vf_unsharp.c
vf_vavpp.c
vf_vo.c
vf_yadif.c