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.

249 lines
9.5KB

  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. /**
  33. * Private fields
  34. *
  35. * The following fields are for internal use only.
  36. * Their type, offset, number and semantic can change without notice.
  37. */
  38. AVFilterLink **sink_links;
  39. int sink_links_count;
  40. } AVFilterGraph;
  41. /**
  42. * Allocate a filter graph.
  43. */
  44. AVFilterGraph *avfilter_graph_alloc(void);
  45. /**
  46. * Get a filter instance with name name from graph.
  47. *
  48. * @return the pointer to the found filter instance or NULL if it
  49. * cannot be found.
  50. */
  51. AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name);
  52. /**
  53. * Add an existing filter instance to a filter graph.
  54. *
  55. * @param graphctx the filter graph
  56. * @param filter the filter to be added
  57. */
  58. int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
  59. /**
  60. * Create and add a filter instance into an existing graph.
  61. * The filter instance is created from the filter filt and inited
  62. * with the parameters args and opaque.
  63. *
  64. * In case of success put in *filt_ctx the pointer to the created
  65. * filter instance, otherwise set *filt_ctx to NULL.
  66. *
  67. * @param name the instance name to give to the created filter instance
  68. * @param graph_ctx the filter graph
  69. * @return a negative AVERROR error code in case of failure, a non
  70. * negative value otherwise
  71. */
  72. int avfilter_graph_create_filter(AVFilterContext **filt_ctx, AVFilter *filt,
  73. const char *name, const char *args, void *opaque,
  74. AVFilterGraph *graph_ctx);
  75. /**
  76. * Check validity and configure all the links and formats in the graph.
  77. *
  78. * @param graphctx the filter graph
  79. * @param log_ctx context used for logging
  80. * @return 0 in case of success, a negative AVERROR code otherwise
  81. */
  82. int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx);
  83. /**
  84. * Free a graph, destroy its links, and set *graph to NULL.
  85. * If *graph is NULL, do nothing.
  86. */
  87. void avfilter_graph_free(AVFilterGraph **graph);
  88. /**
  89. * A linked-list of the inputs/outputs of the filter chain.
  90. *
  91. * This is mainly useful for avfilter_graph_parse() / avfilter_graph_parse2(),
  92. * where it is used to communicate open (unlinked) inputs and outputs from and
  93. * to the caller.
  94. * This struct specifies, per each not connected pad contained in the graph, the
  95. * filter context and the pad index required for establishing a link.
  96. */
  97. typedef struct AVFilterInOut {
  98. /** unique name for this input/output in the list */
  99. char *name;
  100. /** filter context associated to this input/output */
  101. AVFilterContext *filter_ctx;
  102. /** index of the filt_ctx pad to use for linking */
  103. int pad_idx;
  104. /** next input/input in the list, NULL if this is the last */
  105. struct AVFilterInOut *next;
  106. } AVFilterInOut;
  107. /**
  108. * Allocate a single AVFilterInOut entry.
  109. * Must be freed with avfilter_inout_free().
  110. * @return allocated AVFilterInOut on success, NULL on failure.
  111. */
  112. AVFilterInOut *avfilter_inout_alloc(void);
  113. /**
  114. * Free the supplied list of AVFilterInOut and set *inout to NULL.
  115. * If *inout is NULL, do nothing.
  116. */
  117. void avfilter_inout_free(AVFilterInOut **inout);
  118. /**
  119. * Add a graph described by a string to a graph.
  120. *
  121. * @param graph the filter graph where to link the parsed graph context
  122. * @param filters string to be parsed
  123. * @param inputs pointer to a linked list to the inputs of the graph, may be NULL.
  124. * If non-NULL, *inputs is updated to contain the list of open inputs
  125. * after the parsing, should be freed with avfilter_inout_free().
  126. * @param outputs pointer to a linked list to the outputs of the graph, may be NULL.
  127. * If non-NULL, *outputs is updated to contain the list of open outputs
  128. * after the parsing, should be freed with avfilter_inout_free().
  129. * @return non negative on success, a negative AVERROR code on error
  130. */
  131. int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
  132. AVFilterInOut **inputs, AVFilterInOut **outputs,
  133. void *log_ctx);
  134. /**
  135. * Add a graph described by a string to a graph.
  136. *
  137. * @param[in] graph the filter graph where to link the parsed graph context
  138. * @param[in] filters string to be parsed
  139. * @param[out] inputs a linked list of all free (unlinked) inputs of the
  140. * parsed graph will be returned here. It is to be freed
  141. * by the caller using avfilter_inout_free().
  142. * @param[out] outputs a linked list of all free (unlinked) outputs of the
  143. * parsed graph will be returned here. It is to be freed by the
  144. * caller using avfilter_inout_free().
  145. * @return zero on success, a negative AVERROR code on error
  146. *
  147. * @note the difference between avfilter_graph_parse2() and
  148. * avfilter_graph_parse() is that in avfilter_graph_parse(), the caller provides
  149. * the lists of inputs and outputs, which therefore must be known before calling
  150. * the function. On the other hand, avfilter_graph_parse2() \em returns the
  151. * inputs and outputs that are left unlinked after parsing the graph and the
  152. * caller then deals with them. Another difference is that in
  153. * avfilter_graph_parse(), the inputs parameter describes inputs of the
  154. * <em>already existing</em> part of the graph; i.e. from the point of view of
  155. * the newly created part, they are outputs. Similarly the outputs parameter
  156. * describes outputs of the already existing filters, which are provided as
  157. * inputs to the parsed filters.
  158. * avfilter_graph_parse2() takes the opposite approach -- it makes no reference
  159. * whatsoever to already existing parts of the graph and the inputs parameter
  160. * will on return contain inputs of the newly parsed part of the graph.
  161. * Analogously the outputs parameter will contain outputs of the newly created
  162. * filters.
  163. */
  164. int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters,
  165. AVFilterInOut **inputs,
  166. AVFilterInOut **outputs);
  167. /**
  168. * Send a command to one or more filter instances.
  169. *
  170. * @param graph the filter graph
  171. * @param target the filter(s) to which the command should be sent
  172. * "all" sends to all filters
  173. * otherwise it can be a filter or filter instance name
  174. * which will send the command to all matching filters.
  175. * @param cmd the command to sent, for handling simplicity all commands must be alphanumeric only
  176. * @param arg the argument for the command
  177. * @param res a buffer with size res_size where the filter(s) can return a response.
  178. *
  179. * @returns >=0 on success otherwise an error code.
  180. * AVERROR(ENOSYS) on unsupported commands
  181. */
  182. int avfilter_graph_send_command(AVFilterGraph *graph, const char *target, const char *cmd, const char *arg, char *res, int res_len, int flags);
  183. /**
  184. * Queue a command for one or more filter instances.
  185. *
  186. * @param graph the filter graph
  187. * @param target the filter(s) to which the command should be sent
  188. * "all" sends to all filters
  189. * otherwise it can be a filter or filter instance name
  190. * which will send the command to all matching filters.
  191. * @param cmd the command to sent, for handling simplicity all commands must be alphanummeric only
  192. * @param arg the argument for the command
  193. * @param ts time at which the command should be sent to the filter
  194. *
  195. * @note As this executes commands after this function returns, no return code
  196. * from the filter is provided, also AVFILTER_CMD_FLAG_ONE is not supported.
  197. */
  198. int avfilter_graph_queue_command(AVFilterGraph *graph, const char *target, const char *cmd, const char *arg, int flags, double ts);
  199. /**
  200. * Dump a graph into a human-readable string representation.
  201. *
  202. * @param graph the graph to dump
  203. * @param options formatting options; currently ignored
  204. * @return a string, or NULL in case of memory allocation failure;
  205. * the string must be freed using av_free
  206. */
  207. char *avfilter_graph_dump(AVFilterGraph *graph, const char *options);
  208. /**
  209. * Request a frame on the oldest sink link.
  210. *
  211. * If the request returns AVERROR_EOF, try the next.
  212. *
  213. * Note that this function is not meant to be the sole scheduling mechanism
  214. * of a filtergraph, only a convenience function to help drain a filtergraph
  215. * in a balanced way under normal circumstances.
  216. *
  217. * @return the return value of avfilter_request_frame,
  218. * or AVERROR_EOF of all links returned AVERROR_EOF.
  219. */
  220. int avfilter_graph_request_oldest(AVFilterGraph *graph);
  221. #endif /* AVFILTER_AVFILTERGRAPH_H */