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.

1127 lines
40KB

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