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.

1079 lines
39KB

  1. /*
  2. * filter layer
  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_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 <stddef.h>
  33. #include "libavutil/attributes.h"
  34. #include "libavutil/avutil.h"
  35. #include "libavutil/dict.h"
  36. #include "libavutil/frame.h"
  37. #include "libavutil/log.h"
  38. #include "libavutil/samplefmt.h"
  39. #include "libavutil/pixfmt.h"
  40. #include "libavutil/rational.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. * Some filters support a generic "enable" expression option that can be used
  102. * to enable or disable a filter in the timeline. Filters supporting this
  103. * option have this flag set. When the enable expression is false, the default
  104. * no-op filter_frame() function is called in place of the filter_frame()
  105. * callback defined on each input pad, thus the frame is passed unchanged to
  106. * the next filters.
  107. */
  108. #define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC (1 << 16)
  109. /**
  110. * Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will
  111. * have its filter_frame() callback(s) called as usual even when the enable
  112. * expression is false. The filter will disable filtering within the
  113. * filter_frame() callback(s) itself, for example executing code depending on
  114. * the AVFilterContext->is_disabled value.
  115. */
  116. #define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL (1 << 17)
  117. /**
  118. * Handy mask to test whether the filter supports or no the timeline feature
  119. * (internally or generically).
  120. */
  121. #define AVFILTER_FLAG_SUPPORT_TIMELINE (AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL)
  122. /**
  123. * Filter definition. This defines the pads a filter contains, and all the
  124. * callback functions used to interact with the filter.
  125. */
  126. typedef struct AVFilter {
  127. /**
  128. * Filter name. Must be non-NULL and unique among filters.
  129. */
  130. const char *name;
  131. /**
  132. * A description of the filter. May be NULL.
  133. *
  134. * You should use the NULL_IF_CONFIG_SMALL() macro to define it.
  135. */
  136. const char *description;
  137. /**
  138. * List of inputs, terminated by a zeroed element.
  139. *
  140. * NULL if there are no (static) inputs. Instances of filters with
  141. * AVFILTER_FLAG_DYNAMIC_INPUTS set may have more inputs than present in
  142. * this list.
  143. */
  144. const AVFilterPad *inputs;
  145. /**
  146. * List of outputs, terminated by a zeroed element.
  147. *
  148. * NULL if there are no (static) outputs. Instances of filters with
  149. * AVFILTER_FLAG_DYNAMIC_OUTPUTS set may have more outputs than present in
  150. * this list.
  151. */
  152. const AVFilterPad *outputs;
  153. /**
  154. * A class for the private data, used to declare filter private AVOptions.
  155. * This field is NULL for filters that do not declare any options.
  156. *
  157. * If this field is non-NULL, the first member of the filter private data
  158. * must be a pointer to AVClass, which will be set by libavfilter generic
  159. * code to this class.
  160. */
  161. const AVClass *priv_class;
  162. /**
  163. * A combination of AVFILTER_FLAG_*
  164. */
  165. int flags;
  166. /*****************************************************************
  167. * All fields below this line are not part of the public API. They
  168. * may not be used outside of libavfilter and can be changed and
  169. * removed at will.
  170. * New public fields should be added right above.
  171. *****************************************************************
  172. */
  173. /**
  174. * Filter initialization function.
  175. *
  176. * This callback will be called only once during the filter lifetime, after
  177. * all the options have been set, but before links between filters are
  178. * established and format negotiation is done.
  179. *
  180. * Basic filter initialization should be done here. Filters with dynamic
  181. * inputs and/or outputs should create those inputs/outputs here based on
  182. * provided options. No more changes to this filter's inputs/outputs can be
  183. * done after this callback.
  184. *
  185. * This callback must not assume that the filter links exist or frame
  186. * parameters are known.
  187. *
  188. * @ref AVFilter.uninit "uninit" is guaranteed to be called even if
  189. * initialization fails, so this callback does not have to clean up on
  190. * failure.
  191. *
  192. * @return 0 on success, a negative AVERROR on failure
  193. */
  194. int (*init)(AVFilterContext *ctx);
  195. /**
  196. * Should be set instead of @ref AVFilter.init "init" by the filters that
  197. * want to pass a dictionary of AVOptions to nested contexts that are
  198. * allocated during init.
  199. *
  200. * On return, the options dict should be freed and replaced with one that
  201. * contains all the options which could not be processed by this filter (or
  202. * with NULL if all the options were processed).
  203. *
  204. * Otherwise the semantics is the same as for @ref AVFilter.init "init".
  205. */
  206. int (*init_dict)(AVFilterContext *ctx, AVDictionary **options);
  207. /**
  208. * Filter uninitialization function.
  209. *
  210. * Called only once right before the filter is freed. Should deallocate any
  211. * memory held by the filter, release any buffer references, etc. It does
  212. * not need to deallocate the AVFilterContext.priv memory itself.
  213. *
  214. * This callback may be called even if @ref AVFilter.init "init" was not
  215. * called or failed, so it must be prepared to handle such a situation.
  216. */
  217. void (*uninit)(AVFilterContext *ctx);
  218. /**
  219. * Query formats supported by the filter on its inputs and outputs.
  220. *
  221. * This callback is called after the filter is initialized (so the inputs
  222. * and outputs are fixed), shortly before the format negotiation. This
  223. * callback may be called more than once.
  224. *
  225. * This callback must set AVFilterLink.out_formats on every input link and
  226. * AVFilterLink.in_formats on every output link to a list of pixel/sample
  227. * formats that the filter supports on that link. For audio links, this
  228. * filter must also set @ref AVFilterLink.in_samplerates "in_samplerates" /
  229. * @ref AVFilterLink.out_samplerates "out_samplerates" and
  230. * @ref AVFilterLink.in_channel_layouts "in_channel_layouts" /
  231. * @ref AVFilterLink.out_channel_layouts "out_channel_layouts" analogously.
  232. *
  233. * This callback may be NULL for filters with one input, in which case
  234. * libavfilter assumes that it supports all input formats and preserves
  235. * them on output.
  236. *
  237. * @return zero on success, a negative value corresponding to an
  238. * AVERROR code otherwise
  239. */
  240. int (*query_formats)(AVFilterContext *);
  241. int priv_size; ///< size of private data to allocate for the filter
  242. /**
  243. * Used by the filter registration system. Must not be touched by any other
  244. * code.
  245. */
  246. struct AVFilter *next;
  247. /**
  248. * Make the filter instance process a command.
  249. *
  250. * @param cmd the command to process, for handling simplicity all commands must be alphanumeric only
  251. * @param arg the argument for the command
  252. * @param res a buffer with size res_size where the filter(s) can return a response. This must not change when the command is not supported.
  253. * @param flags if AVFILTER_CMD_FLAG_FAST is set and the command would be
  254. * time consuming then a filter should treat it like an unsupported command
  255. *
  256. * @returns >=0 on success otherwise an error code.
  257. * AVERROR(ENOSYS) on unsupported commands
  258. */
  259. int (*process_command)(AVFilterContext *, const char *cmd, const char *arg, char *res, int res_len, int flags);
  260. /**
  261. * Filter initialization function, alternative to the init()
  262. * callback. Args contains the user-supplied parameters, opaque is
  263. * used for providing binary data.
  264. */
  265. int (*init_opaque)(AVFilterContext *ctx, void *opaque);
  266. } AVFilter;
  267. /**
  268. * Process multiple parts of the frame concurrently.
  269. */
  270. #define AVFILTER_THREAD_SLICE (1 << 0)
  271. typedef struct AVFilterInternal AVFilterInternal;
  272. /** An instance of a filter */
  273. struct AVFilterContext {
  274. const AVClass *av_class; ///< needed for av_log() and filters common options
  275. const AVFilter *filter; ///< the AVFilter of which this is an instance
  276. char *name; ///< name of this filter instance
  277. AVFilterPad *input_pads; ///< array of input pads
  278. AVFilterLink **inputs; ///< array of pointers to input links
  279. unsigned nb_inputs; ///< number of input pads
  280. AVFilterPad *output_pads; ///< array of output pads
  281. AVFilterLink **outputs; ///< array of pointers to output links
  282. unsigned nb_outputs; ///< number of output pads
  283. void *priv; ///< private data for use by the filter
  284. struct AVFilterGraph *graph; ///< filtergraph this filter belongs to
  285. /**
  286. * Type of multithreading being allowed/used. A combination of
  287. * AVFILTER_THREAD_* flags.
  288. *
  289. * May be set by the caller before initializing the filter to forbid some
  290. * or all kinds of multithreading for this filter. The default is allowing
  291. * everything.
  292. *
  293. * When the filter is initialized, this field is combined using bit AND with
  294. * AVFilterGraph.thread_type to get the final mask used for determining
  295. * allowed threading types. I.e. a threading type needs to be set in both
  296. * to be allowed.
  297. *
  298. * After the filter is initialized, libavfilter sets this field to the
  299. * threading type that is actually used (0 for no multithreading).
  300. */
  301. int thread_type;
  302. /**
  303. * An opaque struct for libavfilter internal use.
  304. */
  305. AVFilterInternal *internal;
  306. struct AVFilterCommand *command_queue;
  307. char *enable_str; ///< enable expression string
  308. void *enable; ///< parsed expression (AVExpr*)
  309. double *var_values; ///< variable values for the enable expression
  310. int is_disabled; ///< the enabled state from the last expression evaluation
  311. };
  312. /**
  313. * A link between two filters. This contains pointers to the source and
  314. * destination filters between which this link exists, and the indexes of
  315. * the pads involved. In addition, this link also contains the parameters
  316. * which have been negotiated and agreed upon between the filter, such as
  317. * image dimensions, format, etc.
  318. */
  319. struct AVFilterLink {
  320. AVFilterContext *src; ///< source filter
  321. AVFilterPad *srcpad; ///< output pad on the source filter
  322. AVFilterContext *dst; ///< dest filter
  323. AVFilterPad *dstpad; ///< input pad on the dest filter
  324. enum AVMediaType type; ///< filter media type
  325. /* These parameters apply only to video */
  326. int w; ///< agreed upon image width
  327. int h; ///< agreed upon image height
  328. AVRational sample_aspect_ratio; ///< agreed upon sample aspect ratio
  329. /* These parameters apply only to audio */
  330. uint64_t channel_layout; ///< channel layout of current buffer (see libavutil/channel_layout.h)
  331. int sample_rate; ///< samples per second
  332. int format; ///< agreed upon media format
  333. /**
  334. * Define the time base used by the PTS of the frames/samples
  335. * which will pass through this link.
  336. * During the configuration stage, each filter is supposed to
  337. * change only the output timebase, while the timebase of the
  338. * input link is assumed to be an unchangeable property.
  339. */
  340. AVRational time_base;
  341. /*****************************************************************
  342. * All fields below this line are not part of the public API. They
  343. * may not be used outside of libavfilter and can be changed and
  344. * removed at will.
  345. * New public fields should be added right above.
  346. *****************************************************************
  347. */
  348. /**
  349. * Lists of formats and channel layouts supported by the input and output
  350. * filters respectively. These lists are used for negotiating the format
  351. * to actually be used, which will be loaded into the format and
  352. * channel_layout members, above, when chosen.
  353. *
  354. */
  355. AVFilterFormats *in_formats;
  356. AVFilterFormats *out_formats;
  357. /**
  358. * Lists of channel layouts and sample rates used for automatic
  359. * negotiation.
  360. */
  361. AVFilterFormats *in_samplerates;
  362. AVFilterFormats *out_samplerates;
  363. struct AVFilterChannelLayouts *in_channel_layouts;
  364. struct AVFilterChannelLayouts *out_channel_layouts;
  365. /**
  366. * Audio only, the destination filter sets this to a non-zero value to
  367. * request that buffers with the given number of samples should be sent to
  368. * it. AVFilterPad.needs_fifo must also be set on the corresponding input
  369. * pad.
  370. * Last buffer before EOF will be padded with silence.
  371. */
  372. int request_samples;
  373. /** stage of the initialization of the link properties (dimensions, etc) */
  374. enum {
  375. AVLINK_UNINIT = 0, ///< not started
  376. AVLINK_STARTINIT, ///< started, but incomplete
  377. AVLINK_INIT ///< complete
  378. } init_state;
  379. /**
  380. * Graph the filter belongs to.
  381. */
  382. struct AVFilterGraph *graph;
  383. /**
  384. * Current timestamp of the link, as defined by the most recent
  385. * frame(s), in AV_TIME_BASE units.
  386. */
  387. int64_t current_pts;
  388. /**
  389. * Index in the age array.
  390. */
  391. int age_index;
  392. /**
  393. * Frame rate of the stream on the link, or 1/0 if unknown or variable;
  394. * if left to 0/0, will be automatically copied from the first input
  395. * of the source filter if it exists.
  396. *
  397. * Sources should set it to the best estimation of the real frame rate.
  398. * If the source frame rate is unknown or variable, set this to 1/0.
  399. * Filters should update it if necessary depending on their function.
  400. * Sinks can use it to set a default output frame rate.
  401. * It is similar to the r_frame_rate field in AVStream.
  402. */
  403. AVRational frame_rate;
  404. /**
  405. * Buffer partially filled with samples to achieve a fixed/minimum size.
  406. */
  407. AVFrame *partial_buf;
  408. /**
  409. * Size of the partial buffer to allocate.
  410. * Must be between min_samples and max_samples.
  411. */
  412. int partial_buf_size;
  413. /**
  414. * Minimum number of samples to filter at once. If filter_frame() is
  415. * called with fewer samples, it will accumulate them in partial_buf.
  416. * This field and the related ones must not be changed after filtering
  417. * has started.
  418. * If 0, all related fields are ignored.
  419. */
  420. int min_samples;
  421. /**
  422. * Maximum number of samples to filter at once. If filter_frame() is
  423. * called with more samples, it will split them.
  424. */
  425. int max_samples;
  426. /**
  427. * True if the link is closed.
  428. * If set, all attempts of start_frame, filter_frame or request_frame
  429. * will fail with AVERROR_EOF, and if necessary the reference will be
  430. * destroyed.
  431. * If request_frame returns AVERROR_EOF, this flag is set on the
  432. * corresponding link.
  433. * It can be set also be set by either the source or the destination
  434. * filter.
  435. */
  436. int closed;
  437. /**
  438. * Number of channels.
  439. */
  440. int channels;
  441. /**
  442. * Link processing flags.
  443. */
  444. unsigned flags;
  445. /**
  446. * Number of past frames sent through the link.
  447. */
  448. int64_t frame_count;
  449. /**
  450. * A pointer to a FFVideoFramePool struct.
  451. */
  452. void *video_frame_pool;
  453. };
  454. /**
  455. * Link two filters together.
  456. *
  457. * @param src the source filter
  458. * @param srcpad index of the output pad on the source filter
  459. * @param dst the destination filter
  460. * @param dstpad index of the input pad on the destination filter
  461. * @return zero on success
  462. */
  463. int avfilter_link(AVFilterContext *src, unsigned srcpad,
  464. AVFilterContext *dst, unsigned dstpad);
  465. /**
  466. * Free the link in *link, and set its pointer to NULL.
  467. */
  468. void avfilter_link_free(AVFilterLink **link);
  469. /**
  470. * Get the number of channels of a link.
  471. */
  472. int avfilter_link_get_channels(AVFilterLink *link);
  473. /**
  474. * Set the closed field of a link.
  475. */
  476. void avfilter_link_set_closed(AVFilterLink *link, int closed);
  477. /**
  478. * Negotiate the media format, dimensions, etc of all inputs to a filter.
  479. *
  480. * @param filter the filter to negotiate the properties for its inputs
  481. * @return zero on successful negotiation
  482. */
  483. int avfilter_config_links(AVFilterContext *filter);
  484. #define AVFILTER_CMD_FLAG_ONE 1 ///< Stop once a filter understood the command (for target=all for example), fast filters are favored automatically
  485. #define AVFILTER_CMD_FLAG_FAST 2 ///< Only execute command when its fast (like a video out that supports contrast adjustment in hw)
  486. /**
  487. * Make the filter instance process a command.
  488. * It is recommended to use avfilter_graph_send_command().
  489. */
  490. int avfilter_process_command(AVFilterContext *filter, const char *cmd, const char *arg, char *res, int res_len, int flags);
  491. /** Initialize the filter system. Register all builtin filters. */
  492. void avfilter_register_all(void);
  493. #if FF_API_OLD_FILTER_REGISTER
  494. /** Uninitialize the filter system. Unregister all filters. */
  495. attribute_deprecated
  496. void avfilter_uninit(void);
  497. #endif
  498. /**
  499. * Register a filter. This is only needed if you plan to use
  500. * avfilter_get_by_name later to lookup the AVFilter structure by name. A
  501. * filter can still by instantiated with avfilter_graph_alloc_filter even if it
  502. * is not registered.
  503. *
  504. * @param filter the filter to register
  505. * @return 0 if the registration was successful, a negative value
  506. * otherwise
  507. */
  508. int avfilter_register(AVFilter *filter);
  509. /**
  510. * Get a filter definition matching the given name.
  511. *
  512. * @param name the filter name to find
  513. * @return the filter definition, if any matching one is registered.
  514. * NULL if none found.
  515. */
  516. #if !FF_API_NOCONST_GET_NAME
  517. const
  518. #endif
  519. AVFilter *avfilter_get_by_name(const char *name);
  520. /**
  521. * Iterate over all registered filters.
  522. * @return If prev is non-NULL, next registered filter after prev or NULL if
  523. * prev is the last filter. If prev is NULL, return the first registered filter.
  524. */
  525. const AVFilter *avfilter_next(const AVFilter *prev);
  526. #if FF_API_OLD_FILTER_REGISTER
  527. /**
  528. * If filter is NULL, returns a pointer to the first registered filter pointer,
  529. * if filter is non-NULL, returns the next pointer after filter.
  530. * If the returned pointer points to NULL, the last registered filter
  531. * was already reached.
  532. * @deprecated use avfilter_next()
  533. */
  534. attribute_deprecated
  535. AVFilter **av_filter_next(AVFilter **filter);
  536. #endif
  537. #if FF_API_AVFILTER_OPEN
  538. /**
  539. * Create a filter instance.
  540. *
  541. * @param filter_ctx put here a pointer to the created filter context
  542. * on success, NULL on failure
  543. * @param filter the filter to create an instance of
  544. * @param inst_name Name to give to the new instance. Can be NULL for none.
  545. * @return >= 0 in case of success, a negative error code otherwise
  546. * @deprecated use avfilter_graph_alloc_filter() instead
  547. */
  548. attribute_deprecated
  549. int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
  550. #endif
  551. #if FF_API_AVFILTER_INIT_FILTER
  552. /**
  553. * Initialize a filter.
  554. *
  555. * @param filter the filter to initialize
  556. * @param args A string of parameters to use when initializing the filter.
  557. * The format and meaning of this string varies by filter.
  558. * @param opaque Any extra non-string data needed by the filter. The meaning
  559. * of this parameter varies by filter.
  560. * @return zero on success
  561. */
  562. attribute_deprecated
  563. int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
  564. #endif
  565. /**
  566. * Initialize a filter with the supplied parameters.
  567. *
  568. * @param ctx uninitialized filter context to initialize
  569. * @param args Options to initialize the filter with. This must be a
  570. * ':'-separated list of options in the 'key=value' form.
  571. * May be NULL if the options have been set directly using the
  572. * AVOptions API or there are no options that need to be set.
  573. * @return 0 on success, a negative AVERROR on failure
  574. */
  575. int avfilter_init_str(AVFilterContext *ctx, const char *args);
  576. /**
  577. * Initialize a filter with the supplied dictionary of options.
  578. *
  579. * @param ctx uninitialized filter context to initialize
  580. * @param options An AVDictionary filled with options for this filter. On
  581. * return this parameter will be destroyed and replaced with
  582. * a dict containing options that were not found. This dictionary
  583. * must be freed by the caller.
  584. * May be NULL, then this function is equivalent to
  585. * avfilter_init_str() with the second parameter set to NULL.
  586. * @return 0 on success, a negative AVERROR on failure
  587. *
  588. * @note This function and avfilter_init_str() do essentially the same thing,
  589. * the difference is in manner in which the options are passed. It is up to the
  590. * calling code to choose whichever is more preferable. The two functions also
  591. * behave differently when some of the provided options are not declared as
  592. * supported by the filter. In such a case, avfilter_init_str() will fail, but
  593. * this function will leave those extra options in the options AVDictionary and
  594. * continue as usual.
  595. */
  596. int avfilter_init_dict(AVFilterContext *ctx, AVDictionary **options);
  597. /**
  598. * Free a filter context. This will also remove the filter from its
  599. * filtergraph's list of filters.
  600. *
  601. * @param filter the filter to free
  602. */
  603. void avfilter_free(AVFilterContext *filter);
  604. /**
  605. * Insert a filter in the middle of an existing link.
  606. *
  607. * @param link the link into which the filter should be inserted
  608. * @param filt the filter to be inserted
  609. * @param filt_srcpad_idx the input pad on the filter to connect
  610. * @param filt_dstpad_idx the output pad on the filter to connect
  611. * @return zero on success
  612. */
  613. int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
  614. unsigned filt_srcpad_idx, unsigned filt_dstpad_idx);
  615. /**
  616. * @return AVClass for AVFilterContext.
  617. *
  618. * @see av_opt_find().
  619. */
  620. const AVClass *avfilter_get_class(void);
  621. typedef struct AVFilterGraphInternal AVFilterGraphInternal;
  622. /**
  623. * A function pointer passed to the @ref AVFilterGraph.execute callback to be
  624. * executed multiple times, possibly in parallel.
  625. *
  626. * @param ctx the filter context the job belongs to
  627. * @param arg an opaque parameter passed through from @ref
  628. * AVFilterGraph.execute
  629. * @param jobnr the index of the job being executed
  630. * @param nb_jobs the total number of jobs
  631. *
  632. * @return 0 on success, a negative AVERROR on error
  633. */
  634. typedef int (avfilter_action_func)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
  635. /**
  636. * A function executing multiple jobs, possibly in parallel.
  637. *
  638. * @param ctx the filter context to which the jobs belong
  639. * @param func the function to be called multiple times
  640. * @param arg the argument to be passed to func
  641. * @param ret a nb_jobs-sized array to be filled with return values from each
  642. * invocation of func
  643. * @param nb_jobs the number of jobs to execute
  644. *
  645. * @return 0 on success, a negative AVERROR on error
  646. */
  647. typedef int (avfilter_execute_func)(AVFilterContext *ctx, avfilter_action_func *func,
  648. void *arg, int *ret, int nb_jobs);
  649. typedef struct AVFilterGraph {
  650. const AVClass *av_class;
  651. AVFilterContext **filters;
  652. unsigned nb_filters;
  653. char *scale_sws_opts; ///< sws options to use for the auto-inserted scale filters
  654. char *resample_lavr_opts; ///< libavresample options to use for the auto-inserted resample filters
  655. /**
  656. * Type of multithreading allowed for filters in this graph. A combination
  657. * of AVFILTER_THREAD_* flags.
  658. *
  659. * May be set by the caller at any point, the setting will apply to all
  660. * filters initialized after that. The default is allowing everything.
  661. *
  662. * When a filter in this graph is initialized, this field is combined using
  663. * bit AND with AVFilterContext.thread_type to get the final mask used for
  664. * determining allowed threading types. I.e. a threading type needs to be
  665. * set in both to be allowed.
  666. */
  667. int thread_type;
  668. /**
  669. * Maximum number of threads used by filters in this graph. May be set by
  670. * the caller before adding any filters to the filtergraph. Zero (the
  671. * default) means that the number of threads is determined automatically.
  672. */
  673. int nb_threads;
  674. /**
  675. * Opaque object for libavfilter internal use.
  676. */
  677. AVFilterGraphInternal *internal;
  678. /**
  679. * Opaque user data. May be set by the caller to an arbitrary value, e.g. to
  680. * be used from callbacks like @ref AVFilterGraph.execute.
  681. * Libavfilter will not touch this field in any way.
  682. */
  683. void *opaque;
  684. /**
  685. * This callback may be set by the caller immediately after allocating the
  686. * graph and before adding any filters to it, to provide a custom
  687. * multithreading implementation.
  688. *
  689. * If set, filters with slice threading capability will call this callback
  690. * to execute multiple jobs in parallel.
  691. *
  692. * If this field is left unset, libavfilter will use its internal
  693. * implementation, which may or may not be multithreaded depending on the
  694. * platform and build options.
  695. */
  696. avfilter_execute_func *execute;
  697. char *aresample_swr_opts; ///< swr options to use for the auto-inserted aresample filters, Access ONLY through AVOptions
  698. /**
  699. * Private fields
  700. *
  701. * The following fields are for internal use only.
  702. * Their type, offset, number and semantic can change without notice.
  703. */
  704. AVFilterLink **sink_links;
  705. int sink_links_count;
  706. unsigned disable_auto_convert;
  707. } AVFilterGraph;
  708. /**
  709. * Allocate a filter graph.
  710. *
  711. * @return the allocated filter graph on success or NULL.
  712. */
  713. AVFilterGraph *avfilter_graph_alloc(void);
  714. /**
  715. * Create a new filter instance in a filter graph.
  716. *
  717. * @param graph graph in which the new filter will be used
  718. * @param filter the filter to create an instance of
  719. * @param name Name to give to the new instance (will be copied to
  720. * AVFilterContext.name). This may be used by the caller to identify
  721. * different filters, libavfilter itself assigns no semantics to
  722. * this parameter. May be NULL.
  723. *
  724. * @return the context of the newly created filter instance (note that it is
  725. * also retrievable directly through AVFilterGraph.filters or with
  726. * avfilter_graph_get_filter()) on success or NULL on failure.
  727. */
  728. AVFilterContext *avfilter_graph_alloc_filter(AVFilterGraph *graph,
  729. const AVFilter *filter,
  730. const char *name);
  731. /**
  732. * Get a filter instance identified by instance name from graph.
  733. *
  734. * @param graph filter graph to search through.
  735. * @param name filter instance name (should be unique in the graph).
  736. * @return the pointer to the found filter instance or NULL if it
  737. * cannot be found.
  738. */
  739. AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, const char *name);
  740. #if FF_API_AVFILTER_OPEN
  741. /**
  742. * Add an existing filter instance to a filter graph.
  743. *
  744. * @param graphctx the filter graph
  745. * @param filter the filter to be added
  746. *
  747. * @deprecated use avfilter_graph_alloc_filter() to allocate a filter in a
  748. * filter graph
  749. */
  750. attribute_deprecated
  751. int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
  752. #endif
  753. /**
  754. * Create and add a filter instance into an existing graph.
  755. * The filter instance is created from the filter filt and inited
  756. * with the parameters args and opaque.
  757. *
  758. * In case of success put in *filt_ctx the pointer to the created
  759. * filter instance, otherwise set *filt_ctx to NULL.
  760. *
  761. * @param name the instance name to give to the created filter instance
  762. * @param graph_ctx the filter graph
  763. * @return a negative AVERROR error code in case of failure, a non
  764. * negative value otherwise
  765. */
  766. int avfilter_graph_create_filter(AVFilterContext **filt_ctx, const AVFilter *filt,
  767. const char *name, const char *args, void *opaque,
  768. AVFilterGraph *graph_ctx);
  769. /**
  770. * Enable or disable automatic format conversion inside the graph.
  771. *
  772. * Note that format conversion can still happen inside explicitly inserted
  773. * scale and aresample filters.
  774. *
  775. * @param flags any of the AVFILTER_AUTO_CONVERT_* constants
  776. */
  777. void avfilter_graph_set_auto_convert(AVFilterGraph *graph, unsigned flags);
  778. enum {
  779. AVFILTER_AUTO_CONVERT_ALL = 0, /**< all automatic conversions enabled */
  780. AVFILTER_AUTO_CONVERT_NONE = -1, /**< all automatic conversions disabled */
  781. };
  782. /**
  783. * Check validity and configure all the links and formats in the graph.
  784. *
  785. * @param graphctx the filter graph
  786. * @param log_ctx context used for logging
  787. * @return >= 0 in case of success, a negative AVERROR code otherwise
  788. */
  789. int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx);
  790. /**
  791. * Free a graph, destroy its links, and set *graph to NULL.
  792. * If *graph is NULL, do nothing.
  793. */
  794. void avfilter_graph_free(AVFilterGraph **graph);
  795. /**
  796. * A linked-list of the inputs/outputs of the filter chain.
  797. *
  798. * This is mainly useful for avfilter_graph_parse() / avfilter_graph_parse2(),
  799. * where it is used to communicate open (unlinked) inputs and outputs from and
  800. * to the caller.
  801. * This struct specifies, per each not connected pad contained in the graph, the
  802. * filter context and the pad index required for establishing a link.
  803. */
  804. typedef struct AVFilterInOut {
  805. /** unique name for this input/output in the list */
  806. char *name;
  807. /** filter context associated to this input/output */
  808. AVFilterContext *filter_ctx;
  809. /** index of the filt_ctx pad to use for linking */
  810. int pad_idx;
  811. /** next input/input in the list, NULL if this is the last */
  812. struct AVFilterInOut *next;
  813. } AVFilterInOut;
  814. /**
  815. * Allocate a single AVFilterInOut entry.
  816. * Must be freed with avfilter_inout_free().
  817. * @return allocated AVFilterInOut on success, NULL on failure.
  818. */
  819. AVFilterInOut *avfilter_inout_alloc(void);
  820. /**
  821. * Free the supplied list of AVFilterInOut and set *inout to NULL.
  822. * If *inout is NULL, do nothing.
  823. */
  824. void avfilter_inout_free(AVFilterInOut **inout);
  825. /**
  826. * Add a graph described by a string to a graph.
  827. *
  828. * @note The caller must provide the lists of inputs and outputs,
  829. * which therefore must be known before calling the function.
  830. *
  831. * @note The inputs parameter describes inputs of the already existing
  832. * part of the graph; i.e. from the point of view of the newly created
  833. * part, they are outputs. Similarly the outputs parameter describes
  834. * outputs of the already existing filters, which are provided as
  835. * inputs to the parsed filters.
  836. *
  837. * @param graph the filter graph where to link the parsed graph context
  838. * @param filters string to be parsed
  839. * @param inputs linked list to the inputs of the graph
  840. * @param outputs linked list to the outputs of the graph
  841. * @return zero on success, a negative AVERROR code on error
  842. */
  843. int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
  844. AVFilterInOut *inputs, AVFilterInOut *outputs,
  845. void *log_ctx);
  846. /**
  847. * Add a graph described by a string to a graph.
  848. *
  849. * In the graph filters description, if the input label of the first
  850. * filter is not specified, "in" is assumed; if the output label of
  851. * the last filter is not specified, "out" is assumed.
  852. *
  853. * @param graph the filter graph where to link the parsed graph context
  854. * @param filters string to be parsed
  855. * @param inputs pointer to a linked list to the inputs of the graph, may be NULL.
  856. * If non-NULL, *inputs is updated to contain the list of open inputs
  857. * after the parsing, should be freed with avfilter_inout_free().
  858. * @param outputs pointer to a linked list to the outputs of the graph, may be NULL.
  859. * If non-NULL, *outputs is updated to contain the list of open outputs
  860. * after the parsing, should be freed with avfilter_inout_free().
  861. * @return non negative on success, a negative AVERROR code on error
  862. */
  863. int avfilter_graph_parse_ptr(AVFilterGraph *graph, const char *filters,
  864. AVFilterInOut **inputs, AVFilterInOut **outputs,
  865. void *log_ctx);
  866. /**
  867. * Add a graph described by a string to a graph.
  868. *
  869. * @param[in] graph the filter graph where to link the parsed graph context
  870. * @param[in] filters string to be parsed
  871. * @param[out] inputs a linked list of all free (unlinked) inputs of the
  872. * parsed graph will be returned here. It is to be freed
  873. * by the caller using avfilter_inout_free().
  874. * @param[out] outputs a linked list of all free (unlinked) outputs of the
  875. * parsed graph will be returned here. It is to be freed by the
  876. * caller using avfilter_inout_free().
  877. * @return zero on success, a negative AVERROR code on error
  878. *
  879. * @note This function returns the inputs and outputs that are left
  880. * unlinked after parsing the graph and the caller then deals with
  881. * them.
  882. * @note This function makes no reference whatsoever to already
  883. * existing parts of the graph and the inputs parameter will on return
  884. * contain inputs of the newly parsed part of the graph. Analogously
  885. * the outputs parameter will contain outputs of the newly created
  886. * filters.
  887. */
  888. int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters,
  889. AVFilterInOut **inputs,
  890. AVFilterInOut **outputs);
  891. /**
  892. * Send a command to one or more filter instances.
  893. *
  894. * @param graph the filter graph
  895. * @param target the filter(s) to which the command should be sent
  896. * "all" sends to all filters
  897. * otherwise it can be a filter or filter instance name
  898. * which will send the command to all matching filters.
  899. * @param cmd the command to send, for handling simplicity all commands must be alphanumeric only
  900. * @param arg the argument for the command
  901. * @param res a buffer with size res_size where the filter(s) can return a response.
  902. *
  903. * @returns >=0 on success otherwise an error code.
  904. * AVERROR(ENOSYS) on unsupported commands
  905. */
  906. int avfilter_graph_send_command(AVFilterGraph *graph, const char *target, const char *cmd, const char *arg, char *res, int res_len, int flags);
  907. /**
  908. * Queue a command for one or more filter instances.
  909. *
  910. * @param graph the filter graph
  911. * @param target the filter(s) to which the command should be sent
  912. * "all" sends to all filters
  913. * otherwise it can be a filter or filter instance name
  914. * which will send the command to all matching filters.
  915. * @param cmd the command to sent, for handling simplicity all commands must be alphanumeric only
  916. * @param arg the argument for the command
  917. * @param ts time at which the command should be sent to the filter
  918. *
  919. * @note As this executes commands after this function returns, no return code
  920. * from the filter is provided, also AVFILTER_CMD_FLAG_ONE is not supported.
  921. */
  922. int avfilter_graph_queue_command(AVFilterGraph *graph, const char *target, const char *cmd, const char *arg, int flags, double ts);
  923. /**
  924. * Dump a graph into a human-readable string representation.
  925. *
  926. * @param graph the graph to dump
  927. * @param options formatting options; currently ignored
  928. * @return a string, or NULL in case of memory allocation failure;
  929. * the string must be freed using av_free
  930. */
  931. char *avfilter_graph_dump(AVFilterGraph *graph, const char *options);
  932. /**
  933. * Request a frame on the oldest sink link.
  934. *
  935. * If the request returns AVERROR_EOF, try the next.
  936. *
  937. * Note that this function is not meant to be the sole scheduling mechanism
  938. * of a filtergraph, only a convenience function to help drain a filtergraph
  939. * in a balanced way under normal circumstances.
  940. *
  941. * Also note that AVERROR_EOF does not mean that frames did not arrive on
  942. * some of the sinks during the process.
  943. * When there are multiple sink links, in case the requested link
  944. * returns an EOF, this may cause a filter to flush pending frames
  945. * which are sent to another sink link, although unrequested.
  946. *
  947. * @return the return value of ff_request_frame(),
  948. * or AVERROR_EOF if all links returned AVERROR_EOF
  949. */
  950. int avfilter_graph_request_oldest(AVFilterGraph *graph);
  951. /**
  952. * @}
  953. */
  954. #endif /* AVFILTER_AVFILTER_H */