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.

189 lines
6.8KB

  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. #include "libavutil/log.h"
  25. typedef struct AVFilterGraph {
  26. #if FF_API_GRAPH_AVCLASS
  27. const AVClass *av_class;
  28. #endif
  29. unsigned filter_count;
  30. AVFilterContext **filters;
  31. char *scale_sws_opts; ///< sws options to use for the auto-inserted scale filters
  32. } AVFilterGraph;
  33. /**
  34. * Allocate a filter graph.
  35. */
  36. AVFilterGraph *avfilter_graph_alloc(void);
  37. /**
  38. * Get a filter instance with name name from graph.
  39. *
  40. * @return the pointer to the found filter instance or NULL if it
  41. * cannot be found.
  42. */
  43. AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name);
  44. /**
  45. * Add an existing filter instance to a filter graph.
  46. *
  47. * @param graphctx the filter graph
  48. * @param filter the filter to be added
  49. */
  50. int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
  51. /**
  52. * Create and add a filter instance into an existing graph.
  53. * The filter instance is created from the filter filt and inited
  54. * with the parameters args and opaque.
  55. *
  56. * In case of success put in *filt_ctx the pointer to the created
  57. * filter instance, otherwise set *filt_ctx to NULL.
  58. *
  59. * @param name the instance name to give to the created filter instance
  60. * @param graph_ctx the filter graph
  61. * @return a negative AVERROR error code in case of failure, a non
  62. * negative value otherwise
  63. */
  64. int avfilter_graph_create_filter(AVFilterContext **filt_ctx, AVFilter *filt,
  65. const char *name, const char *args, void *opaque,
  66. AVFilterGraph *graph_ctx);
  67. /**
  68. * Check validity and configure all the links and formats in the graph.
  69. *
  70. * @param graphctx the filter graph
  71. * @param log_ctx context used for logging
  72. * @return 0 in case of success, a negative AVERROR code otherwise
  73. */
  74. int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx);
  75. /**
  76. * Free a graph, destroy its links, and set *graph to NULL.
  77. * If *graph is NULL, do nothing.
  78. */
  79. void avfilter_graph_free(AVFilterGraph **graph);
  80. /**
  81. * A linked-list of the inputs/outputs of the filter chain.
  82. *
  83. * This is mainly useful for avfilter_graph_parse(), since this
  84. * function may accept a description of a graph with not connected
  85. * input/output pads. This struct specifies, per each not connected
  86. * pad contained in the graph, the filter context and the pad index
  87. * required for establishing a link.
  88. */
  89. typedef struct AVFilterInOut {
  90. /** unique name for this input/output in the list */
  91. char *name;
  92. /** filter context associated to this input/output */
  93. AVFilterContext *filter_ctx;
  94. /** index of the filt_ctx pad to use for linking */
  95. int pad_idx;
  96. /** next input/input in the list, NULL if this is the last */
  97. struct AVFilterInOut *next;
  98. } AVFilterInOut;
  99. /**
  100. * Create an AVFilterInOut.
  101. * Must be free with avfilter_inout_free().
  102. */
  103. AVFilterInOut *avfilter_inout_alloc(void);
  104. /**
  105. * Free the AVFilterInOut in *inout, and set its pointer to NULL.
  106. * If *inout is NULL, do nothing.
  107. */
  108. void avfilter_inout_free(AVFilterInOut **inout);
  109. /**
  110. * Add a graph described by a string to a graph.
  111. *
  112. * @param graph the filter graph where to link the parsed graph context
  113. * @param filters string to be parsed
  114. * @param inputs pointer to a linked list to the inputs of the graph, may be NULL.
  115. * If non-NULL, *inputs is updated to contain the list of open inputs
  116. * after the parsing, should be freed with avfilter_inout_free().
  117. * @param outputs pointer to a linked list to the outputs of the graph, may be NULL.
  118. * If non-NULL, *outputs is updated to contain the list of open outputs
  119. * after the parsing, should be freed with avfilter_inout_free().
  120. * @return non negative on success, a negative AVERROR code on error
  121. */
  122. int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
  123. AVFilterInOut **inputs, AVFilterInOut **outputs,
  124. void *log_ctx);
  125. /**
  126. * Send a command to one or more filter instances.
  127. *
  128. * @param graph the filter graph
  129. * @param target the filter(s) to which the command should be sent
  130. * "all" sends to all filters
  131. * otherwise it can be a filter or filter instance name
  132. * which will send the command to all matching filters.
  133. * @param cmd the command to sent, for handling simplicity all commands must be alphanumeric only
  134. * @param arg the argument for the command
  135. * @param res a buffer with size res_size where the filter(s) can return a response.
  136. *
  137. * @returns >=0 on success otherwise an error code.
  138. * AVERROR(ENOSYS) on unsupported commands
  139. */
  140. int avfilter_graph_send_command(AVFilterGraph *graph, const char *target, const char *cmd, const char *arg, char *res, int res_len, int flags);
  141. /**
  142. * Queue a command for one or more filter instances.
  143. *
  144. * @param graph the filter graph
  145. * @param target the filter(s) to which the command should be sent
  146. * "all" sends to all filters
  147. * otherwise it can be a filter or filter instance name
  148. * which will send the command to all matching filters.
  149. * @param cmd the command to sent, for handling simplicity all commands must be alphanummeric only
  150. * @param arg the argument for the command
  151. * @param ts time at which the command should be sent to the filter
  152. *
  153. * @note As this executes commands after this function returns, no return code
  154. * from the filter is provided, also AVFILTER_CMD_FLAG_ONE is not supported.
  155. */
  156. int avfilter_graph_queue_command(AVFilterGraph *graph, const char *target, const char *cmd, const char *arg, int flags, double ts);
  157. /**
  158. * Dump a graph into a human-readable string representation.
  159. *
  160. * @param graph the graph to dump
  161. * @param options formatting options; currently ignored
  162. * @return a string, or NULL in case of memory allocation failure;
  163. * the string must be freed using av_free
  164. */
  165. char *avfilter_graph_dump(AVFilterGraph *graph, const char *options);
  166. #endif /* AVFILTER_AVFILTERGRAPH_H */