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.

810 lines
29KB

  1. /*
  2. * filter layer
  3. * Copyright (c) 2007 Bobby Bingham
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #ifndef AVFILTER_AVFILTER_H
  22. #define AVFILTER_AVFILTER_H
  23. /**
  24. * @file
  25. * @ingroup lavfi
  26. * Main libavfilter public API header
  27. */
  28. /**
  29. * @defgroup lavfi Libavfilter - graph-based frame editing library
  30. * @{
  31. */
  32. #include "libavutil/attributes.h"
  33. #include "libavutil/avutil.h"
  34. #include "libavutil/frame.h"
  35. #include "libavutil/log.h"
  36. #include "libavutil/samplefmt.h"
  37. #include "libavutil/pixfmt.h"
  38. #include "libavutil/rational.h"
  39. #include <stddef.h>
  40. #include "libavfilter/version.h"
  41. /**
  42. * Return the LIBAVFILTER_VERSION_INT constant.
  43. */
  44. unsigned avfilter_version(void);
  45. /**
  46. * Return the libavfilter build-time configuration.
  47. */
  48. const char *avfilter_configuration(void);
  49. /**
  50. * Return the libavfilter license.
  51. */
  52. const char *avfilter_license(void);
  53. typedef struct AVFilterContext AVFilterContext;
  54. typedef struct AVFilterLink AVFilterLink;
  55. typedef struct AVFilterPad AVFilterPad;
  56. typedef struct AVFilterFormats AVFilterFormats;
  57. /**
  58. * Get the number of elements in a NULL-terminated array of AVFilterPads (e.g.
  59. * AVFilter.inputs/outputs).
  60. */
  61. int avfilter_pad_count(const AVFilterPad *pads);
  62. /**
  63. * Get the name of an AVFilterPad.
  64. *
  65. * @param pads an array of AVFilterPads
  66. * @param pad_idx index of the pad in the array it; is the caller's
  67. * responsibility to ensure the index is valid
  68. *
  69. * @return name of the pad_idx'th pad in pads
  70. */
  71. const char *avfilter_pad_get_name(const AVFilterPad *pads, int pad_idx);
  72. /**
  73. * Get the type of an AVFilterPad.
  74. *
  75. * @param pads an array of AVFilterPads
  76. * @param pad_idx index of the pad in the array; it is the caller's
  77. * responsibility to ensure the index is valid
  78. *
  79. * @return type of the pad_idx'th pad in pads
  80. */
  81. enum AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int pad_idx);
  82. /**
  83. * The number of the filter inputs is not determined just by AVFilter.inputs.
  84. * The filter might add additional inputs during initialization depending on the
  85. * options supplied to it.
  86. */
  87. #define AVFILTER_FLAG_DYNAMIC_INPUTS (1 << 0)
  88. /**
  89. * The number of the filter outputs is not determined just by AVFilter.outputs.
  90. * The filter might add additional outputs during initialization depending on
  91. * the options supplied to it.
  92. */
  93. #define AVFILTER_FLAG_DYNAMIC_OUTPUTS (1 << 1)
  94. /**
  95. * The filter supports multithreading by splitting frames into multiple parts
  96. * and processing them concurrently.
  97. */
  98. #define AVFILTER_FLAG_SLICE_THREADS (1 << 2)
  99. /**
  100. * Filter definition. This defines the pads a filter contains, and all the
  101. * callback functions used to interact with the filter.
  102. */
  103. typedef struct AVFilter {
  104. /**
  105. * Filter name. Must be non-NULL and unique among filters.
  106. */
  107. const char *name;
  108. /**
  109. * A description of the filter. May be NULL.
  110. *
  111. * You should use the NULL_IF_CONFIG_SMALL() macro to define it.
  112. */
  113. const char *description;
  114. /**
  115. * List of inputs, terminated by a zeroed element.
  116. *
  117. * NULL if there are no (static) inputs. Instances of filters with
  118. * AVFILTER_FLAG_DYNAMIC_INPUTS set may have more inputs than present in
  119. * this list.
  120. */
  121. const AVFilterPad *inputs;
  122. /**
  123. * List of outputs, terminated by a zeroed element.
  124. *
  125. * NULL if there are no (static) outputs. Instances of filters with
  126. * AVFILTER_FLAG_DYNAMIC_OUTPUTS set may have more outputs than present in
  127. * this list.
  128. */
  129. const AVFilterPad *outputs;
  130. /**
  131. * A class for the private data, used to declare filter private AVOptions.
  132. * This field is NULL for filters that do not declare any options.
  133. *
  134. * If this field is non-NULL, the first member of the filter private data
  135. * must be a pointer to AVClass, which will be set by libavfilter generic
  136. * code to this class.
  137. */
  138. const AVClass *priv_class;
  139. /**
  140. * A combination of AVFILTER_FLAG_*
  141. */
  142. int flags;
  143. /*****************************************************************
  144. * All fields below this line are not part of the public API. They
  145. * may not be used outside of libavfilter and can be changed and
  146. * removed at will.
  147. * New public fields should be added right above.
  148. *****************************************************************
  149. */
  150. /**
  151. * Filter initialization function.
  152. *
  153. * This callback will be called only once during the filter lifetime, after
  154. * all the options have been set, but before links between filters are
  155. * established and format negotiation is done.
  156. *
  157. * Basic filter initialization should be done here. Filters with dynamic
  158. * inputs and/or outputs should create those inputs/outputs here based on
  159. * provided options. No more changes to this filter's inputs/outputs can be
  160. * done after this callback.
  161. *
  162. * This callback must not assume that the filter links exist or frame
  163. * parameters are known.
  164. *
  165. * @ref AVFilter.uninit "uninit" is guaranteed to be called even if
  166. * initialization fails, so this callback does not have to clean up on
  167. * failure.
  168. *
  169. * @return 0 on success, a negative AVERROR on failure
  170. */
  171. int (*init)(AVFilterContext *ctx);
  172. /**
  173. * Should be set instead of @ref AVFilter.init "init" by the filters that
  174. * want to pass a dictionary of AVOptions to nested contexts that are
  175. * allocated during init.
  176. *
  177. * On return, the options dict should be freed and replaced with one that
  178. * contains all the options which could not be processed by this filter (or
  179. * with NULL if all the options were processed).
  180. *
  181. * Otherwise the semantics is the same as for @ref AVFilter.init "init".
  182. */
  183. int (*init_dict)(AVFilterContext *ctx, AVDictionary **options);
  184. /**
  185. * Filter uninitialization function.
  186. *
  187. * Called only once right before the filter is freed. Should deallocate any
  188. * memory held by the filter, release any buffer references, etc. It does
  189. * not need to deallocate the AVFilterContext.priv memory itself.
  190. *
  191. * This callback may be called even if @ref AVFilter.init "init" was not
  192. * called or failed, so it must be prepared to handle such a situation.
  193. */
  194. void (*uninit)(AVFilterContext *ctx);
  195. /**
  196. * Query formats supported by the filter on its inputs and outputs.
  197. *
  198. * This callback is called after the filter is initialized (so the inputs
  199. * and outputs are fixed), shortly before the format negotiation. This
  200. * callback may be called more than once.
  201. *
  202. * This callback must set AVFilterLink.out_formats on every input link and
  203. * AVFilterLink.in_formats on every output link to a list of pixel/sample
  204. * formats that the filter supports on that link. For audio links, this
  205. * filter must also set @ref AVFilterLink.in_samplerates "in_samplerates" /
  206. * @ref AVFilterLink.out_samplerates "out_samplerates" and
  207. * @ref AVFilterLink.in_channel_layouts "in_channel_layouts" /
  208. * @ref AVFilterLink.out_channel_layouts "out_channel_layouts" analogously.
  209. *
  210. * This callback may be NULL for filters with one input, in which case
  211. * libavfilter assumes that it supports all input formats and preserves
  212. * them on output.
  213. *
  214. * @return zero on success, a negative value corresponding to an
  215. * AVERROR code otherwise
  216. */
  217. int (*query_formats)(AVFilterContext *);
  218. int priv_size; ///< size of private data to allocate for the filter
  219. /**
  220. * Used by the filter registration system. Must not be touched by any other
  221. * code.
  222. */
  223. struct AVFilter *next;
  224. } AVFilter;
  225. /**
  226. * Process multiple parts of the frame concurrently.
  227. */
  228. #define AVFILTER_THREAD_SLICE (1 << 0)
  229. typedef struct AVFilterInternal AVFilterInternal;
  230. /** An instance of a filter */
  231. struct AVFilterContext {
  232. const AVClass *av_class; ///< needed for av_log()
  233. const AVFilter *filter; ///< the AVFilter of which this is an instance
  234. char *name; ///< name of this filter instance
  235. AVFilterPad *input_pads; ///< array of input pads
  236. AVFilterLink **inputs; ///< array of pointers to input links
  237. unsigned nb_inputs; ///< number of input pads
  238. AVFilterPad *output_pads; ///< array of output pads
  239. AVFilterLink **outputs; ///< array of pointers to output links
  240. unsigned nb_outputs; ///< number of output pads
  241. void *priv; ///< private data for use by the filter
  242. struct AVFilterGraph *graph; ///< filtergraph this filter belongs to
  243. /**
  244. * Type of multithreading being allowed/used. A combination of
  245. * AVFILTER_THREAD_* flags.
  246. *
  247. * May be set by the caller before initializing the filter to forbid some
  248. * or all kinds of multithreading for this filter. The default is allowing
  249. * everything.
  250. *
  251. * When the filter is initialized, this field is combined using bit AND with
  252. * AVFilterGraph.thread_type to get the final mask used for determining
  253. * allowed threading types. I.e. a threading type needs to be set in both
  254. * to be allowed.
  255. *
  256. * After the filter is initialzed, libavfilter sets this field to the
  257. * threading type that is actually used (0 for no multithreading).
  258. */
  259. int thread_type;
  260. /**
  261. * An opaque struct for libavfilter internal use.
  262. */
  263. AVFilterInternal *internal;
  264. };
  265. /**
  266. * A link between two filters. This contains pointers to the source and
  267. * destination filters between which this link exists, and the indexes of
  268. * the pads involved. In addition, this link also contains the parameters
  269. * which have been negotiated and agreed upon between the filter, such as
  270. * image dimensions, format, etc.
  271. */
  272. struct AVFilterLink {
  273. AVFilterContext *src; ///< source filter
  274. AVFilterPad *srcpad; ///< output pad on the source filter
  275. AVFilterContext *dst; ///< dest filter
  276. AVFilterPad *dstpad; ///< input pad on the dest filter
  277. enum AVMediaType type; ///< filter media type
  278. /* These parameters apply only to video */
  279. int w; ///< agreed upon image width
  280. int h; ///< agreed upon image height
  281. AVRational sample_aspect_ratio; ///< agreed upon sample aspect ratio
  282. /* These two parameters apply only to audio */
  283. uint64_t channel_layout; ///< channel layout of current buffer (see libavutil/channel_layout.h)
  284. int sample_rate; ///< samples per second
  285. int format; ///< agreed upon media format
  286. /**
  287. * Define the time base used by the PTS of the frames/samples
  288. * which will pass through this link.
  289. * During the configuration stage, each filter is supposed to
  290. * change only the output timebase, while the timebase of the
  291. * input link is assumed to be an unchangeable property.
  292. */
  293. AVRational time_base;
  294. /*****************************************************************
  295. * All fields below this line are not part of the public API. They
  296. * may not be used outside of libavfilter and can be changed and
  297. * removed at will.
  298. * New public fields should be added right above.
  299. *****************************************************************
  300. */
  301. /**
  302. * Lists of formats supported by the input and output filters respectively.
  303. * These lists are used for negotiating the format to actually be used,
  304. * which will be loaded into the format member, above, when chosen.
  305. */
  306. AVFilterFormats *in_formats;
  307. AVFilterFormats *out_formats;
  308. /**
  309. * Lists of channel layouts and sample rates used for automatic
  310. * negotiation.
  311. */
  312. AVFilterFormats *in_samplerates;
  313. AVFilterFormats *out_samplerates;
  314. struct AVFilterChannelLayouts *in_channel_layouts;
  315. struct AVFilterChannelLayouts *out_channel_layouts;
  316. /**
  317. * Audio only, the destination filter sets this to a non-zero value to
  318. * request that buffers with the given number of samples should be sent to
  319. * it. AVFilterPad.needs_fifo must also be set on the corresponding input
  320. * pad.
  321. * Last buffer before EOF will be padded with silence.
  322. */
  323. int request_samples;
  324. /** stage of the initialization of the link properties (dimensions, etc) */
  325. enum {
  326. AVLINK_UNINIT = 0, ///< not started
  327. AVLINK_STARTINIT, ///< started, but incomplete
  328. AVLINK_INIT ///< complete
  329. } init_state;
  330. /**
  331. * Frame rate of the stream on the link, or 1/0 if unknown or variable;
  332. * if left to 0/0, will be automatically copied from the first input
  333. * of the source filter if it exists.
  334. *
  335. * Sources should set it to the real constant frame rate.
  336. * If the source frame rate is unknown or variable, set this to 1/0.
  337. * Filters should update it if necessary depending on their function.
  338. * Sinks can use it to set a default output frame rate.
  339. */
  340. AVRational frame_rate;
  341. };
  342. /**
  343. * Link two filters together.
  344. *
  345. * @param src the source filter
  346. * @param srcpad index of the output pad on the source filter
  347. * @param dst the destination filter
  348. * @param dstpad index of the input pad on the destination filter
  349. * @return zero on success
  350. */
  351. int avfilter_link(AVFilterContext *src, unsigned srcpad,
  352. AVFilterContext *dst, unsigned dstpad);
  353. /**
  354. * Negotiate the media format, dimensions, etc of all inputs to a filter.
  355. *
  356. * @param filter the filter to negotiate the properties for its inputs
  357. * @return zero on successful negotiation
  358. */
  359. int avfilter_config_links(AVFilterContext *filter);
  360. /** Initialize the filter system. Register all builtin filters. */
  361. void avfilter_register_all(void);
  362. #if FF_API_OLD_FILTER_REGISTER
  363. /** Uninitialize the filter system. Unregister all filters. */
  364. attribute_deprecated
  365. void avfilter_uninit(void);
  366. #endif
  367. /**
  368. * Register a filter. This is only needed if you plan to use
  369. * avfilter_get_by_name later to lookup the AVFilter structure by name. A
  370. * filter can still by instantiated with avfilter_graph_alloc_filter even if it
  371. * is not registered.
  372. *
  373. * @param filter the filter to register
  374. * @return 0 if the registration was succesfull, a negative value
  375. * otherwise
  376. */
  377. int avfilter_register(AVFilter *filter);
  378. /**
  379. * Get a filter definition matching the given name.
  380. *
  381. * @param name the filter name to find
  382. * @return the filter definition, if any matching one is registered.
  383. * NULL if none found.
  384. */
  385. #if !FF_API_NOCONST_GET_NAME
  386. const
  387. #endif
  388. AVFilter *avfilter_get_by_name(const char *name);
  389. /**
  390. * Iterate over all registered filters.
  391. * @return If prev is non-NULL, next registered filter after prev or NULL if
  392. * prev is the last filter. If prev is NULL, return the first registered filter.
  393. */
  394. const AVFilter *avfilter_next(const AVFilter *prev);
  395. #if FF_API_OLD_FILTER_REGISTER
  396. /**
  397. * If filter is NULL, returns a pointer to the first registered filter pointer,
  398. * if filter is non-NULL, returns the next pointer after filter.
  399. * If the returned pointer points to NULL, the last registered filter
  400. * was already reached.
  401. * @deprecated use avfilter_next()
  402. */
  403. attribute_deprecated
  404. AVFilter **av_filter_next(AVFilter **filter);
  405. #endif
  406. #if FF_API_AVFILTER_OPEN
  407. /**
  408. * Create a filter instance.
  409. *
  410. * @param filter_ctx put here a pointer to the created filter context
  411. * on success, NULL on failure
  412. * @param filter the filter to create an instance of
  413. * @param inst_name Name to give to the new instance. Can be NULL for none.
  414. * @return >= 0 in case of success, a negative error code otherwise
  415. * @deprecated use avfilter_graph_alloc_filter() instead
  416. */
  417. attribute_deprecated
  418. int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
  419. #endif
  420. #if FF_API_AVFILTER_INIT_FILTER
  421. /**
  422. * Initialize a filter.
  423. *
  424. * @param filter the filter to initialize
  425. * @param args A string of parameters to use when initializing the filter.
  426. * The format and meaning of this string varies by filter.
  427. * @param opaque Any extra non-string data needed by the filter. The meaning
  428. * of this parameter varies by filter.
  429. * @return zero on success
  430. */
  431. attribute_deprecated
  432. int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
  433. #endif
  434. /**
  435. * Initialize a filter with the supplied parameters.
  436. *
  437. * @param ctx uninitialized filter context to initialize
  438. * @param args Options to initialize the filter with. This must be a
  439. * ':'-separated list of options in the 'key=value' form.
  440. * May be NULL if the options have been set directly using the
  441. * AVOptions API or there are no options that need to be set.
  442. * @return 0 on success, a negative AVERROR on failure
  443. */
  444. int avfilter_init_str(AVFilterContext *ctx, const char *args);
  445. /**
  446. * Initialize a filter with the supplied dictionary of options.
  447. *
  448. * @param ctx uninitialized filter context to initialize
  449. * @param options An AVDictionary filled with options for this filter. On
  450. * return this parameter will be destroyed and replaced with
  451. * a dict containing options that were not found. This dictionary
  452. * must be freed by the caller.
  453. * May be NULL, then this function is equivalent to
  454. * avfilter_init_str() with the second parameter set to NULL.
  455. * @return 0 on success, a negative AVERROR on failure
  456. *
  457. * @note This function and avfilter_init_str() do essentially the same thing,
  458. * the difference is in manner in which the options are passed. It is up to the
  459. * calling code to choose whichever is more preferable. The two functions also
  460. * behave differently when some of the provided options are not declared as
  461. * supported by the filter. In such a case, avfilter_init_str() will fail, but
  462. * this function will leave those extra options in the options AVDictionary and
  463. * continue as usual.
  464. */
  465. int avfilter_init_dict(AVFilterContext *ctx, AVDictionary **options);
  466. /**
  467. * Free a filter context. This will also remove the filter from its
  468. * filtergraph's list of filters.
  469. *
  470. * @param filter the filter to free
  471. */
  472. void avfilter_free(AVFilterContext *filter);
  473. /**
  474. * Insert a filter in the middle of an existing link.
  475. *
  476. * @param link the link into which the filter should be inserted
  477. * @param filt the filter to be inserted
  478. * @param filt_srcpad_idx the input pad on the filter to connect
  479. * @param filt_dstpad_idx the output pad on the filter to connect
  480. * @return zero on success
  481. */
  482. int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
  483. unsigned filt_srcpad_idx, unsigned filt_dstpad_idx);
  484. /**
  485. * @return AVClass for AVFilterContext.
  486. *
  487. * @see av_opt_find().
  488. */
  489. const AVClass *avfilter_get_class(void);
  490. typedef struct AVFilterGraphInternal AVFilterGraphInternal;
  491. /**
  492. * A function pointer passed to the @ref AVFilterGraph.execute callback to be
  493. * executed multiple times, possibly in parallel.
  494. *
  495. * @param ctx the filter context the job belongs to
  496. * @param arg an opaque parameter passed through from @ref
  497. * AVFilterGraph.execute
  498. * @param jobnr the index of the job being executed
  499. * @param nb_jobs the total number of jobs
  500. *
  501. * @return 0 on success, a negative AVERROR on error
  502. */
  503. typedef int (avfilter_action_func)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
  504. /**
  505. * A function executing multiple jobs, possibly in parallel.
  506. *
  507. * @param ctx the filter context to which the jobs belong
  508. * @param func the function to be called multiple times
  509. * @param arg the argument to be passed to func
  510. * @param ret a nb_jobs-sized array to be filled with return values from each
  511. * invocation of func
  512. * @param nb_jobs the number of jobs to execute
  513. *
  514. * @return 0 on success, a negative AVERROR on error
  515. */
  516. typedef int (avfilter_execute_func)(AVFilterContext *ctx, avfilter_action_func *func,
  517. void *arg, int *ret, int nb_jobs);
  518. typedef struct AVFilterGraph {
  519. const AVClass *av_class;
  520. AVFilterContext **filters;
  521. unsigned nb_filters;
  522. char *scale_sws_opts; ///< sws options to use for the auto-inserted scale filters
  523. char *resample_lavr_opts; ///< libavresample options to use for the auto-inserted resample filters
  524. /**
  525. * Type of multithreading allowed for filters in this graph. A combination
  526. * of AVFILTER_THREAD_* flags.
  527. *
  528. * May be set by the caller at any point, the setting will apply to all
  529. * filters initialized after that. The default is allowing everything.
  530. *
  531. * When a filter in this graph is initialized, this field is combined using
  532. * bit AND with AVFilterContext.thread_type to get the final mask used for
  533. * determining allowed threading types. I.e. a threading type needs to be
  534. * set in both to be allowed.
  535. */
  536. int thread_type;
  537. /**
  538. * Maximum number of threads used by filters in this graph. May be set by
  539. * the caller before adding any filters to the filtergraph. Zero (the
  540. * default) means that the number of threads is determined automatically.
  541. */
  542. int nb_threads;
  543. /**
  544. * Opaque object for libavfilter internal use.
  545. */
  546. AVFilterGraphInternal *internal;
  547. /**
  548. * Opaque user data. May be set by the caller to an arbitrary value, e.g. to
  549. * be used from callbacks like @ref AVFilterGraph.execute.
  550. * Libavfilter will not touch this field in any way.
  551. */
  552. void *opaque;
  553. /**
  554. * This callback may be set by the caller immediately after allocating the
  555. * graph and before adding any filters to it, to provide a custom
  556. * multithreading implementation.
  557. *
  558. * If set, filters with slice threading capability will call this callback
  559. * to execute multiple jobs in parallel.
  560. *
  561. * If this field is left unset, libavfilter will use its internal
  562. * implementation, which may or may not be multithreaded depending on the
  563. * platform and build options.
  564. */
  565. avfilter_execute_func *execute;
  566. } AVFilterGraph;
  567. /**
  568. * Allocate a filter graph.
  569. *
  570. * @return the allocated filter graph on success or NULL.
  571. */
  572. AVFilterGraph *avfilter_graph_alloc(void);
  573. /**
  574. * Create a new filter instance in a filter graph.
  575. *
  576. * @param graph graph in which the new filter will be used
  577. * @param filter the filter to create an instance of
  578. * @param name Name to give to the new instance (will be copied to
  579. * AVFilterContext.name). This may be used by the caller to identify
  580. * different filters, libavfilter itself assigns no semantics to
  581. * this parameter. May be NULL.
  582. *
  583. * @return the context of the newly created filter instance (note that it is
  584. * also retrievable directly through AVFilterGraph.filters or with
  585. * avfilter_graph_get_filter()) on success or NULL or failure.
  586. */
  587. AVFilterContext *avfilter_graph_alloc_filter(AVFilterGraph *graph,
  588. const AVFilter *filter,
  589. const char *name);
  590. /**
  591. * Get a filter instance with name name from graph.
  592. *
  593. * @return the pointer to the found filter instance or NULL if it
  594. * cannot be found.
  595. */
  596. AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name);
  597. #if FF_API_AVFILTER_OPEN
  598. /**
  599. * Add an existing filter instance to a filter graph.
  600. *
  601. * @param graphctx the filter graph
  602. * @param filter the filter to be added
  603. *
  604. * @deprecated use avfilter_graph_alloc_filter() to allocate a filter in a
  605. * filter graph
  606. */
  607. attribute_deprecated
  608. int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
  609. #endif
  610. /**
  611. * Create and add a filter instance into an existing graph.
  612. * The filter instance is created from the filter filt and inited
  613. * with the parameters args and opaque.
  614. *
  615. * In case of success put in *filt_ctx the pointer to the created
  616. * filter instance, otherwise set *filt_ctx to NULL.
  617. *
  618. * @param name the instance name to give to the created filter instance
  619. * @param graph_ctx the filter graph
  620. * @return a negative AVERROR error code in case of failure, a non
  621. * negative value otherwise
  622. */
  623. int avfilter_graph_create_filter(AVFilterContext **filt_ctx, const AVFilter *filt,
  624. const char *name, const char *args, void *opaque,
  625. AVFilterGraph *graph_ctx);
  626. /**
  627. * Check validity and configure all the links and formats in the graph.
  628. *
  629. * @param graphctx the filter graph
  630. * @param log_ctx context used for logging
  631. * @return 0 in case of success, a negative AVERROR code otherwise
  632. */
  633. int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx);
  634. /**
  635. * Free a graph, destroy its links, and set *graph to NULL.
  636. * If *graph is NULL, do nothing.
  637. */
  638. void avfilter_graph_free(AVFilterGraph **graph);
  639. /**
  640. * A linked-list of the inputs/outputs of the filter chain.
  641. *
  642. * This is mainly useful for avfilter_graph_parse() / avfilter_graph_parse2(),
  643. * where it is used to communicate open (unlinked) inputs and outputs from and
  644. * to the caller.
  645. * This struct specifies, per each not connected pad contained in the graph, the
  646. * filter context and the pad index required for establishing a link.
  647. */
  648. typedef struct AVFilterInOut {
  649. /** unique name for this input/output in the list */
  650. char *name;
  651. /** filter context associated to this input/output */
  652. AVFilterContext *filter_ctx;
  653. /** index of the filt_ctx pad to use for linking */
  654. int pad_idx;
  655. /** next input/input in the list, NULL if this is the last */
  656. struct AVFilterInOut *next;
  657. } AVFilterInOut;
  658. /**
  659. * Allocate a single AVFilterInOut entry.
  660. * Must be freed with avfilter_inout_free().
  661. * @return allocated AVFilterInOut on success, NULL on failure.
  662. */
  663. AVFilterInOut *avfilter_inout_alloc(void);
  664. /**
  665. * Free the supplied list of AVFilterInOut and set *inout to NULL.
  666. * If *inout is NULL, do nothing.
  667. */
  668. void avfilter_inout_free(AVFilterInOut **inout);
  669. /**
  670. * Add a graph described by a string to a graph.
  671. *
  672. * @param graph the filter graph where to link the parsed graph context
  673. * @param filters string to be parsed
  674. * @param inputs linked list to the inputs of the graph
  675. * @param outputs linked list to the outputs of the graph
  676. * @return zero on success, a negative AVERROR code on error
  677. */
  678. int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
  679. AVFilterInOut *inputs, AVFilterInOut *outputs,
  680. void *log_ctx);
  681. /**
  682. * Add a graph described by a string to a graph.
  683. *
  684. * @param[in] graph the filter graph where to link the parsed graph context
  685. * @param[in] filters string to be parsed
  686. * @param[out] inputs a linked list of all free (unlinked) inputs of the
  687. * parsed graph will be returned here. It is to be freed
  688. * by the caller using avfilter_inout_free().
  689. * @param[out] outputs a linked list of all free (unlinked) outputs of the
  690. * parsed graph will be returned here. It is to be freed by the
  691. * caller using avfilter_inout_free().
  692. * @return zero on success, a negative AVERROR code on error
  693. *
  694. * @note the difference between avfilter_graph_parse2() and
  695. * avfilter_graph_parse() is that in avfilter_graph_parse(), the caller provides
  696. * the lists of inputs and outputs, which therefore must be known before calling
  697. * the function. On the other hand, avfilter_graph_parse2() \em returns the
  698. * inputs and outputs that are left unlinked after parsing the graph and the
  699. * caller then deals with them. Another difference is that in
  700. * avfilter_graph_parse(), the inputs parameter describes inputs of the
  701. * <em>already existing</em> part of the graph; i.e. from the point of view of
  702. * the newly created part, they are outputs. Similarly the outputs parameter
  703. * describes outputs of the already existing filters, which are provided as
  704. * inputs to the parsed filters.
  705. * avfilter_graph_parse2() takes the opposite approach -- it makes no reference
  706. * whatsoever to already existing parts of the graph and the inputs parameter
  707. * will on return contain inputs of the newly parsed part of the graph.
  708. * Analogously the outputs parameter will contain outputs of the newly created
  709. * filters.
  710. */
  711. int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters,
  712. AVFilterInOut **inputs,
  713. AVFilterInOut **outputs);
  714. /**
  715. * @}
  716. */
  717. #endif /* AVFILTER_AVFILTER_H */