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.

1182 lines
41KB

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