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.

867 lines
31KB

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