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.

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