allfilters.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * filter registration
  3. * Copyright (c) 2008 Vitor Sessak
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "avfilter.h"
  22. #include "config.h"
  23. #define REGISTER_FILTER(X, x, y) \
  24. { \
  25. extern AVFilter ff_##y##_##x; \
  26. if (CONFIG_##X##_FILTER) \
  27. avfilter_register(&ff_##y##_##x); \
  28. }
  29. #define REGISTER_FILTER_UNCONDITIONAL(x) \
  30. { \
  31. extern AVFilter ff_##x; \
  32. avfilter_register(&ff_##x); \
  33. }
  34. void avfilter_register_all(void)
  35. {
  36. static int initialized;
  37. if (initialized)
  38. return;
  39. initialized = 1;
  40. REGISTER_FILTER(AFORMAT, aformat, af);
  41. REGISTER_FILTER(AMIX, amix, af);
  42. REGISTER_FILTER(ANULL, anull, af);
  43. REGISTER_FILTER(ASETPTS, asetpts, af);
  44. REGISTER_FILTER(ASETTB, asettb, af);
  45. REGISTER_FILTER(ASHOWINFO, ashowinfo, af);
  46. REGISTER_FILTER(ASPLIT, asplit, af);
  47. REGISTER_FILTER(ASYNCTS, asyncts, af);
  48. REGISTER_FILTER(ATRIM, atrim, af);
  49. REGISTER_FILTER(BS2B, bs2b, af);
  50. REGISTER_FILTER(CHANNELMAP, channelmap, af);
  51. REGISTER_FILTER(CHANNELSPLIT, channelsplit, af);
  52. REGISTER_FILTER(COMPAND, compand, af);
  53. REGISTER_FILTER(JOIN, join, af);
  54. REGISTER_FILTER(RESAMPLE, resample, af);
  55. REGISTER_FILTER(VOLUME, volume, af);
  56. REGISTER_FILTER(ANULLSRC, anullsrc, asrc);
  57. REGISTER_FILTER(ANULLSINK, anullsink, asink);
  58. REGISTER_FILTER(BLACKFRAME, blackframe, vf);
  59. REGISTER_FILTER(BOXBLUR, boxblur, vf);
  60. REGISTER_FILTER(COPY, copy, vf);
  61. REGISTER_FILTER(CROP, crop, vf);
  62. REGISTER_FILTER(CROPDETECT, cropdetect, vf);
  63. REGISTER_FILTER(DELOGO, delogo, vf);
  64. REGISTER_FILTER(DRAWBOX, drawbox, vf);
  65. REGISTER_FILTER(DRAWTEXT, drawtext, vf);
  66. REGISTER_FILTER(FADE, fade, vf);
  67. REGISTER_FILTER(FIELDORDER, fieldorder, vf);
  68. REGISTER_FILTER(FORMAT, format, vf);
  69. REGISTER_FILTER(FPS, fps, vf);
  70. REGISTER_FILTER(FRAMEPACK, framepack, vf);
  71. REGISTER_FILTER(FREI0R, frei0r, vf);
  72. REGISTER_FILTER(GRADFUN, gradfun, vf);
  73. REGISTER_FILTER(HFLIP, hflip, vf);
  74. REGISTER_FILTER(HQDN3D, hqdn3d, vf);
  75. REGISTER_FILTER(HWDOWNLOAD, hwdownload, vf);
  76. REGISTER_FILTER(HWUPLOAD, hwupload, vf);
  77. REGISTER_FILTER(HWUPLOAD_CUDA, hwupload_cuda, vf);
  78. REGISTER_FILTER(INTERLACE, interlace, vf);
  79. REGISTER_FILTER(LUT, lut, vf);
  80. REGISTER_FILTER(LUTRGB, lutrgb, vf);
  81. REGISTER_FILTER(LUTYUV, lutyuv, vf);
  82. REGISTER_FILTER(NEGATE, negate, vf);
  83. REGISTER_FILTER(NOFORMAT, noformat, vf);
  84. REGISTER_FILTER(NULL, null, vf);
  85. REGISTER_FILTER(OCV, ocv, vf);
  86. REGISTER_FILTER(OVERLAY, overlay, vf);
  87. REGISTER_FILTER(PAD, pad, vf);
  88. REGISTER_FILTER(PIXDESCTEST, pixdesctest, vf);
  89. REGISTER_FILTER(SCALE, scale, vf);
  90. REGISTER_FILTER(SCALE_NPP, scale_npp, vf);
  91. REGISTER_FILTER(SCALE_VAAPI, scale_vaapi, vf);
  92. REGISTER_FILTER(SELECT, select, vf);
  93. REGISTER_FILTER(SETDAR, setdar, vf);
  94. REGISTER_FILTER(SETPTS, setpts, vf);
  95. REGISTER_FILTER(SETSAR, setsar, vf);
  96. REGISTER_FILTER(SETTB, settb, vf);
  97. REGISTER_FILTER(SHOWINFO, showinfo, vf);
  98. REGISTER_FILTER(SHUFFLEPLANES, shuffleplanes, vf);
  99. REGISTER_FILTER(SPLIT, split, vf);
  100. REGISTER_FILTER(TRANSPOSE, transpose, vf);
  101. REGISTER_FILTER(TRIM, trim, vf);
  102. REGISTER_FILTER(UNSHARP, unsharp, vf);
  103. REGISTER_FILTER(VFLIP, vflip, vf);
  104. REGISTER_FILTER(YADIF, yadif, vf);
  105. REGISTER_FILTER(COLOR, color, vsrc);
  106. REGISTER_FILTER(FREI0R, frei0r_src, vsrc);
  107. REGISTER_FILTER(MOVIE, movie, vsrc);
  108. REGISTER_FILTER(NULLSRC, nullsrc, vsrc);
  109. REGISTER_FILTER(RGBTESTSRC, rgbtestsrc, vsrc);
  110. REGISTER_FILTER(TESTSRC, testsrc, vsrc);
  111. REGISTER_FILTER(NULLSINK, nullsink, vsink);
  112. /* those filters are part of public or internal API => registered
  113. * unconditionally */
  114. REGISTER_FILTER_UNCONDITIONAL(asrc_abuffer);
  115. REGISTER_FILTER_UNCONDITIONAL(vsrc_buffer);
  116. REGISTER_FILTER_UNCONDITIONAL(asink_abuffer);
  117. REGISTER_FILTER_UNCONDITIONAL(vsink_buffer);
  118. REGISTER_FILTER_UNCONDITIONAL(af_afifo);
  119. REGISTER_FILTER_UNCONDITIONAL(vf_fifo);
  120. }