You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
3.3KB

  1. /*
  2. * Filter graphs
  3. * copyright (c) 2007 Bobby Bingham
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #ifndef AVFILTER_AVFILTERGRAPH_H
  22. #define AVFILTER_AVFILTERGRAPH_H
  23. #include "avfilter.h"
  24. typedef struct AVFilterGraph {
  25. unsigned filter_count;
  26. AVFilterContext **filters;
  27. char *scale_sws_opts; ///< sws options to use for the auto-inserted scale filters
  28. } AVFilterGraph;
  29. /**
  30. * Allocate a filter graph.
  31. */
  32. AVFilterGraph *avfilter_graph_alloc(void);
  33. /**
  34. * Get a filter instance with name name from graph.
  35. *
  36. * @return the pointer to the found filter instance or NULL if it
  37. * cannot be found.
  38. */
  39. AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name);
  40. /**
  41. * Add an existing filter instance to a filter graph.
  42. *
  43. * @param graphctx the filter graph
  44. * @param filter the filter to be added
  45. */
  46. int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
  47. /**
  48. * Check validity and configure all the links and formats in the graph.
  49. *
  50. * @param graphctx the filter graph
  51. * @param log_ctx context used for logging
  52. * @return 0 in case of success, a negative AVERROR code otherwise
  53. */
  54. int avfilter_graph_config(AVFilterGraph *graphctx, AVClass *log_ctx);
  55. /**
  56. * Free a graph and destroy its links.
  57. */
  58. void avfilter_graph_free(AVFilterGraph *graph);
  59. /**
  60. * A linked-list of the inputs/outputs of the filter chain.
  61. *
  62. * This is mainly useful for avfilter_graph_parse(), since this
  63. * function may accept a description of a graph with not connected
  64. * input/output pads. This struct specifies, per each not connected
  65. * pad contained in the graph, the filter context and the pad index
  66. * required for establishing a link.
  67. */
  68. typedef struct AVFilterInOut {
  69. /** unique name for this input/output in the list */
  70. char *name;
  71. /** filter context associated to this input/output */
  72. AVFilterContext *filter_ctx;
  73. /** index of the filt_ctx pad to use for linking */
  74. int pad_idx;
  75. /** next input/input in the list, NULL if this is the last */
  76. struct AVFilterInOut *next;
  77. } AVFilterInOut;
  78. /**
  79. * Add a graph described by a string to a graph.
  80. *
  81. * @param graph the filter graph where to link the parsed graph context
  82. * @param filters string to be parsed
  83. * @param inputs linked list to the inputs of the graph
  84. * @param outputs linked list to the outputs of the graph
  85. * @return zero on success, a negative AVERROR code on error
  86. */
  87. int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
  88. AVFilterInOut *inputs, AVFilterInOut *outputs,
  89. AVClass *log_ctx);
  90. #endif /* AVFILTER_AVFILTERGRAPH_H */