avfiltergraph.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. * Create and add a filter instance into an existing graph.
  49. * The filter instance is created from the filter filt and inited
  50. * with the parameters args and opaque.
  51. *
  52. * In case of success put in *filt_ctx the pointer to the created
  53. * filter instance, otherwise set *filt_ctx to NULL.
  54. *
  55. * @param name the instance name to give to the created filter instance
  56. * @param graph_ctx the filter graph
  57. * @return a negative AVERROR error code in case of failure, a non
  58. * negative value otherwise
  59. */
  60. int avfilter_graph_create_filter(AVFilterContext **filt_ctx, AVFilter *filt,
  61. const char *name, const char *args, void *opaque,
  62. AVFilterGraph *graph_ctx);
  63. /**
  64. * Check validity and configure all the links and formats in the graph.
  65. *
  66. * @param graphctx the filter graph
  67. * @param log_ctx context used for logging
  68. * @return 0 in case of success, a negative AVERROR code otherwise
  69. */
  70. int avfilter_graph_config(AVFilterGraph *graphctx, AVClass *log_ctx);
  71. /**
  72. * Free a graph and destroy its links.
  73. */
  74. void avfilter_graph_free(AVFilterGraph *graph);
  75. /**
  76. * A linked-list of the inputs/outputs of the filter chain.
  77. *
  78. * This is mainly useful for avfilter_graph_parse(), since this
  79. * function may accept a description of a graph with not connected
  80. * input/output pads. This struct specifies, per each not connected
  81. * pad contained in the graph, the filter context and the pad index
  82. * required for establishing a link.
  83. */
  84. typedef struct AVFilterInOut {
  85. /** unique name for this input/output in the list */
  86. char *name;
  87. /** filter context associated to this input/output */
  88. AVFilterContext *filter_ctx;
  89. /** index of the filt_ctx pad to use for linking */
  90. int pad_idx;
  91. /** next input/input in the list, NULL if this is the last */
  92. struct AVFilterInOut *next;
  93. } AVFilterInOut;
  94. /**
  95. * Add a graph described by a string to a graph.
  96. *
  97. * @param graph the filter graph where to link the parsed graph context
  98. * @param filters string to be parsed
  99. * @param inputs linked list to the inputs of the graph
  100. * @param outputs linked list to the outputs of the graph
  101. * @return zero on success, a negative AVERROR code on error
  102. */
  103. int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
  104. AVFilterInOut *inputs, AVFilterInOut *outputs,
  105. AVClass *log_ctx);
  106. #endif /* AVFILTER_AVFILTERGRAPH_H */