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.

918 lines
32KB

  1. /*
  2. * filter layer
  3. * Copyright (c) 2007 Bobby Bingham
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #ifndef AVFILTER_AVFILTER_H
  22. #define AVFILTER_AVFILTER_H
  23. /**
  24. * @file
  25. * @ingroup lavfi
  26. * external API header
  27. */
  28. /**
  29. * @defgroup lavfi Libavfilter
  30. * @{
  31. */
  32. #include <stddef.h>
  33. #include "libavutil/avutil.h"
  34. #include "libavutil/dict.h"
  35. #include "libavutil/frame.h"
  36. #include "libavutil/log.h"
  37. #include "libavutil/samplefmt.h"
  38. #include "libavutil/pixfmt.h"
  39. #include "libavutil/rational.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. /**
  54. * Get the class for the AVFilterContext struct.
  55. */
  56. const AVClass *avfilter_get_class(void);
  57. typedef struct AVFilterContext AVFilterContext;
  58. typedef struct AVFilterLink AVFilterLink;
  59. typedef struct AVFilterPad AVFilterPad;
  60. typedef struct AVFilterFormats AVFilterFormats;
  61. #if FF_API_AVFILTERBUFFER
  62. /**
  63. * A reference-counted buffer data type used by the filter system. Filters
  64. * should not store pointers to this structure directly, but instead use the
  65. * AVFilterBufferRef structure below.
  66. */
  67. typedef struct AVFilterBuffer {
  68. uint8_t *data[8]; ///< buffer data for each plane/channel
  69. /**
  70. * pointers to the data planes/channels.
  71. *
  72. * For video, this should simply point to data[].
  73. *
  74. * For planar audio, each channel has a separate data pointer, and
  75. * linesize[0] contains the size of each channel buffer.
  76. * For packed audio, there is just one data pointer, and linesize[0]
  77. * contains the total size of the buffer for all channels.
  78. *
  79. * Note: Both data and extended_data will always be set, but for planar
  80. * audio with more channels that can fit in data, extended_data must be used
  81. * in order to access all channels.
  82. */
  83. uint8_t **extended_data;
  84. int linesize[8]; ///< number of bytes per line
  85. /** private data to be used by a custom free function */
  86. void *priv;
  87. /**
  88. * A pointer to the function to deallocate this buffer if the default
  89. * function is not sufficient. This could, for example, add the memory
  90. * back into a memory pool to be reused later without the overhead of
  91. * reallocating it from scratch.
  92. */
  93. void (*free)(struct AVFilterBuffer *buf);
  94. int format; ///< media format
  95. int w, h; ///< width and height of the allocated buffer
  96. unsigned refcount; ///< number of references to this buffer
  97. } AVFilterBuffer;
  98. #define AV_PERM_READ 0x01 ///< can read from the buffer
  99. #define AV_PERM_WRITE 0x02 ///< can write to the buffer
  100. #define AV_PERM_PRESERVE 0x04 ///< nobody else can overwrite the buffer
  101. #define AV_PERM_REUSE 0x08 ///< can output the buffer multiple times, with the same contents each time
  102. #define AV_PERM_REUSE2 0x10 ///< can output the buffer multiple times, modified each time
  103. #define AV_PERM_NEG_LINESIZES 0x20 ///< the buffer requested can have negative linesizes
  104. #define AV_PERM_ALIGN 0x40 ///< the buffer must be aligned
  105. #define AVFILTER_ALIGN 16 //not part of ABI
  106. /**
  107. * Audio specific properties in a reference to an AVFilterBuffer. Since
  108. * AVFilterBufferRef is common to different media formats, audio specific
  109. * per reference properties must be separated out.
  110. */
  111. typedef struct AVFilterBufferRefAudioProps {
  112. uint64_t channel_layout; ///< channel layout of audio buffer
  113. int nb_samples; ///< number of audio samples per channel
  114. int sample_rate; ///< audio buffer sample rate
  115. int channels; ///< number of channels (do not access directly)
  116. } AVFilterBufferRefAudioProps;
  117. /**
  118. * Video specific properties in a reference to an AVFilterBuffer. Since
  119. * AVFilterBufferRef is common to different media formats, video specific
  120. * per reference properties must be separated out.
  121. */
  122. typedef struct AVFilterBufferRefVideoProps {
  123. int w; ///< image width
  124. int h; ///< image height
  125. AVRational sample_aspect_ratio; ///< sample aspect ratio
  126. int interlaced; ///< is frame interlaced
  127. int top_field_first; ///< field order
  128. enum AVPictureType pict_type; ///< picture type of the frame
  129. int key_frame; ///< 1 -> keyframe, 0-> not
  130. int qp_table_linesize; ///< qp_table stride
  131. int qp_table_size; ///< qp_table size
  132. int8_t *qp_table; ///< array of Quantization Parameters
  133. } AVFilterBufferRefVideoProps;
  134. /**
  135. * A reference to an AVFilterBuffer. Since filters can manipulate the origin of
  136. * a buffer to, for example, crop image without any memcpy, the buffer origin
  137. * and dimensions are per-reference properties. Linesize is also useful for
  138. * image flipping, frame to field filters, etc, and so is also per-reference.
  139. *
  140. * TODO: add anything necessary for frame reordering
  141. */
  142. typedef struct AVFilterBufferRef {
  143. AVFilterBuffer *buf; ///< the buffer that this is a reference to
  144. uint8_t *data[8]; ///< picture/audio data for each plane
  145. /**
  146. * pointers to the data planes/channels.
  147. *
  148. * For video, this should simply point to data[].
  149. *
  150. * For planar audio, each channel has a separate data pointer, and
  151. * linesize[0] contains the size of each channel buffer.
  152. * For packed audio, there is just one data pointer, and linesize[0]
  153. * contains the total size of the buffer for all channels.
  154. *
  155. * Note: Both data and extended_data will always be set, but for planar
  156. * audio with more channels that can fit in data, extended_data must be used
  157. * in order to access all channels.
  158. */
  159. uint8_t **extended_data;
  160. int linesize[8]; ///< number of bytes per line
  161. AVFilterBufferRefVideoProps *video; ///< video buffer specific properties
  162. AVFilterBufferRefAudioProps *audio; ///< audio buffer specific properties
  163. /**
  164. * presentation timestamp. The time unit may change during
  165. * filtering, as it is specified in the link and the filter code
  166. * may need to rescale the PTS accordingly.
  167. */
  168. int64_t pts;
  169. int64_t pos; ///< byte position in stream, -1 if unknown
  170. int format; ///< media format
  171. int perms; ///< permissions, see the AV_PERM_* flags
  172. enum AVMediaType type; ///< media type of buffer data
  173. AVDictionary *metadata; ///< dictionary containing metadata key=value tags
  174. } AVFilterBufferRef;
  175. /**
  176. * Copy properties of src to dst, without copying the actual data
  177. */
  178. attribute_deprecated
  179. void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilterBufferRef *src);
  180. /**
  181. * Add a new reference to a buffer.
  182. *
  183. * @param ref an existing reference to the buffer
  184. * @param pmask a bitmask containing the allowable permissions in the new
  185. * reference
  186. * @return a new reference to the buffer with the same properties as the
  187. * old, excluding any permissions denied by pmask
  188. */
  189. attribute_deprecated
  190. AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask);
  191. /**
  192. * Remove a reference to a buffer. If this is the last reference to the
  193. * buffer, the buffer itself is also automatically freed.
  194. *
  195. * @param ref reference to the buffer, may be NULL
  196. *
  197. * @note it is recommended to use avfilter_unref_bufferp() instead of this
  198. * function
  199. */
  200. attribute_deprecated
  201. void avfilter_unref_buffer(AVFilterBufferRef *ref);
  202. /**
  203. * Remove a reference to a buffer and set the pointer to NULL.
  204. * If this is the last reference to the buffer, the buffer itself
  205. * is also automatically freed.
  206. *
  207. * @param ref pointer to the buffer reference
  208. */
  209. attribute_deprecated
  210. void avfilter_unref_bufferp(AVFilterBufferRef **ref);
  211. #endif
  212. /**
  213. * Get the number of channels of a buffer reference.
  214. */
  215. attribute_deprecated
  216. int avfilter_ref_get_channels(AVFilterBufferRef *ref);
  217. #if FF_API_AVFILTERPAD_PUBLIC
  218. /**
  219. * A filter pad used for either input or output.
  220. *
  221. * See doc/filter_design.txt for details on how to implement the methods.
  222. *
  223. * @warning this struct might be removed from public API.
  224. * users should call avfilter_pad_get_name() and avfilter_pad_get_type()
  225. * to access the name and type fields; there should be no need to access
  226. * any other fields from outside of libavfilter.
  227. */
  228. struct AVFilterPad {
  229. /**
  230. * Pad name. The name is unique among inputs and among outputs, but an
  231. * input may have the same name as an output. This may be NULL if this
  232. * pad has no need to ever be referenced by name.
  233. */
  234. const char *name;
  235. /**
  236. * AVFilterPad type.
  237. */
  238. enum AVMediaType type;
  239. /**
  240. * Input pads:
  241. * Minimum required permissions on incoming buffers. Any buffer with
  242. * insufficient permissions will be automatically copied by the filter
  243. * system to a new buffer which provides the needed access permissions.
  244. *
  245. * Output pads:
  246. * Guaranteed permissions on outgoing buffers. Any buffer pushed on the
  247. * link must have at least these permissions; this fact is checked by
  248. * asserts. It can be used to optimize buffer allocation.
  249. */
  250. attribute_deprecated int min_perms;
  251. /**
  252. * Input pads:
  253. * Permissions which are not accepted on incoming buffers. Any buffer
  254. * which has any of these permissions set will be automatically copied
  255. * by the filter system to a new buffer which does not have those
  256. * permissions. This can be used to easily disallow buffers with
  257. * AV_PERM_REUSE.
  258. *
  259. * Output pads:
  260. * Permissions which are automatically removed on outgoing buffers. It
  261. * can be used to optimize buffer allocation.
  262. */
  263. attribute_deprecated int rej_perms;
  264. /**
  265. * @deprecated unused
  266. */
  267. int (*start_frame)(AVFilterLink *link, AVFilterBufferRef *picref);
  268. /**
  269. * Callback function to get a video buffer. If NULL, the filter system will
  270. * use ff_default_get_video_buffer().
  271. *
  272. * Input video pads only.
  273. */
  274. AVFrame *(*get_video_buffer)(AVFilterLink *link, int w, int h);
  275. /**
  276. * Callback function to get an audio buffer. If NULL, the filter system will
  277. * use ff_default_get_audio_buffer().
  278. *
  279. * Input audio pads only.
  280. */
  281. AVFrame *(*get_audio_buffer)(AVFilterLink *link, int nb_samples);
  282. /**
  283. * @deprecated unused
  284. */
  285. int (*end_frame)(AVFilterLink *link);
  286. /**
  287. * @deprecated unused
  288. */
  289. int (*draw_slice)(AVFilterLink *link, int y, int height, int slice_dir);
  290. /**
  291. * Filtering callback. This is where a filter receives a frame with
  292. * audio/video data and should do its processing.
  293. *
  294. * Input pads only.
  295. *
  296. * @return >= 0 on success, a negative AVERROR on error. This function
  297. * must ensure that frame is properly unreferenced on error if it
  298. * hasn't been passed on to another filter.
  299. */
  300. int (*filter_frame)(AVFilterLink *link, AVFrame *frame);
  301. /**
  302. * Frame poll callback. This returns the number of immediately available
  303. * samples. It should return a positive value if the next request_frame()
  304. * is guaranteed to return one frame (with no delay).
  305. *
  306. * Defaults to just calling the source poll_frame() method.
  307. *
  308. * Output pads only.
  309. */
  310. int (*poll_frame)(AVFilterLink *link);
  311. /**
  312. * Frame request callback. A call to this should result in at least one
  313. * frame being output over the given link. This should return zero on
  314. * success, and another value on error.
  315. * See ff_request_frame() for the error codes with a specific
  316. * meaning.
  317. *
  318. * Output pads only.
  319. */
  320. int (*request_frame)(AVFilterLink *link);
  321. /**
  322. * Link configuration callback.
  323. *
  324. * For output pads, this should set the following link properties:
  325. * video: width, height, sample_aspect_ratio, time_base
  326. * audio: sample_rate.
  327. *
  328. * This should NOT set properties such as format, channel_layout, etc which
  329. * are negotiated between filters by the filter system using the
  330. * query_formats() callback before this function is called.
  331. *
  332. * For input pads, this should check the properties of the link, and update
  333. * the filter's internal state as necessary.
  334. *
  335. * For both input and output pads, this should return zero on success,
  336. * and another value on error.
  337. */
  338. int (*config_props)(AVFilterLink *link);
  339. /**
  340. * The filter expects a fifo to be inserted on its input link,
  341. * typically because it has a delay.
  342. *
  343. * input pads only.
  344. */
  345. int needs_fifo;
  346. int needs_writable;
  347. };
  348. #endif
  349. /**
  350. * Get the name of an AVFilterPad.
  351. *
  352. * @param pads an array of AVFilterPads
  353. * @param pad_idx index of the pad in the array it; is the caller's
  354. * responsibility to ensure the index is valid
  355. *
  356. * @return name of the pad_idx'th pad in pads
  357. */
  358. const char *avfilter_pad_get_name(AVFilterPad *pads, int pad_idx);
  359. /**
  360. * Get the type of an AVFilterPad.
  361. *
  362. * @param pads an array of AVFilterPads
  363. * @param pad_idx index of the pad in the array; it is the caller's
  364. * responsibility to ensure the index is valid
  365. *
  366. * @return type of the pad_idx'th pad in pads
  367. */
  368. enum AVMediaType avfilter_pad_get_type(AVFilterPad *pads, int pad_idx);
  369. /**
  370. * Filter definition. This defines the pads a filter contains, and all the
  371. * callback functions used to interact with the filter.
  372. */
  373. typedef struct AVFilter {
  374. const char *name; ///< filter name
  375. /**
  376. * A description for the filter. You should use the
  377. * NULL_IF_CONFIG_SMALL() macro to define it.
  378. */
  379. const char *description;
  380. const AVFilterPad *inputs; ///< NULL terminated list of inputs. NULL if none
  381. const AVFilterPad *outputs; ///< NULL terminated list of outputs. NULL if none
  382. /**
  383. * A class for the private data, used to access filter private
  384. * AVOptions.
  385. */
  386. const AVClass *priv_class;
  387. /*****************************************************************
  388. * All fields below this line are not part of the public API. They
  389. * may not be used outside of libavfilter and can be changed and
  390. * removed at will.
  391. * New public fields should be added right above.
  392. *****************************************************************
  393. */
  394. /**
  395. * Filter initialization function. Args contains the user-supplied
  396. * parameters. FIXME: maybe an AVOption-based system would be better?
  397. */
  398. int (*init)(AVFilterContext *ctx, const char *args);
  399. /**
  400. * Should be set instead of init by the filters that want to pass a
  401. * dictionary of AVOptions to nested contexts that are allocated in
  402. * init.
  403. */
  404. int (*init_dict)(AVFilterContext *ctx, AVDictionary **options);
  405. /**
  406. * Filter uninitialization function. Should deallocate any memory held
  407. * by the filter, release any buffer references, etc. This does not need
  408. * to deallocate the AVFilterContext->priv memory itself.
  409. */
  410. void (*uninit)(AVFilterContext *ctx);
  411. /**
  412. * Queries formats/layouts supported by the filter and its pads, and sets
  413. * the in_formats/in_chlayouts for links connected to its output pads,
  414. * and out_formats/out_chlayouts for links connected to its input pads.
  415. *
  416. * @return zero on success, a negative value corresponding to an
  417. * AVERROR code otherwise
  418. */
  419. int (*query_formats)(AVFilterContext *);
  420. int priv_size; ///< size of private data to allocate for the filter
  421. /**
  422. * Make the filter instance process a command.
  423. *
  424. * @param cmd the command to process, for handling simplicity all commands must be alphanumeric only
  425. * @param arg the argument for the command
  426. * @param res a buffer with size res_size where the filter(s) can return a response. This must not change when the command is not supported.
  427. * @param flags if AVFILTER_CMD_FLAG_FAST is set and the command would be
  428. * time consuming then a filter should treat it like an unsupported command
  429. *
  430. * @returns >=0 on success otherwise an error code.
  431. * AVERROR(ENOSYS) on unsupported commands
  432. */
  433. int (*process_command)(AVFilterContext *, const char *cmd, const char *arg, char *res, int res_len, int flags);
  434. /**
  435. * Filter initialization function, alternative to the init()
  436. * callback. Args contains the user-supplied parameters, opaque is
  437. * used for providing binary data.
  438. */
  439. int (*init_opaque)(AVFilterContext *ctx, const char *args, void *opaque);
  440. /**
  441. * Shorthand syntax for init arguments.
  442. * If this field is set (even to an empty list), just before init the
  443. * private class will be set and the arguments string will be parsed
  444. * using av_opt_set_from_string() with "=" and ":" delimiters, and
  445. * av_opt_free() will be called just after uninit.
  446. */
  447. const char *const *shorthand;
  448. } AVFilter;
  449. /** An instance of a filter */
  450. struct AVFilterContext {
  451. const AVClass *av_class; ///< needed for av_log()
  452. AVFilter *filter; ///< the AVFilter of which this is an instance
  453. char *name; ///< name of this filter instance
  454. AVFilterPad *input_pads; ///< array of input pads
  455. AVFilterLink **inputs; ///< array of pointers to input links
  456. #if FF_API_FOO_COUNT
  457. unsigned input_count; ///< @deprecated use nb_inputs
  458. #endif
  459. unsigned nb_inputs; ///< number of input pads
  460. AVFilterPad *output_pads; ///< array of output pads
  461. AVFilterLink **outputs; ///< array of pointers to output links
  462. #if FF_API_FOO_COUNT
  463. unsigned output_count; ///< @deprecated use nb_outputs
  464. #endif
  465. unsigned nb_outputs; ///< number of output pads
  466. void *priv; ///< private data for use by the filter
  467. struct AVFilterCommand *command_queue;
  468. };
  469. /**
  470. * A link between two filters. This contains pointers to the source and
  471. * destination filters between which this link exists, and the indexes of
  472. * the pads involved. In addition, this link also contains the parameters
  473. * which have been negotiated and agreed upon between the filter, such as
  474. * image dimensions, format, etc.
  475. */
  476. struct AVFilterLink {
  477. AVFilterContext *src; ///< source filter
  478. AVFilterPad *srcpad; ///< output pad on the source filter
  479. AVFilterContext *dst; ///< dest filter
  480. AVFilterPad *dstpad; ///< input pad on the dest filter
  481. enum AVMediaType type; ///< filter media type
  482. /* These parameters apply only to video */
  483. int w; ///< agreed upon image width
  484. int h; ///< agreed upon image height
  485. AVRational sample_aspect_ratio; ///< agreed upon sample aspect ratio
  486. /* These parameters apply only to audio */
  487. uint64_t channel_layout; ///< channel layout of current buffer (see libavutil/channel_layout.h)
  488. int sample_rate; ///< samples per second
  489. int format; ///< agreed upon media format
  490. /**
  491. * Define the time base used by the PTS of the frames/samples
  492. * which will pass through this link.
  493. * During the configuration stage, each filter is supposed to
  494. * change only the output timebase, while the timebase of the
  495. * input link is assumed to be an unchangeable property.
  496. */
  497. AVRational time_base;
  498. /*****************************************************************
  499. * All fields below this line are not part of the public API. They
  500. * may not be used outside of libavfilter and can be changed and
  501. * removed at will.
  502. * New public fields should be added right above.
  503. *****************************************************************
  504. */
  505. /**
  506. * Lists of formats and channel layouts supported by the input and output
  507. * filters respectively. These lists are used for negotiating the format
  508. * to actually be used, which will be loaded into the format and
  509. * channel_layout members, above, when chosen.
  510. *
  511. */
  512. AVFilterFormats *in_formats;
  513. AVFilterFormats *out_formats;
  514. /**
  515. * Lists of channel layouts and sample rates used for automatic
  516. * negotiation.
  517. */
  518. AVFilterFormats *in_samplerates;
  519. AVFilterFormats *out_samplerates;
  520. struct AVFilterChannelLayouts *in_channel_layouts;
  521. struct AVFilterChannelLayouts *out_channel_layouts;
  522. /**
  523. * Audio only, the destination filter sets this to a non-zero value to
  524. * request that buffers with the given number of samples should be sent to
  525. * it. AVFilterPad.needs_fifo must also be set on the corresponding input
  526. * pad.
  527. * Last buffer before EOF will be padded with silence.
  528. */
  529. int request_samples;
  530. /** stage of the initialization of the link properties (dimensions, etc) */
  531. enum {
  532. AVLINK_UNINIT = 0, ///< not started
  533. AVLINK_STARTINIT, ///< started, but incomplete
  534. AVLINK_INIT ///< complete
  535. } init_state;
  536. struct AVFilterPool *pool;
  537. /**
  538. * Graph the filter belongs to.
  539. */
  540. struct AVFilterGraph *graph;
  541. /**
  542. * Current timestamp of the link, as defined by the most recent
  543. * frame(s), in AV_TIME_BASE units.
  544. */
  545. int64_t current_pts;
  546. /**
  547. * Index in the age array.
  548. */
  549. int age_index;
  550. /**
  551. * Frame rate of the stream on the link, or 1/0 if unknown;
  552. * if left to 0/0, will be automatically be copied from the first input
  553. * of the source filter if it exists.
  554. *
  555. * Sources should set it to the best estimation of the real frame rate.
  556. * Filters should update it if necessary depending on their function.
  557. * Sinks can use it to set a default output frame rate.
  558. * It is similar to the r_frame_rate field in AVStream.
  559. */
  560. AVRational frame_rate;
  561. /**
  562. * Buffer partially filled with samples to achieve a fixed/minimum size.
  563. */
  564. AVFrame *partial_buf;
  565. /**
  566. * Size of the partial buffer to allocate.
  567. * Must be between min_samples and max_samples.
  568. */
  569. int partial_buf_size;
  570. /**
  571. * Minimum number of samples to filter at once. If filter_frame() is
  572. * called with fewer samples, it will accumulate them in partial_buf.
  573. * This field and the related ones must not be changed after filtering
  574. * has started.
  575. * If 0, all related fields are ignored.
  576. */
  577. int min_samples;
  578. /**
  579. * Maximum number of samples to filter at once. If filter_frame() is
  580. * called with more samples, it will split them.
  581. */
  582. int max_samples;
  583. /**
  584. * The buffer reference currently being received across the link by the
  585. * destination filter. This is used internally by the filter system to
  586. * allow automatic copying of buffers which do not have sufficient
  587. * permissions for the destination. This should not be accessed directly
  588. * by the filters.
  589. */
  590. AVFilterBufferRef *cur_buf_copy;
  591. /**
  592. * True if the link is closed.
  593. * If set, all attemps of start_frame, filter_frame or request_frame
  594. * will fail with AVERROR_EOF, and if necessary the reference will be
  595. * destroyed.
  596. * If request_frame returns AVERROR_EOF, this flag is set on the
  597. * corresponding link.
  598. * It can be set also be set by either the source or the destination
  599. * filter.
  600. */
  601. int closed;
  602. /**
  603. * Number of channels.
  604. */
  605. int channels;
  606. /**
  607. * True if a frame is being requested on the link.
  608. * Used internally by the framework.
  609. */
  610. unsigned frame_requested;
  611. /**
  612. * Link processing flags.
  613. */
  614. unsigned flags;
  615. };
  616. /**
  617. * Link two filters together.
  618. *
  619. * @param src the source filter
  620. * @param srcpad index of the output pad on the source filter
  621. * @param dst the destination filter
  622. * @param dstpad index of the input pad on the destination filter
  623. * @return zero on success
  624. */
  625. int avfilter_link(AVFilterContext *src, unsigned srcpad,
  626. AVFilterContext *dst, unsigned dstpad);
  627. /**
  628. * Free the link in *link, and set its pointer to NULL.
  629. */
  630. void avfilter_link_free(AVFilterLink **link);
  631. /**
  632. * Get the number of channels of a link.
  633. */
  634. int avfilter_link_get_channels(AVFilterLink *link);
  635. /**
  636. * Set the closed field of a link.
  637. */
  638. void avfilter_link_set_closed(AVFilterLink *link, int closed);
  639. /**
  640. * Negotiate the media format, dimensions, etc of all inputs to a filter.
  641. *
  642. * @param filter the filter to negotiate the properties for its inputs
  643. * @return zero on successful negotiation
  644. */
  645. int avfilter_config_links(AVFilterContext *filter);
  646. #if FF_API_AVFILTERBUFFER
  647. /**
  648. * Create a buffer reference wrapped around an already allocated image
  649. * buffer.
  650. *
  651. * @param data pointers to the planes of the image to reference
  652. * @param linesize linesizes for the planes of the image to reference
  653. * @param perms the required access permissions
  654. * @param w the width of the image specified by the data and linesize arrays
  655. * @param h the height of the image specified by the data and linesize arrays
  656. * @param format the pixel format of the image specified by the data and linesize arrays
  657. */
  658. attribute_deprecated
  659. AVFilterBufferRef *
  660. avfilter_get_video_buffer_ref_from_arrays(uint8_t * const data[4], const int linesize[4], int perms,
  661. int w, int h, enum AVPixelFormat format);
  662. /**
  663. * Create an audio buffer reference wrapped around an already
  664. * allocated samples buffer.
  665. *
  666. * See avfilter_get_audio_buffer_ref_from_arrays_channels() for a version
  667. * that can handle unknown channel layouts.
  668. *
  669. * @param data pointers to the samples plane buffers
  670. * @param linesize linesize for the samples plane buffers
  671. * @param perms the required access permissions
  672. * @param nb_samples number of samples per channel
  673. * @param sample_fmt the format of each sample in the buffer to allocate
  674. * @param channel_layout the channel layout of the buffer
  675. */
  676. attribute_deprecated
  677. AVFilterBufferRef *avfilter_get_audio_buffer_ref_from_arrays(uint8_t **data,
  678. int linesize,
  679. int perms,
  680. int nb_samples,
  681. enum AVSampleFormat sample_fmt,
  682. uint64_t channel_layout);
  683. /**
  684. * Create an audio buffer reference wrapped around an already
  685. * allocated samples buffer.
  686. *
  687. * @param data pointers to the samples plane buffers
  688. * @param linesize linesize for the samples plane buffers
  689. * @param perms the required access permissions
  690. * @param nb_samples number of samples per channel
  691. * @param sample_fmt the format of each sample in the buffer to allocate
  692. * @param channels the number of channels of the buffer
  693. * @param channel_layout the channel layout of the buffer,
  694. * must be either 0 or consistent with channels
  695. */
  696. attribute_deprecated
  697. AVFilterBufferRef *avfilter_get_audio_buffer_ref_from_arrays_channels(uint8_t **data,
  698. int linesize,
  699. int perms,
  700. int nb_samples,
  701. enum AVSampleFormat sample_fmt,
  702. int channels,
  703. uint64_t channel_layout);
  704. #endif
  705. #define AVFILTER_CMD_FLAG_ONE 1 ///< Stop once a filter understood the command (for target=all for example), fast filters are favored automatically
  706. #define AVFILTER_CMD_FLAG_FAST 2 ///< Only execute command when its fast (like a video out that supports contrast adjustment in hw)
  707. /**
  708. * Make the filter instance process a command.
  709. * It is recommended to use avfilter_graph_send_command().
  710. */
  711. int avfilter_process_command(AVFilterContext *filter, const char *cmd, const char *arg, char *res, int res_len, int flags);
  712. /** Initialize the filter system. Register all builtin filters. */
  713. void avfilter_register_all(void);
  714. /** Uninitialize the filter system. Unregister all filters. */
  715. void avfilter_uninit(void);
  716. /**
  717. * Register a filter. This is only needed if you plan to use
  718. * avfilter_get_by_name later to lookup the AVFilter structure by name. A
  719. * filter can still by instantiated with avfilter_open even if it is not
  720. * registered.
  721. *
  722. * @param filter the filter to register
  723. * @return 0 if the registration was successful, a negative value
  724. * otherwise
  725. */
  726. int avfilter_register(AVFilter *filter);
  727. /**
  728. * Get a filter definition matching the given name.
  729. *
  730. * @param name the filter name to find
  731. * @return the filter definition, if any matching one is registered.
  732. * NULL if none found.
  733. */
  734. AVFilter *avfilter_get_by_name(const char *name);
  735. /**
  736. * If filter is NULL, returns a pointer to the first registered filter pointer,
  737. * if filter is non-NULL, returns the next pointer after filter.
  738. * If the returned pointer points to NULL, the last registered filter
  739. * was already reached.
  740. */
  741. AVFilter **av_filter_next(AVFilter **filter);
  742. /**
  743. * Create a filter instance.
  744. *
  745. * @param filter_ctx put here a pointer to the created filter context
  746. * on success, NULL on failure
  747. * @param filter the filter to create an instance of
  748. * @param inst_name Name to give to the new instance. Can be NULL for none.
  749. * @return >= 0 in case of success, a negative error code otherwise
  750. */
  751. int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
  752. /**
  753. * Initialize a filter.
  754. *
  755. * @param filter the filter to initialize
  756. * @param args A string of parameters to use when initializing the filter.
  757. * The format and meaning of this string varies by filter.
  758. * @param opaque Any extra non-string data needed by the filter. The meaning
  759. * of this parameter varies by filter.
  760. * @return zero on success
  761. */
  762. int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
  763. /**
  764. * Free a filter context.
  765. *
  766. * @param filter the filter to free
  767. */
  768. void avfilter_free(AVFilterContext *filter);
  769. /**
  770. * Insert a filter in the middle of an existing link.
  771. *
  772. * @param link the link into which the filter should be inserted
  773. * @param filt the filter to be inserted
  774. * @param filt_srcpad_idx the input pad on the filter to connect
  775. * @param filt_dstpad_idx the output pad on the filter to connect
  776. * @return zero on success
  777. */
  778. int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
  779. unsigned filt_srcpad_idx, unsigned filt_dstpad_idx);
  780. #if FF_API_AVFILTERBUFFER
  781. /**
  782. * Copy the frame properties of src to dst, without copying the actual
  783. * image data.
  784. *
  785. * @return 0 on success, a negative number on error.
  786. */
  787. attribute_deprecated
  788. int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src);
  789. /**
  790. * Copy the frame properties and data pointers of src to dst, without copying
  791. * the actual data.
  792. *
  793. * @return 0 on success, a negative number on error.
  794. */
  795. attribute_deprecated
  796. int avfilter_copy_buf_props(AVFrame *dst, const AVFilterBufferRef *src);
  797. #endif
  798. /**
  799. * @}
  800. */
  801. #endif /* AVFILTER_AVFILTER_H */