avfilter.h 29 KB

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