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.

1110 lines
39KB

  1. /*
  2. * filter layer
  3. * Copyright (c) 2007 Bobby Bingham
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #ifndef AVFILTER_AVFILTER_H
  22. #define AVFILTER_AVFILTER_H
  23. /**
  24. * @file
  25. * @ingroup lavfi
  26. * Main libavfilter public API header
  27. */
  28. /**
  29. * @defgroup lavfi Libavfilter - graph-based frame editing library
  30. * @{
  31. */
  32. #include "libavutil/avutil.h"
  33. #include "libavutil/frame.h"
  34. #include "libavutil/log.h"
  35. #include "libavutil/samplefmt.h"
  36. #include "libavutil/pixfmt.h"
  37. #include "libavutil/rational.h"
  38. #include "libavcodec/avcodec.h"
  39. #include <stddef.h>
  40. #include "libavfilter/version.h"
  41. /**
  42. * Return the LIBAVFILTER_VERSION_INT constant.
  43. */
  44. unsigned avfilter_version(void);
  45. /**
  46. * Return the libavfilter build-time configuration.
  47. */
  48. const char *avfilter_configuration(void);
  49. /**
  50. * Return the libavfilter license.
  51. */
  52. const char *avfilter_license(void);
  53. typedef struct AVFilterContext AVFilterContext;
  54. typedef struct AVFilterLink AVFilterLink;
  55. typedef struct AVFilterPad AVFilterPad;
  56. typedef struct AVFilterFormats AVFilterFormats;
  57. #if FF_API_AVFILTERBUFFER
  58. /**
  59. * A reference-counted buffer data type used by the filter system. Filters
  60. * should not store pointers to this structure directly, but instead use the
  61. * AVFilterBufferRef structure below.
  62. */
  63. typedef struct AVFilterBuffer {
  64. uint8_t *data[8]; ///< buffer data for each plane/channel
  65. /**
  66. * pointers to the data planes/channels.
  67. *
  68. * For video, this should simply point to data[].
  69. *
  70. * For planar audio, each channel has a separate data pointer, and
  71. * linesize[0] contains the size of each channel buffer.
  72. * For packed audio, there is just one data pointer, and linesize[0]
  73. * contains the total size of the buffer for all channels.
  74. *
  75. * Note: Both data and extended_data will always be set, but for planar
  76. * audio with more channels that can fit in data, extended_data must be used
  77. * in order to access all channels.
  78. */
  79. uint8_t **extended_data;
  80. int linesize[8]; ///< number of bytes per line
  81. /** private data to be used by a custom free function */
  82. void *priv;
  83. /**
  84. * A pointer to the function to deallocate this buffer if the default
  85. * function is not sufficient. This could, for example, add the memory
  86. * back into a memory pool to be reused later without the overhead of
  87. * reallocating it from scratch.
  88. */
  89. void (*free)(struct AVFilterBuffer *buf);
  90. int format; ///< media format
  91. int w, h; ///< width and height of the allocated buffer
  92. unsigned refcount; ///< number of references to this buffer
  93. } AVFilterBuffer;
  94. #define AV_PERM_READ 0x01 ///< can read from the buffer
  95. #define AV_PERM_WRITE 0x02 ///< can write to the buffer
  96. #define AV_PERM_PRESERVE 0x04 ///< nobody else can overwrite the buffer
  97. #define AV_PERM_REUSE 0x08 ///< can output the buffer multiple times, with the same contents each time
  98. #define AV_PERM_REUSE2 0x10 ///< can output the buffer multiple times, modified each time
  99. #define AV_PERM_NEG_LINESIZES 0x20 ///< the buffer requested can have negative linesizes
  100. /**
  101. * Audio specific properties in a reference to an AVFilterBuffer. Since
  102. * AVFilterBufferRef is common to different media formats, audio specific
  103. * per reference properties must be separated out.
  104. */
  105. typedef struct AVFilterBufferRefAudioProps {
  106. uint64_t channel_layout; ///< channel layout of audio buffer
  107. int nb_samples; ///< number of audio samples
  108. int sample_rate; ///< audio buffer sample rate
  109. int planar; ///< audio buffer - planar or packed
  110. } AVFilterBufferRefAudioProps;
  111. /**
  112. * Video specific properties in a reference to an AVFilterBuffer. Since
  113. * AVFilterBufferRef is common to different media formats, video specific
  114. * per reference properties must be separated out.
  115. */
  116. typedef struct AVFilterBufferRefVideoProps {
  117. int w; ///< image width
  118. int h; ///< image height
  119. AVRational pixel_aspect; ///< pixel aspect ratio
  120. int interlaced; ///< is frame interlaced
  121. int top_field_first; ///< field order
  122. enum AVPictureType pict_type; ///< picture type of the frame
  123. int key_frame; ///< 1 -> keyframe, 0-> not
  124. } AVFilterBufferRefVideoProps;
  125. /**
  126. * A reference to an AVFilterBuffer. Since filters can manipulate the origin of
  127. * a buffer to, for example, crop image without any memcpy, the buffer origin
  128. * and dimensions are per-reference properties. Linesize is also useful for
  129. * image flipping, frame to field filters, etc, and so is also per-reference.
  130. *
  131. * TODO: add anything necessary for frame reordering
  132. */
  133. typedef struct AVFilterBufferRef {
  134. AVFilterBuffer *buf; ///< the buffer that this is a reference to
  135. uint8_t *data[8]; ///< picture/audio data for each plane
  136. /**
  137. * pointers to the data planes/channels.
  138. *
  139. * For video, this should simply point to data[].
  140. *
  141. * For planar audio, each channel has a separate data pointer, and
  142. * linesize[0] contains the size of each channel buffer.
  143. * For packed audio, there is just one data pointer, and linesize[0]
  144. * contains the total size of the buffer for all channels.
  145. *
  146. * Note: Both data and extended_data will always be set, but for planar
  147. * audio with more channels that can fit in data, extended_data must be used
  148. * in order to access all channels.
  149. */
  150. uint8_t **extended_data;
  151. int linesize[8]; ///< number of bytes per line
  152. AVFilterBufferRefVideoProps *video; ///< video buffer specific properties
  153. AVFilterBufferRefAudioProps *audio; ///< audio buffer specific properties
  154. /**
  155. * presentation timestamp. The time unit may change during
  156. * filtering, as it is specified in the link and the filter code
  157. * may need to rescale the PTS accordingly.
  158. */
  159. int64_t pts;
  160. int64_t pos; ///< byte position in stream, -1 if unknown
  161. int format; ///< media format
  162. int perms; ///< permissions, see the AV_PERM_* flags
  163. enum AVMediaType type; ///< media type of buffer data
  164. } AVFilterBufferRef;
  165. /**
  166. * Copy properties of src to dst, without copying the actual data
  167. */
  168. attribute_deprecated
  169. void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilterBufferRef *src);
  170. /**
  171. * Add a new reference to a buffer.
  172. *
  173. * @param ref an existing reference to the buffer
  174. * @param pmask a bitmask containing the allowable permissions in the new
  175. * reference
  176. * @return a new reference to the buffer with the same properties as the
  177. * old, excluding any permissions denied by pmask
  178. */
  179. attribute_deprecated
  180. AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask);
  181. /**
  182. * Remove a reference to a buffer. If this is the last reference to the
  183. * buffer, the buffer itself is also automatically freed.
  184. *
  185. * @param ref reference to the buffer, may be NULL
  186. *
  187. * @note it is recommended to use avfilter_unref_bufferp() instead of this
  188. * function
  189. */
  190. attribute_deprecated
  191. void avfilter_unref_buffer(AVFilterBufferRef *ref);
  192. /**
  193. * Remove a reference to a buffer and set the pointer to NULL.
  194. * If this is the last reference to the buffer, the buffer itself
  195. * is also automatically freed.
  196. *
  197. * @param ref pointer to the buffer reference
  198. */
  199. attribute_deprecated
  200. void avfilter_unref_bufferp(AVFilterBufferRef **ref);
  201. #endif
  202. #if FF_API_AVFILTERPAD_PUBLIC
  203. /**
  204. * A filter pad used for either input or output.
  205. *
  206. * @warning this struct will be removed from public API.
  207. * users should call avfilter_pad_get_name() and avfilter_pad_get_type()
  208. * to access the name and type fields; there should be no need to access
  209. * any other fields from outside of libavfilter.
  210. */
  211. struct AVFilterPad {
  212. /**
  213. * Pad name. The name is unique among inputs and among outputs, but an
  214. * input may have the same name as an output. This may be NULL if this
  215. * pad has no need to ever be referenced by name.
  216. */
  217. const char *name;
  218. /**
  219. * AVFilterPad type.
  220. */
  221. enum AVMediaType type;
  222. /**
  223. * Minimum required permissions on incoming buffers. Any buffer with
  224. * insufficient permissions will be automatically copied by the filter
  225. * system to a new buffer which provides the needed access permissions.
  226. *
  227. * Input pads only.
  228. */
  229. attribute_deprecated int min_perms;
  230. /**
  231. * Permissions which are not accepted on incoming buffers. Any buffer
  232. * which has any of these permissions set will be automatically copied
  233. * by the filter system to a new buffer which does not have those
  234. * permissions. This can be used to easily disallow buffers with
  235. * AV_PERM_REUSE.
  236. *
  237. * Input pads only.
  238. */
  239. attribute_deprecated int rej_perms;
  240. /**
  241. * @deprecated unused
  242. */
  243. int (*start_frame)(AVFilterLink *link, AVFilterBufferRef *picref);
  244. /**
  245. * Callback function to get a video buffer. If NULL, the filter system will
  246. * use avfilter_default_get_video_buffer().
  247. *
  248. * Input video pads only.
  249. */
  250. AVFrame *(*get_video_buffer)(AVFilterLink *link, int w, int h);
  251. /**
  252. * Callback function to get an audio buffer. If NULL, the filter system will
  253. * use avfilter_default_get_audio_buffer().
  254. *
  255. * Input audio pads only.
  256. */
  257. AVFrame *(*get_audio_buffer)(AVFilterLink *link, int nb_samples);
  258. /**
  259. * @deprecated unused
  260. */
  261. int (*end_frame)(AVFilterLink *link);
  262. /**
  263. * @deprecated unused
  264. */
  265. int (*draw_slice)(AVFilterLink *link, int y, int height, int slice_dir);
  266. /**
  267. * Filtering callback. This is where a filter receives a frame with
  268. * audio/video data and should do its processing.
  269. *
  270. * Input pads only.
  271. *
  272. * @return >= 0 on success, a negative AVERROR on error. This function
  273. * must ensure that samplesref is properly unreferenced on error if it
  274. * hasn't been passed on to another filter.
  275. */
  276. int (*filter_frame)(AVFilterLink *link, AVFrame *frame);
  277. /**
  278. * Frame poll callback. This returns the number of immediately available
  279. * samples. It should return a positive value if the next request_frame()
  280. * is guaranteed to return one frame (with no delay).
  281. *
  282. * Defaults to just calling the source poll_frame() method.
  283. *
  284. * Output pads only.
  285. */
  286. int (*poll_frame)(AVFilterLink *link);
  287. /**
  288. * Frame request callback. A call to this should result in at least one
  289. * frame being output over the given link. This should return zero on
  290. * success, and another value on error.
  291. *
  292. * Output pads only.
  293. */
  294. int (*request_frame)(AVFilterLink *link);
  295. /**
  296. * Link configuration callback.
  297. *
  298. * For output pads, this should set the link properties such as
  299. * width/height. This should NOT set the format property - that is
  300. * negotiated between filters by the filter system using the
  301. * query_formats() callback before this function is called.
  302. *
  303. * For input pads, this should check the properties of the link, and update
  304. * the filter's internal state as necessary.
  305. *
  306. * For both input and output filters, this should return zero on success,
  307. * and another value on error.
  308. */
  309. int (*config_props)(AVFilterLink *link);
  310. /**
  311. * The filter expects a fifo to be inserted on its input link,
  312. * typically because it has a delay.
  313. *
  314. * input pads only.
  315. */
  316. int needs_fifo;
  317. int needs_writable;
  318. };
  319. #endif
  320. /**
  321. * Get the number of elements in a NULL-terminated array of AVFilterPads (e.g.
  322. * AVFilter.inputs/outputs).
  323. */
  324. int avfilter_pad_count(const AVFilterPad *pads);
  325. /**
  326. * Get the name of an AVFilterPad.
  327. *
  328. * @param pads an array of AVFilterPads
  329. * @param pad_idx index of the pad in the array it; is the caller's
  330. * responsibility to ensure the index is valid
  331. *
  332. * @return name of the pad_idx'th pad in pads
  333. */
  334. const char *avfilter_pad_get_name(const AVFilterPad *pads, int pad_idx);
  335. /**
  336. * Get the type of an AVFilterPad.
  337. *
  338. * @param pads an array of AVFilterPads
  339. * @param pad_idx index of the pad in the array; it is the caller's
  340. * responsibility to ensure the index is valid
  341. *
  342. * @return type of the pad_idx'th pad in pads
  343. */
  344. enum AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int pad_idx);
  345. /**
  346. * The number of the filter inputs is not determined just by AVFilter.inputs.
  347. * The filter might add additional inputs during initialization depending on the
  348. * options supplied to it.
  349. */
  350. #define AVFILTER_FLAG_DYNAMIC_INPUTS (1 << 0)
  351. /**
  352. * The number of the filter outputs is not determined just by AVFilter.outputs.
  353. * The filter might add additional outputs during initialization depending on
  354. * the options supplied to it.
  355. */
  356. #define AVFILTER_FLAG_DYNAMIC_OUTPUTS (1 << 1)
  357. /**
  358. * The filter supports multithreading by splitting frames into multiple parts
  359. * and processing them concurrently.
  360. */
  361. #define AVFILTER_FLAG_SLICE_THREADS (1 << 2)
  362. /**
  363. * Filter definition. This defines the pads a filter contains, and all the
  364. * callback functions used to interact with the filter.
  365. */
  366. typedef struct AVFilter {
  367. /**
  368. * Filter name. Must be non-NULL and unique among filters.
  369. */
  370. const char *name;
  371. /**
  372. * A description of the filter. May be NULL.
  373. *
  374. * You should use the NULL_IF_CONFIG_SMALL() macro to define it.
  375. */
  376. const char *description;
  377. /**
  378. * List of inputs, terminated by a zeroed element.
  379. *
  380. * NULL if there are no (static) inputs. Instances of filters with
  381. * AVFILTER_FLAG_DYNAMIC_INPUTS set may have more inputs than present in
  382. * this list.
  383. */
  384. const AVFilterPad *inputs;
  385. /**
  386. * List of outputs, terminated by a zeroed element.
  387. *
  388. * NULL if there are no (static) outputs. Instances of filters with
  389. * AVFILTER_FLAG_DYNAMIC_OUTPUTS set may have more outputs than present in
  390. * this list.
  391. */
  392. const AVFilterPad *outputs;
  393. /**
  394. * A class for the private data, used to declare filter private AVOptions.
  395. * This field is NULL for filters that do not declare any options.
  396. *
  397. * If this field is non-NULL, the first member of the filter private data
  398. * must be a pointer to AVClass, which will be set by libavfilter generic
  399. * code to this class.
  400. */
  401. const AVClass *priv_class;
  402. /**
  403. * A combination of AVFILTER_FLAG_*
  404. */
  405. int flags;
  406. /*****************************************************************
  407. * All fields below this line are not part of the public API. They
  408. * may not be used outside of libavfilter and can be changed and
  409. * removed at will.
  410. * New public fields should be added right above.
  411. *****************************************************************
  412. */
  413. /**
  414. * Filter initialization function.
  415. *
  416. * This callback will be called only once during the filter lifetime, after
  417. * all the options have been set, but before links between filters are
  418. * established and format negotiation is done.
  419. *
  420. * Basic filter initialization should be done here. Filters with dynamic
  421. * inputs and/or outputs should create those inputs/outputs here based on
  422. * provided options. No more changes to this filter's inputs/outputs can be
  423. * done after this callback.
  424. *
  425. * This callback must not assume that the filter links exist or frame
  426. * parameters are known.
  427. *
  428. * @ref AVFilter.uninit "uninit" is guaranteed to be called even if
  429. * initialization fails, so this callback does not have to clean up on
  430. * failure.
  431. *
  432. * @return 0 on success, a negative AVERROR on failure
  433. */
  434. int (*init)(AVFilterContext *ctx);
  435. /**
  436. * Should be set instead of @ref AVFilter.init "init" by the filters that
  437. * want to pass a dictionary of AVOptions to nested contexts that are
  438. * allocated during init.
  439. *
  440. * On return, the options dict should be freed and replaced with one that
  441. * contains all the options which could not be processed by this filter (or
  442. * with NULL if all the options were processed).
  443. *
  444. * Otherwise the semantics is the same as for @ref AVFilter.init "init".
  445. */
  446. int (*init_dict)(AVFilterContext *ctx, AVDictionary **options);
  447. /**
  448. * Filter uninitialization function.
  449. *
  450. * Called only once right before the filter is freed. Should deallocate any
  451. * memory held by the filter, release any buffer references, etc. It does
  452. * not need to deallocate the AVFilterContext.priv memory itself.
  453. *
  454. * This callback may be called even if @ref AVFilter.init "init" was not
  455. * called or failed, so it must be prepared to handle such a situation.
  456. */
  457. void (*uninit)(AVFilterContext *ctx);
  458. /**
  459. * Query formats supported by the filter on its inputs and outputs.
  460. *
  461. * This callback is called after the filter is initialized (so the inputs
  462. * and outputs are fixed), shortly before the format negotiation. This
  463. * callback may be called more than once.
  464. *
  465. * This callback must set AVFilterLink.out_formats on every input link and
  466. * AVFilterLink.in_formats on every output link to a list of pixel/sample
  467. * formats that the filter supports on that link. For audio links, this
  468. * filter must also set @ref AVFilterLink.in_samplerates "in_samplerates" /
  469. * @ref AVFilterLink.out_samplerates "out_samplerates" and
  470. * @ref AVFilterLink.in_channel_layouts "in_channel_layouts" /
  471. * @ref AVFilterLink.out_channel_layouts "out_channel_layouts" analogously.
  472. *
  473. * This callback may be NULL for filters with one input, in which case
  474. * libavfilter assumes that it supports all input formats and preserves
  475. * them on output.
  476. *
  477. * @return zero on success, a negative value corresponding to an
  478. * AVERROR code otherwise
  479. */
  480. int (*query_formats)(AVFilterContext *);
  481. int priv_size; ///< size of private data to allocate for the filter
  482. /**
  483. * Used by the filter registration system. Must not be touched by any other
  484. * code.
  485. */
  486. struct AVFilter *next;
  487. } AVFilter;
  488. /**
  489. * Process multiple parts of the frame concurrently.
  490. */
  491. #define AVFILTER_THREAD_SLICE (1 << 0)
  492. typedef struct AVFilterInternal AVFilterInternal;
  493. /** An instance of a filter */
  494. struct AVFilterContext {
  495. const AVClass *av_class; ///< needed for av_log()
  496. const AVFilter *filter; ///< the AVFilter of which this is an instance
  497. char *name; ///< name of this filter instance
  498. AVFilterPad *input_pads; ///< array of input pads
  499. AVFilterLink **inputs; ///< array of pointers to input links
  500. #if FF_API_FOO_COUNT
  501. unsigned input_count; ///< @deprecated use nb_inputs
  502. #endif
  503. unsigned nb_inputs; ///< number of input pads
  504. AVFilterPad *output_pads; ///< array of output pads
  505. AVFilterLink **outputs; ///< array of pointers to output links
  506. #if FF_API_FOO_COUNT
  507. unsigned output_count; ///< @deprecated use nb_outputs
  508. #endif
  509. unsigned nb_outputs; ///< number of output pads
  510. void *priv; ///< private data for use by the filter
  511. struct AVFilterGraph *graph; ///< filtergraph this filter belongs to
  512. /**
  513. * Type of multithreading being allowed/used. A combination of
  514. * AVFILTER_THREAD_* flags.
  515. *
  516. * May be set by the caller before initializing the filter to forbid some
  517. * or all kinds of multithreading for this filter. The default is allowing
  518. * everything.
  519. *
  520. * When the filter is initialized, this field is combined using bit AND with
  521. * AVFilterGraph.thread_type to get the final mask used for determining
  522. * allowed threading types. I.e. a threading type needs to be set in both
  523. * to be allowed.
  524. *
  525. * After the filter is initialzed, libavfilter sets this field to the
  526. * threading type that is actually used (0 for no multithreading).
  527. */
  528. int thread_type;
  529. /**
  530. * An opaque struct for libavfilter internal use.
  531. */
  532. AVFilterInternal *internal;
  533. };
  534. /**
  535. * A link between two filters. This contains pointers to the source and
  536. * destination filters between which this link exists, and the indexes of
  537. * the pads involved. In addition, this link also contains the parameters
  538. * which have been negotiated and agreed upon between the filter, such as
  539. * image dimensions, format, etc.
  540. */
  541. struct AVFilterLink {
  542. AVFilterContext *src; ///< source filter
  543. AVFilterPad *srcpad; ///< output pad on the source filter
  544. AVFilterContext *dst; ///< dest filter
  545. AVFilterPad *dstpad; ///< input pad on the dest filter
  546. enum AVMediaType type; ///< filter media type
  547. /* These parameters apply only to video */
  548. int w; ///< agreed upon image width
  549. int h; ///< agreed upon image height
  550. AVRational sample_aspect_ratio; ///< agreed upon sample aspect ratio
  551. /* These two parameters apply only to audio */
  552. uint64_t channel_layout; ///< channel layout of current buffer (see libavutil/channel_layout.h)
  553. int sample_rate; ///< samples per second
  554. int format; ///< agreed upon media format
  555. /**
  556. * Define the time base used by the PTS of the frames/samples
  557. * which will pass through this link.
  558. * During the configuration stage, each filter is supposed to
  559. * change only the output timebase, while the timebase of the
  560. * input link is assumed to be an unchangeable property.
  561. */
  562. AVRational time_base;
  563. /*****************************************************************
  564. * All fields below this line are not part of the public API. They
  565. * may not be used outside of libavfilter and can be changed and
  566. * removed at will.
  567. * New public fields should be added right above.
  568. *****************************************************************
  569. */
  570. /**
  571. * Lists of formats supported by the input and output filters respectively.
  572. * These lists are used for negotiating the format to actually be used,
  573. * which will be loaded into the format member, above, when chosen.
  574. */
  575. AVFilterFormats *in_formats;
  576. AVFilterFormats *out_formats;
  577. /**
  578. * Lists of channel layouts and sample rates used for automatic
  579. * negotiation.
  580. */
  581. AVFilterFormats *in_samplerates;
  582. AVFilterFormats *out_samplerates;
  583. struct AVFilterChannelLayouts *in_channel_layouts;
  584. struct AVFilterChannelLayouts *out_channel_layouts;
  585. /**
  586. * Audio only, the destination filter sets this to a non-zero value to
  587. * request that buffers with the given number of samples should be sent to
  588. * it. AVFilterPad.needs_fifo must also be set on the corresponding input
  589. * pad.
  590. * Last buffer before EOF will be padded with silence.
  591. */
  592. int request_samples;
  593. /** stage of the initialization of the link properties (dimensions, etc) */
  594. enum {
  595. AVLINK_UNINIT = 0, ///< not started
  596. AVLINK_STARTINIT, ///< started, but incomplete
  597. AVLINK_INIT ///< complete
  598. } init_state;
  599. };
  600. /**
  601. * Link two filters together.
  602. *
  603. * @param src the source filter
  604. * @param srcpad index of the output pad on the source filter
  605. * @param dst the destination filter
  606. * @param dstpad index of the input pad on the destination filter
  607. * @return zero on success
  608. */
  609. int avfilter_link(AVFilterContext *src, unsigned srcpad,
  610. AVFilterContext *dst, unsigned dstpad);
  611. /**
  612. * Negotiate the media format, dimensions, etc of all inputs to a filter.
  613. *
  614. * @param filter the filter to negotiate the properties for its inputs
  615. * @return zero on successful negotiation
  616. */
  617. int avfilter_config_links(AVFilterContext *filter);
  618. #if FF_API_AVFILTERBUFFER
  619. /**
  620. * Create a buffer reference wrapped around an already allocated image
  621. * buffer.
  622. *
  623. * @param data pointers to the planes of the image to reference
  624. * @param linesize linesizes for the planes of the image to reference
  625. * @param perms the required access permissions
  626. * @param w the width of the image specified by the data and linesize arrays
  627. * @param h the height of the image specified by the data and linesize arrays
  628. * @param format the pixel format of the image specified by the data and linesize arrays
  629. */
  630. attribute_deprecated
  631. AVFilterBufferRef *
  632. avfilter_get_video_buffer_ref_from_arrays(uint8_t *data[4], int linesize[4], int perms,
  633. int w, int h, enum AVPixelFormat format);
  634. /**
  635. * Create an audio buffer reference wrapped around an already
  636. * allocated samples buffer.
  637. *
  638. * @param data pointers to the samples plane buffers
  639. * @param linesize linesize for the samples plane buffers
  640. * @param perms the required access permissions
  641. * @param nb_samples number of samples per channel
  642. * @param sample_fmt the format of each sample in the buffer to allocate
  643. * @param channel_layout the channel layout of the buffer
  644. */
  645. attribute_deprecated
  646. AVFilterBufferRef *avfilter_get_audio_buffer_ref_from_arrays(uint8_t **data,
  647. int linesize,
  648. int perms,
  649. int nb_samples,
  650. enum AVSampleFormat sample_fmt,
  651. uint64_t channel_layout);
  652. #endif
  653. /** Initialize the filter system. Register all builtin filters. */
  654. void avfilter_register_all(void);
  655. #if FF_API_OLD_FILTER_REGISTER
  656. /** Uninitialize the filter system. Unregister all filters. */
  657. attribute_deprecated
  658. void avfilter_uninit(void);
  659. #endif
  660. /**
  661. * Register a filter. This is only needed if you plan to use
  662. * avfilter_get_by_name later to lookup the AVFilter structure by name. A
  663. * filter can still by instantiated with avfilter_graph_alloc_filter even if it
  664. * is not registered.
  665. *
  666. * @param filter the filter to register
  667. * @return 0 if the registration was succesfull, a negative value
  668. * otherwise
  669. */
  670. int avfilter_register(AVFilter *filter);
  671. /**
  672. * Get a filter definition matching the given name.
  673. *
  674. * @param name the filter name to find
  675. * @return the filter definition, if any matching one is registered.
  676. * NULL if none found.
  677. */
  678. AVFilter *avfilter_get_by_name(const char *name);
  679. /**
  680. * Iterate over all registered filters.
  681. * @return If prev is non-NULL, next registered filter after prev or NULL if
  682. * prev is the last filter. If prev is NULL, return the first registered filter.
  683. */
  684. const AVFilter *avfilter_next(const AVFilter *prev);
  685. #if FF_API_OLD_FILTER_REGISTER
  686. /**
  687. * If filter is NULL, returns a pointer to the first registered filter pointer,
  688. * if filter is non-NULL, returns the next pointer after filter.
  689. * If the returned pointer points to NULL, the last registered filter
  690. * was already reached.
  691. * @deprecated use avfilter_next()
  692. */
  693. attribute_deprecated
  694. AVFilter **av_filter_next(AVFilter **filter);
  695. #endif
  696. #if FF_API_AVFILTER_OPEN
  697. /**
  698. * Create a filter instance.
  699. *
  700. * @param filter_ctx put here a pointer to the created filter context
  701. * on success, NULL on failure
  702. * @param filter the filter to create an instance of
  703. * @param inst_name Name to give to the new instance. Can be NULL for none.
  704. * @return >= 0 in case of success, a negative error code otherwise
  705. * @deprecated use avfilter_graph_alloc_filter() instead
  706. */
  707. attribute_deprecated
  708. int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
  709. #endif
  710. #if FF_API_AVFILTER_INIT_FILTER
  711. /**
  712. * Initialize a filter.
  713. *
  714. * @param filter the filter to initialize
  715. * @param args A string of parameters to use when initializing the filter.
  716. * The format and meaning of this string varies by filter.
  717. * @param opaque Any extra non-string data needed by the filter. The meaning
  718. * of this parameter varies by filter.
  719. * @return zero on success
  720. */
  721. attribute_deprecated
  722. int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
  723. #endif
  724. /**
  725. * Initialize a filter with the supplied parameters.
  726. *
  727. * @param ctx uninitialized filter context to initialize
  728. * @param args Options to initialize the filter with. This must be a
  729. * ':'-separated list of options in the 'key=value' form.
  730. * May be NULL if the options have been set directly using the
  731. * AVOptions API or there are no options that need to be set.
  732. * @return 0 on success, a negative AVERROR on failure
  733. */
  734. int avfilter_init_str(AVFilterContext *ctx, const char *args);
  735. /**
  736. * Initialize a filter with the supplied dictionary of options.
  737. *
  738. * @param ctx uninitialized filter context to initialize
  739. * @param options An AVDictionary filled with options for this filter. On
  740. * return this parameter will be destroyed and replaced with
  741. * a dict containing options that were not found. This dictionary
  742. * must be freed by the caller.
  743. * May be NULL, then this function is equivalent to
  744. * avfilter_init_str() with the second parameter set to NULL.
  745. * @return 0 on success, a negative AVERROR on failure
  746. *
  747. * @note This function and avfilter_init_str() do essentially the same thing,
  748. * the difference is in manner in which the options are passed. It is up to the
  749. * calling code to choose whichever is more preferable. The two functions also
  750. * behave differently when some of the provided options are not declared as
  751. * supported by the filter. In such a case, avfilter_init_str() will fail, but
  752. * this function will leave those extra options in the options AVDictionary and
  753. * continue as usual.
  754. */
  755. int avfilter_init_dict(AVFilterContext *ctx, AVDictionary **options);
  756. /**
  757. * Free a filter context. This will also remove the filter from its
  758. * filtergraph's list of filters.
  759. *
  760. * @param filter the filter to free
  761. */
  762. void avfilter_free(AVFilterContext *filter);
  763. /**
  764. * Insert a filter in the middle of an existing link.
  765. *
  766. * @param link the link into which the filter should be inserted
  767. * @param filt the filter to be inserted
  768. * @param filt_srcpad_idx the input pad on the filter to connect
  769. * @param filt_dstpad_idx the output pad on the filter to connect
  770. * @return zero on success
  771. */
  772. int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
  773. unsigned filt_srcpad_idx, unsigned filt_dstpad_idx);
  774. #if FF_API_AVFILTERBUFFER
  775. /**
  776. * Copy the frame properties of src to dst, without copying the actual
  777. * image data.
  778. *
  779. * @return 0 on success, a negative number on error.
  780. */
  781. attribute_deprecated
  782. int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src);
  783. /**
  784. * Copy the frame properties and data pointers of src to dst, without copying
  785. * the actual data.
  786. *
  787. * @return 0 on success, a negative number on error.
  788. */
  789. attribute_deprecated
  790. int avfilter_copy_buf_props(AVFrame *dst, const AVFilterBufferRef *src);
  791. #endif
  792. /**
  793. * @return AVClass for AVFilterContext.
  794. *
  795. * @see av_opt_find().
  796. */
  797. const AVClass *avfilter_get_class(void);
  798. typedef struct AVFilterGraphInternal AVFilterGraphInternal;
  799. typedef struct AVFilterGraph {
  800. const AVClass *av_class;
  801. #if FF_API_FOO_COUNT
  802. attribute_deprecated
  803. unsigned filter_count;
  804. #endif
  805. AVFilterContext **filters;
  806. #if !FF_API_FOO_COUNT
  807. unsigned nb_filters;
  808. #endif
  809. char *scale_sws_opts; ///< sws options to use for the auto-inserted scale filters
  810. char *resample_lavr_opts; ///< libavresample options to use for the auto-inserted resample filters
  811. #if FF_API_FOO_COUNT
  812. unsigned nb_filters;
  813. #endif
  814. /**
  815. * Type of multithreading allowed for filters in this graph. A combination
  816. * of AVFILTER_THREAD_* flags.
  817. *
  818. * May be set by the caller at any point, the setting will apply to all
  819. * filters initialized after that. The default is allowing everything.
  820. *
  821. * When a filter in this graph is initialized, this field is combined using
  822. * bit AND with AVFilterContext.thread_type to get the final mask used for
  823. * determining allowed threading types. I.e. a threading type needs to be
  824. * set in both to be allowed.
  825. */
  826. int thread_type;
  827. /**
  828. * Maximum number of threads used by filters in this graph. May be set by
  829. * the caller before adding any filters to the filtergraph. Zero (the
  830. * default) means that the number of threads is determined automatically.
  831. */
  832. int nb_threads;
  833. /**
  834. * Opaque object for libavfilter internal use.
  835. */
  836. AVFilterGraphInternal *internal;
  837. } AVFilterGraph;
  838. /**
  839. * Allocate a filter graph.
  840. */
  841. AVFilterGraph *avfilter_graph_alloc(void);
  842. /**
  843. * Create a new filter instance in a filter graph.
  844. *
  845. * @param graph graph in which the new filter will be used
  846. * @param filter the filter to create an instance of
  847. * @param name Name to give to the new instance (will be copied to
  848. * AVFilterContext.name). This may be used by the caller to identify
  849. * different filters, libavfilter itself assigns no semantics to
  850. * this parameter. May be NULL.
  851. *
  852. * @return the context of the newly created filter instance (note that it is
  853. * also retrievable directly through AVFilterGraph.filters or with
  854. * avfilter_graph_get_filter()) on success or NULL or failure.
  855. */
  856. AVFilterContext *avfilter_graph_alloc_filter(AVFilterGraph *graph,
  857. const AVFilter *filter,
  858. const char *name);
  859. /**
  860. * Get a filter instance with name name from graph.
  861. *
  862. * @return the pointer to the found filter instance or NULL if it
  863. * cannot be found.
  864. */
  865. AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name);
  866. #if FF_API_AVFILTER_OPEN
  867. /**
  868. * Add an existing filter instance to a filter graph.
  869. *
  870. * @param graphctx the filter graph
  871. * @param filter the filter to be added
  872. *
  873. * @deprecated use avfilter_graph_alloc_filter() to allocate a filter in a
  874. * filter graph
  875. */
  876. attribute_deprecated
  877. int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
  878. #endif
  879. /**
  880. * Create and add a filter instance into an existing graph.
  881. * The filter instance is created from the filter filt and inited
  882. * with the parameters args and opaque.
  883. *
  884. * In case of success put in *filt_ctx the pointer to the created
  885. * filter instance, otherwise set *filt_ctx to NULL.
  886. *
  887. * @param name the instance name to give to the created filter instance
  888. * @param graph_ctx the filter graph
  889. * @return a negative AVERROR error code in case of failure, a non
  890. * negative value otherwise
  891. */
  892. int avfilter_graph_create_filter(AVFilterContext **filt_ctx, AVFilter *filt,
  893. const char *name, const char *args, void *opaque,
  894. AVFilterGraph *graph_ctx);
  895. /**
  896. * Check validity and configure all the links and formats in the graph.
  897. *
  898. * @param graphctx the filter graph
  899. * @param log_ctx context used for logging
  900. * @return 0 in case of success, a negative AVERROR code otherwise
  901. */
  902. int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx);
  903. /**
  904. * Free a graph, destroy its links, and set *graph to NULL.
  905. * If *graph is NULL, do nothing.
  906. */
  907. void avfilter_graph_free(AVFilterGraph **graph);
  908. /**
  909. * A linked-list of the inputs/outputs of the filter chain.
  910. *
  911. * This is mainly useful for avfilter_graph_parse() / avfilter_graph_parse2(),
  912. * where it is used to communicate open (unlinked) inputs and outputs from and
  913. * to the caller.
  914. * This struct specifies, per each not connected pad contained in the graph, the
  915. * filter context and the pad index required for establishing a link.
  916. */
  917. typedef struct AVFilterInOut {
  918. /** unique name for this input/output in the list */
  919. char *name;
  920. /** filter context associated to this input/output */
  921. AVFilterContext *filter_ctx;
  922. /** index of the filt_ctx pad to use for linking */
  923. int pad_idx;
  924. /** next input/input in the list, NULL if this is the last */
  925. struct AVFilterInOut *next;
  926. } AVFilterInOut;
  927. /**
  928. * Allocate a single AVFilterInOut entry.
  929. * Must be freed with avfilter_inout_free().
  930. * @return allocated AVFilterInOut on success, NULL on failure.
  931. */
  932. AVFilterInOut *avfilter_inout_alloc(void);
  933. /**
  934. * Free the supplied list of AVFilterInOut and set *inout to NULL.
  935. * If *inout is NULL, do nothing.
  936. */
  937. void avfilter_inout_free(AVFilterInOut **inout);
  938. /**
  939. * Add a graph described by a string to a graph.
  940. *
  941. * @param graph the filter graph where to link the parsed graph context
  942. * @param filters string to be parsed
  943. * @param inputs linked list to the inputs of the graph
  944. * @param outputs linked list to the outputs of the graph
  945. * @return zero on success, a negative AVERROR code on error
  946. */
  947. int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
  948. AVFilterInOut *inputs, AVFilterInOut *outputs,
  949. void *log_ctx);
  950. /**
  951. * Add a graph described by a string to a graph.
  952. *
  953. * @param[in] graph the filter graph where to link the parsed graph context
  954. * @param[in] filters string to be parsed
  955. * @param[out] inputs a linked list of all free (unlinked) inputs of the
  956. * parsed graph will be returned here. It is to be freed
  957. * by the caller using avfilter_inout_free().
  958. * @param[out] outputs a linked list of all free (unlinked) outputs of the
  959. * parsed graph will be returned here. It is to be freed by the
  960. * caller using avfilter_inout_free().
  961. * @return zero on success, a negative AVERROR code on error
  962. *
  963. * @note the difference between avfilter_graph_parse2() and
  964. * avfilter_graph_parse() is that in avfilter_graph_parse(), the caller provides
  965. * the lists of inputs and outputs, which therefore must be known before calling
  966. * the function. On the other hand, avfilter_graph_parse2() \em returns the
  967. * inputs and outputs that are left unlinked after parsing the graph and the
  968. * caller then deals with them. Another difference is that in
  969. * avfilter_graph_parse(), the inputs parameter describes inputs of the
  970. * <em>already existing</em> part of the graph; i.e. from the point of view of
  971. * the newly created part, they are outputs. Similarly the outputs parameter
  972. * describes outputs of the already existing filters, which are provided as
  973. * inputs to the parsed filters.
  974. * avfilter_graph_parse2() takes the opposite approach -- it makes no reference
  975. * whatsoever to already existing parts of the graph and the inputs parameter
  976. * will on return contain inputs of the newly parsed part of the graph.
  977. * Analogously the outputs parameter will contain outputs of the newly created
  978. * filters.
  979. */
  980. int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters,
  981. AVFilterInOut **inputs,
  982. AVFilterInOut **outputs);
  983. /**
  984. * @}
  985. */
  986. #endif /* AVFILTER_AVFILTER_H */