avfiltergraph.h 11 KB

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