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.

979 lines
34KB

  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. * Filter definition. This defines the pads a filter contains, and all the
  359. * callback functions used to interact with the filter.
  360. */
  361. typedef struct AVFilter {
  362. const char *name; ///< filter name
  363. /**
  364. * A description for the filter. You should use the
  365. * NULL_IF_CONFIG_SMALL() macro to define it.
  366. */
  367. const char *description;
  368. const AVFilterPad *inputs; ///< NULL terminated list of inputs. NULL if none
  369. const AVFilterPad *outputs; ///< NULL terminated list of outputs. NULL if none
  370. /**
  371. * A class for the private data, used to access filter private
  372. * AVOptions.
  373. */
  374. const AVClass *priv_class;
  375. /**
  376. * A combination of AVFILTER_FLAG_*
  377. */
  378. int flags;
  379. /*****************************************************************
  380. * All fields below this line are not part of the public API. They
  381. * may not be used outside of libavfilter and can be changed and
  382. * removed at will.
  383. * New public fields should be added right above.
  384. *****************************************************************
  385. */
  386. /**
  387. * Filter initialization function. Called when all the options have been
  388. * set.
  389. */
  390. int (*init)(AVFilterContext *ctx);
  391. /**
  392. * Should be set instead of init by the filters that want to pass a
  393. * dictionary of AVOptions to nested contexts that are allocated in
  394. * init.
  395. */
  396. int (*init_dict)(AVFilterContext *ctx, AVDictionary **options);
  397. /**
  398. * Filter uninitialization function. Should deallocate any memory held
  399. * by the filter, release any buffer references, etc. This does not need
  400. * to deallocate the AVFilterContext->priv memory itself.
  401. */
  402. void (*uninit)(AVFilterContext *ctx);
  403. /**
  404. * Queries formats supported by the filter and its pads, and sets the
  405. * in_formats for links connected to its output pads, and out_formats
  406. * for links connected to its input pads.
  407. *
  408. * @return zero on success, a negative value corresponding to an
  409. * AVERROR code otherwise
  410. */
  411. int (*query_formats)(AVFilterContext *);
  412. int priv_size; ///< size of private data to allocate for the filter
  413. struct AVFilter *next;
  414. } AVFilter;
  415. /** An instance of a filter */
  416. struct AVFilterContext {
  417. const AVClass *av_class; ///< needed for av_log()
  418. const AVFilter *filter; ///< the AVFilter of which this is an instance
  419. char *name; ///< name of this filter instance
  420. AVFilterPad *input_pads; ///< array of input pads
  421. AVFilterLink **inputs; ///< array of pointers to input links
  422. #if FF_API_FOO_COUNT
  423. unsigned input_count; ///< @deprecated use nb_inputs
  424. #endif
  425. unsigned nb_inputs; ///< number of input pads
  426. AVFilterPad *output_pads; ///< array of output pads
  427. AVFilterLink **outputs; ///< array of pointers to output links
  428. #if FF_API_FOO_COUNT
  429. unsigned output_count; ///< @deprecated use nb_outputs
  430. #endif
  431. unsigned nb_outputs; ///< number of output pads
  432. void *priv; ///< private data for use by the filter
  433. struct AVFilterGraph *graph; ///< filtergraph this filter belongs to
  434. };
  435. /**
  436. * A link between two filters. This contains pointers to the source and
  437. * destination filters between which this link exists, and the indexes of
  438. * the pads involved. In addition, this link also contains the parameters
  439. * which have been negotiated and agreed upon between the filter, such as
  440. * image dimensions, format, etc.
  441. */
  442. struct AVFilterLink {
  443. AVFilterContext *src; ///< source filter
  444. AVFilterPad *srcpad; ///< output pad on the source filter
  445. AVFilterContext *dst; ///< dest filter
  446. AVFilterPad *dstpad; ///< input pad on the dest filter
  447. enum AVMediaType type; ///< filter media type
  448. /* These parameters apply only to video */
  449. int w; ///< agreed upon image width
  450. int h; ///< agreed upon image height
  451. AVRational sample_aspect_ratio; ///< agreed upon sample aspect ratio
  452. /* These two parameters apply only to audio */
  453. uint64_t channel_layout; ///< channel layout of current buffer (see libavutil/channel_layout.h)
  454. int sample_rate; ///< samples per second
  455. int format; ///< agreed upon media format
  456. /**
  457. * Define the time base used by the PTS of the frames/samples
  458. * which will pass through this link.
  459. * During the configuration stage, each filter is supposed to
  460. * change only the output timebase, while the timebase of the
  461. * input link is assumed to be an unchangeable property.
  462. */
  463. AVRational time_base;
  464. /*****************************************************************
  465. * All fields below this line are not part of the public API. They
  466. * may not be used outside of libavfilter and can be changed and
  467. * removed at will.
  468. * New public fields should be added right above.
  469. *****************************************************************
  470. */
  471. /**
  472. * Lists of formats supported by the input and output filters respectively.
  473. * These lists are used for negotiating the format to actually be used,
  474. * which will be loaded into the format member, above, when chosen.
  475. */
  476. AVFilterFormats *in_formats;
  477. AVFilterFormats *out_formats;
  478. /**
  479. * Lists of channel layouts and sample rates used for automatic
  480. * negotiation.
  481. */
  482. AVFilterFormats *in_samplerates;
  483. AVFilterFormats *out_samplerates;
  484. struct AVFilterChannelLayouts *in_channel_layouts;
  485. struct AVFilterChannelLayouts *out_channel_layouts;
  486. /**
  487. * Audio only, the destination filter sets this to a non-zero value to
  488. * request that buffers with the given number of samples should be sent to
  489. * it. AVFilterPad.needs_fifo must also be set on the corresponding input
  490. * pad.
  491. * Last buffer before EOF will be padded with silence.
  492. */
  493. int request_samples;
  494. /** stage of the initialization of the link properties (dimensions, etc) */
  495. enum {
  496. AVLINK_UNINIT = 0, ///< not started
  497. AVLINK_STARTINIT, ///< started, but incomplete
  498. AVLINK_INIT ///< complete
  499. } init_state;
  500. };
  501. /**
  502. * Link two filters together.
  503. *
  504. * @param src the source filter
  505. * @param srcpad index of the output pad on the source filter
  506. * @param dst the destination filter
  507. * @param dstpad index of the input pad on the destination filter
  508. * @return zero on success
  509. */
  510. int avfilter_link(AVFilterContext *src, unsigned srcpad,
  511. AVFilterContext *dst, unsigned dstpad);
  512. /**
  513. * Negotiate the media format, dimensions, etc of all inputs to a filter.
  514. *
  515. * @param filter the filter to negotiate the properties for its inputs
  516. * @return zero on successful negotiation
  517. */
  518. int avfilter_config_links(AVFilterContext *filter);
  519. #if FF_API_AVFILTERBUFFER
  520. /**
  521. * Create a buffer reference wrapped around an already allocated image
  522. * buffer.
  523. *
  524. * @param data pointers to the planes of the image to reference
  525. * @param linesize linesizes for the planes of the image to reference
  526. * @param perms the required access permissions
  527. * @param w the width of the image specified by the data and linesize arrays
  528. * @param h the height of the image specified by the data and linesize arrays
  529. * @param format the pixel format of the image specified by the data and linesize arrays
  530. */
  531. attribute_deprecated
  532. AVFilterBufferRef *
  533. avfilter_get_video_buffer_ref_from_arrays(uint8_t *data[4], int linesize[4], int perms,
  534. int w, int h, enum AVPixelFormat format);
  535. /**
  536. * Create an audio buffer reference wrapped around an already
  537. * allocated samples buffer.
  538. *
  539. * @param data pointers to the samples plane buffers
  540. * @param linesize linesize for the samples plane buffers
  541. * @param perms the required access permissions
  542. * @param nb_samples number of samples per channel
  543. * @param sample_fmt the format of each sample in the buffer to allocate
  544. * @param channel_layout the channel layout of the buffer
  545. */
  546. attribute_deprecated
  547. AVFilterBufferRef *avfilter_get_audio_buffer_ref_from_arrays(uint8_t **data,
  548. int linesize,
  549. int perms,
  550. int nb_samples,
  551. enum AVSampleFormat sample_fmt,
  552. uint64_t channel_layout);
  553. #endif
  554. /** Initialize the filter system. Register all builtin filters. */
  555. void avfilter_register_all(void);
  556. #if FF_API_OLD_FILTER_REGISTER
  557. /** Uninitialize the filter system. Unregister all filters. */
  558. attribute_deprecated
  559. void avfilter_uninit(void);
  560. #endif
  561. /**
  562. * Register a filter. This is only needed if you plan to use
  563. * avfilter_get_by_name later to lookup the AVFilter structure by name. A
  564. * filter can still by instantiated with avfilter_graph_alloc_filter even if it
  565. * is not registered.
  566. *
  567. * @param filter the filter to register
  568. * @return 0 if the registration was succesfull, a negative value
  569. * otherwise
  570. */
  571. int avfilter_register(AVFilter *filter);
  572. /**
  573. * Get a filter definition matching the given name.
  574. *
  575. * @param name the filter name to find
  576. * @return the filter definition, if any matching one is registered.
  577. * NULL if none found.
  578. */
  579. AVFilter *avfilter_get_by_name(const char *name);
  580. /**
  581. * Iterate over all registered filters.
  582. * @return If prev is non-NULL, next registered filter after prev or NULL if
  583. * prev is the last filter. If prev is NULL, return the first registered filter.
  584. */
  585. const AVFilter *avfilter_next(const AVFilter *prev);
  586. #if FF_API_OLD_FILTER_REGISTER
  587. /**
  588. * If filter is NULL, returns a pointer to the first registered filter pointer,
  589. * if filter is non-NULL, returns the next pointer after filter.
  590. * If the returned pointer points to NULL, the last registered filter
  591. * was already reached.
  592. * @deprecated use avfilter_next()
  593. */
  594. attribute_deprecated
  595. AVFilter **av_filter_next(AVFilter **filter);
  596. #endif
  597. #if FF_API_AVFILTER_OPEN
  598. /**
  599. * Create a filter instance.
  600. *
  601. * @param filter_ctx put here a pointer to the created filter context
  602. * on success, NULL on failure
  603. * @param filter the filter to create an instance of
  604. * @param inst_name Name to give to the new instance. Can be NULL for none.
  605. * @return >= 0 in case of success, a negative error code otherwise
  606. * @deprecated use avfilter_graph_alloc_filter() instead
  607. */
  608. attribute_deprecated
  609. int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
  610. #endif
  611. #if FF_API_AVFILTER_INIT_FILTER
  612. /**
  613. * Initialize a filter.
  614. *
  615. * @param filter the filter to initialize
  616. * @param args A string of parameters to use when initializing the filter.
  617. * The format and meaning of this string varies by filter.
  618. * @param opaque Any extra non-string data needed by the filter. The meaning
  619. * of this parameter varies by filter.
  620. * @return zero on success
  621. */
  622. attribute_deprecated
  623. int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
  624. #endif
  625. /**
  626. * Initialize a filter with the supplied parameters.
  627. *
  628. * @param ctx uninitialized filter context to initialize
  629. * @param args Options to initialize the filter with. This must be a
  630. * ':'-separated list of options in the 'key=value' form.
  631. * May be NULL if the options have been set directly using the
  632. * AVOptions API or there are no options that need to be set.
  633. * @return 0 on success, a negative AVERROR on failure
  634. */
  635. int avfilter_init_str(AVFilterContext *ctx, const char *args);
  636. /**
  637. * Initialize a filter with the supplied dictionary of options.
  638. *
  639. * @param ctx uninitialized filter context to initialize
  640. * @param options An AVDictionary filled with options for this filter. On
  641. * return this parameter will be destroyed and replaced with
  642. * a dict containing options that were not found. This dictionary
  643. * must be freed by the caller.
  644. * May be NULL, then this function is equivalent to
  645. * avfilter_init_str() with the second parameter set to NULL.
  646. * @return 0 on success, a negative AVERROR on failure
  647. *
  648. * @note This function and avfilter_init_str() do essentially the same thing,
  649. * the difference is in manner in which the options are passed. It is up to the
  650. * calling code to choose whichever is more preferable. The two functions also
  651. * behave differently when some of the provided options are not declared as
  652. * supported by the filter. In such a case, avfilter_init_str() will fail, but
  653. * this function will leave those extra options in the options AVDictionary and
  654. * continue as usual.
  655. */
  656. int avfilter_init_dict(AVFilterContext *ctx, AVDictionary **options);
  657. /**
  658. * Free a filter context. This will also remove the filter from its
  659. * filtergraph's list of filters.
  660. *
  661. * @param filter the filter to free
  662. */
  663. void avfilter_free(AVFilterContext *filter);
  664. /**
  665. * Insert a filter in the middle of an existing link.
  666. *
  667. * @param link the link into which the filter should be inserted
  668. * @param filt the filter to be inserted
  669. * @param filt_srcpad_idx the input pad on the filter to connect
  670. * @param filt_dstpad_idx the output pad on the filter to connect
  671. * @return zero on success
  672. */
  673. int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
  674. unsigned filt_srcpad_idx, unsigned filt_dstpad_idx);
  675. #if FF_API_AVFILTERBUFFER
  676. /**
  677. * Copy the frame properties of src to dst, without copying the actual
  678. * image data.
  679. *
  680. * @return 0 on success, a negative number on error.
  681. */
  682. attribute_deprecated
  683. int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src);
  684. /**
  685. * Copy the frame properties and data pointers of src to dst, without copying
  686. * the actual data.
  687. *
  688. * @return 0 on success, a negative number on error.
  689. */
  690. attribute_deprecated
  691. int avfilter_copy_buf_props(AVFrame *dst, const AVFilterBufferRef *src);
  692. #endif
  693. /**
  694. * @return AVClass for AVFilterContext.
  695. *
  696. * @see av_opt_find().
  697. */
  698. const AVClass *avfilter_get_class(void);
  699. typedef struct AVFilterGraph {
  700. const AVClass *av_class;
  701. #if FF_API_FOO_COUNT
  702. attribute_deprecated
  703. unsigned filter_count;
  704. #endif
  705. AVFilterContext **filters;
  706. #if !FF_API_FOO_COUNT
  707. unsigned nb_filters;
  708. #endif
  709. char *scale_sws_opts; ///< sws options to use for the auto-inserted scale filters
  710. char *resample_lavr_opts; ///< libavresample options to use for the auto-inserted resample filters
  711. #if FF_API_FOO_COUNT
  712. unsigned nb_filters;
  713. #endif
  714. } AVFilterGraph;
  715. /**
  716. * Allocate a filter graph.
  717. */
  718. AVFilterGraph *avfilter_graph_alloc(void);
  719. /**
  720. * Create a new filter instance in a filter graph.
  721. *
  722. * @param graph graph in which the new filter will be used
  723. * @param filter the filter to create an instance of
  724. * @param name Name to give to the new instance (will be copied to
  725. * AVFilterContext.name). This may be used by the caller to identify
  726. * different filters, libavfilter itself assigns no semantics to
  727. * this parameter. May be NULL.
  728. *
  729. * @return the context of the newly created filter instance (note that it is
  730. * also retrievable directly through AVFilterGraph.filters or with
  731. * avfilter_graph_get_filter()) on success or NULL or failure.
  732. */
  733. AVFilterContext *avfilter_graph_alloc_filter(AVFilterGraph *graph,
  734. const AVFilter *filter,
  735. const char *name);
  736. /**
  737. * Get a filter instance with name name from graph.
  738. *
  739. * @return the pointer to the found filter instance or NULL if it
  740. * cannot be found.
  741. */
  742. AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name);
  743. #if FF_API_AVFILTER_OPEN
  744. /**
  745. * Add an existing filter instance to a filter graph.
  746. *
  747. * @param graphctx the filter graph
  748. * @param filter the filter to be added
  749. *
  750. * @deprecated use avfilter_graph_alloc_filter() to allocate a filter in a
  751. * filter graph
  752. */
  753. attribute_deprecated
  754. int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
  755. #endif
  756. /**
  757. * Create and add a filter instance into an existing graph.
  758. * The filter instance is created from the filter filt and inited
  759. * with the parameters args and opaque.
  760. *
  761. * In case of success put in *filt_ctx the pointer to the created
  762. * filter instance, otherwise set *filt_ctx to NULL.
  763. *
  764. * @param name the instance name to give to the created filter instance
  765. * @param graph_ctx the filter graph
  766. * @return a negative AVERROR error code in case of failure, a non
  767. * negative value otherwise
  768. */
  769. int avfilter_graph_create_filter(AVFilterContext **filt_ctx, AVFilter *filt,
  770. const char *name, const char *args, void *opaque,
  771. AVFilterGraph *graph_ctx);
  772. /**
  773. * Check validity and configure all the links and formats in the graph.
  774. *
  775. * @param graphctx the filter graph
  776. * @param log_ctx context used for logging
  777. * @return 0 in case of success, a negative AVERROR code otherwise
  778. */
  779. int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx);
  780. /**
  781. * Free a graph, destroy its links, and set *graph to NULL.
  782. * If *graph is NULL, do nothing.
  783. */
  784. void avfilter_graph_free(AVFilterGraph **graph);
  785. /**
  786. * A linked-list of the inputs/outputs of the filter chain.
  787. *
  788. * This is mainly useful for avfilter_graph_parse() / avfilter_graph_parse2(),
  789. * where it is used to communicate open (unlinked) inputs and outputs from and
  790. * to the caller.
  791. * This struct specifies, per each not connected pad contained in the graph, the
  792. * filter context and the pad index required for establishing a link.
  793. */
  794. typedef struct AVFilterInOut {
  795. /** unique name for this input/output in the list */
  796. char *name;
  797. /** filter context associated to this input/output */
  798. AVFilterContext *filter_ctx;
  799. /** index of the filt_ctx pad to use for linking */
  800. int pad_idx;
  801. /** next input/input in the list, NULL if this is the last */
  802. struct AVFilterInOut *next;
  803. } AVFilterInOut;
  804. /**
  805. * Allocate a single AVFilterInOut entry.
  806. * Must be freed with avfilter_inout_free().
  807. * @return allocated AVFilterInOut on success, NULL on failure.
  808. */
  809. AVFilterInOut *avfilter_inout_alloc(void);
  810. /**
  811. * Free the supplied list of AVFilterInOut and set *inout to NULL.
  812. * If *inout is NULL, do nothing.
  813. */
  814. void avfilter_inout_free(AVFilterInOut **inout);
  815. /**
  816. * Add a graph described by a string to a graph.
  817. *
  818. * @param graph the filter graph where to link the parsed graph context
  819. * @param filters string to be parsed
  820. * @param inputs linked list to the inputs of the graph
  821. * @param outputs linked list to the outputs of the graph
  822. * @return zero on success, a negative AVERROR code on error
  823. */
  824. int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
  825. AVFilterInOut *inputs, AVFilterInOut *outputs,
  826. void *log_ctx);
  827. /**
  828. * Add a graph described by a string to a graph.
  829. *
  830. * @param[in] graph the filter graph where to link the parsed graph context
  831. * @param[in] filters string to be parsed
  832. * @param[out] inputs a linked list of all free (unlinked) inputs of the
  833. * parsed graph will be returned here. It is to be freed
  834. * by the caller using avfilter_inout_free().
  835. * @param[out] outputs a linked list of all free (unlinked) outputs of the
  836. * parsed graph will be returned here. It is to be freed by the
  837. * caller using avfilter_inout_free().
  838. * @return zero on success, a negative AVERROR code on error
  839. *
  840. * @note the difference between avfilter_graph_parse2() and
  841. * avfilter_graph_parse() is that in avfilter_graph_parse(), the caller provides
  842. * the lists of inputs and outputs, which therefore must be known before calling
  843. * the function. On the other hand, avfilter_graph_parse2() \em returns the
  844. * inputs and outputs that are left unlinked after parsing the graph and the
  845. * caller then deals with them. Another difference is that in
  846. * avfilter_graph_parse(), the inputs parameter describes inputs of the
  847. * <em>already existing</em> part of the graph; i.e. from the point of view of
  848. * the newly created part, they are outputs. Similarly the outputs parameter
  849. * describes outputs of the already existing filters, which are provided as
  850. * inputs to the parsed filters.
  851. * avfilter_graph_parse2() takes the opposite approach -- it makes no reference
  852. * whatsoever to already existing parts of the graph and the inputs parameter
  853. * will on return contain inputs of the newly parsed part of the graph.
  854. * Analogously the outputs parameter will contain outputs of the newly created
  855. * filters.
  856. */
  857. int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters,
  858. AVFilterInOut **inputs,
  859. AVFilterInOut **outputs);
  860. /**
  861. * @}
  862. */
  863. #endif /* AVFILTER_AVFILTER_H */