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.

861 lines
33KB

  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 "libavutil/avutil.h"
  24. #include "libavutil/samplefmt.h"
  25. #define LIBAVFILTER_VERSION_MAJOR 1
  26. #define LIBAVFILTER_VERSION_MINOR 76
  27. #define LIBAVFILTER_VERSION_MICRO 0
  28. #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
  29. LIBAVFILTER_VERSION_MINOR, \
  30. LIBAVFILTER_VERSION_MICRO)
  31. #define LIBAVFILTER_VERSION AV_VERSION(LIBAVFILTER_VERSION_MAJOR, \
  32. LIBAVFILTER_VERSION_MINOR, \
  33. LIBAVFILTER_VERSION_MICRO)
  34. #define LIBAVFILTER_BUILD LIBAVFILTER_VERSION_INT
  35. #include <stddef.h>
  36. /**
  37. * Return the LIBAVFILTER_VERSION_INT constant.
  38. */
  39. unsigned avfilter_version(void);
  40. /**
  41. * Return the libavfilter build-time configuration.
  42. */
  43. const char *avfilter_configuration(void);
  44. /**
  45. * Return the libavfilter license.
  46. */
  47. const char *avfilter_license(void);
  48. typedef struct AVFilterContext AVFilterContext;
  49. typedef struct AVFilterLink AVFilterLink;
  50. typedef struct AVFilterPad AVFilterPad;
  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. int linesize[8]; ///< number of bytes per line
  59. unsigned refcount; ///< number of references to this buffer
  60. /** private data to be used by a custom free function */
  61. void *priv;
  62. /**
  63. * A pointer to the function to deallocate this buffer if the default
  64. * function is not sufficient. This could, for example, add the memory
  65. * back into a memory pool to be reused later without the overhead of
  66. * reallocating it from scratch.
  67. */
  68. void (*free)(struct AVFilterBuffer *buf);
  69. int format; ///< media format
  70. int w, h; ///< width and height of the allocated buffer
  71. } AVFilterBuffer;
  72. #define AV_PERM_READ 0x01 ///< can read from the buffer
  73. #define AV_PERM_WRITE 0x02 ///< can write to the buffer
  74. #define AV_PERM_PRESERVE 0x04 ///< nobody else can overwrite the buffer
  75. #define AV_PERM_REUSE 0x08 ///< can output the buffer multiple times, with the same contents each time
  76. #define AV_PERM_REUSE2 0x10 ///< can output the buffer multiple times, modified each time
  77. #define AV_PERM_NEG_LINESIZES 0x20 ///< the buffer requested can have negative linesizes
  78. /**
  79. * Audio specific properties in a reference to an AVFilterBuffer. Since
  80. * AVFilterBufferRef is common to different media formats, audio specific
  81. * per reference properties must be separated out.
  82. */
  83. typedef struct AVFilterBufferRefAudioProps {
  84. int64_t channel_layout; ///< channel layout of audio buffer
  85. int nb_samples; ///< number of audio samples
  86. int size; ///< audio buffer size
  87. uint32_t sample_rate; ///< audio buffer sample rate
  88. int planar; ///< audio buffer - planar or packed
  89. } AVFilterBufferRefAudioProps;
  90. /**
  91. * Video specific properties in a reference to an AVFilterBuffer. Since
  92. * AVFilterBufferRef is common to different media formats, video specific
  93. * per reference properties must be separated out.
  94. */
  95. typedef struct AVFilterBufferRefVideoProps {
  96. int w; ///< image width
  97. int h; ///< image height
  98. AVRational pixel_aspect; ///< pixel aspect ratio
  99. int interlaced; ///< is frame interlaced
  100. int top_field_first; ///< field order
  101. } AVFilterBufferRefVideoProps;
  102. /**
  103. * A reference to an AVFilterBuffer. Since filters can manipulate the origin of
  104. * a buffer to, for example, crop image without any memcpy, the buffer origin
  105. * and dimensions are per-reference properties. Linesize is also useful for
  106. * image flipping, frame to field filters, etc, and so is also per-reference.
  107. *
  108. * TODO: add anything necessary for frame reordering
  109. */
  110. typedef struct AVFilterBufferRef {
  111. AVFilterBuffer *buf; ///< the buffer that this is a reference to
  112. uint8_t *data[8]; ///< picture/audio data for each plane
  113. int linesize[8]; ///< number of bytes per line
  114. int format; ///< media format
  115. /**
  116. * presentation timestamp. The time unit may change during
  117. * filtering, as it is specified in the link and the filter code
  118. * may need to rescale the PTS accordingly.
  119. */
  120. int64_t pts;
  121. int64_t pos; ///< byte position in stream, -1 if unknown
  122. int perms; ///< permissions, see the AV_PERM_* flags
  123. enum AVMediaType type; ///< media type of buffer data
  124. AVFilterBufferRefVideoProps *video; ///< video buffer specific properties
  125. AVFilterBufferRefAudioProps *audio; ///< audio buffer specific properties
  126. } AVFilterBufferRef;
  127. /**
  128. * Copy properties of src to dst, without copying the actual data
  129. */
  130. static inline void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilterBufferRef *src)
  131. {
  132. // copy common properties
  133. dst->pts = src->pts;
  134. dst->pos = src->pos;
  135. switch (src->type) {
  136. case AVMEDIA_TYPE_VIDEO: *dst->video = *src->video; break;
  137. case AVMEDIA_TYPE_AUDIO: *dst->audio = *src->audio; break;
  138. }
  139. }
  140. /**
  141. * Add a new reference to a buffer.
  142. *
  143. * @param ref an existing reference to the buffer
  144. * @param pmask a bitmask containing the allowable permissions in the new
  145. * reference
  146. * @return a new reference to the buffer with the same properties as the
  147. * old, excluding any permissions denied by pmask
  148. */
  149. AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask);
  150. /**
  151. * Remove a reference to a buffer. If this is the last reference to the
  152. * buffer, the buffer itself is also automatically freed.
  153. *
  154. * @param ref reference to the buffer, may be NULL
  155. */
  156. void avfilter_unref_buffer(AVFilterBufferRef *ref);
  157. /**
  158. * A list of supported formats for one end of a filter link. This is used
  159. * during the format negotiation process to try to pick the best format to
  160. * use to minimize the number of necessary conversions. Each filter gives a
  161. * list of the formats supported by each input and output pad. The list
  162. * given for each pad need not be distinct - they may be references to the
  163. * same list of formats, as is often the case when a filter supports multiple
  164. * formats, but will always output the same format as it is given in input.
  165. *
  166. * In this way, a list of possible input formats and a list of possible
  167. * output formats are associated with each link. When a set of formats is
  168. * negotiated over a link, the input and output lists are merged to form a
  169. * new list containing only the common elements of each list. In the case
  170. * that there were no common elements, a format conversion is necessary.
  171. * Otherwise, the lists are merged, and all other links which reference
  172. * either of the format lists involved in the merge are also affected.
  173. *
  174. * For example, consider the filter chain:
  175. * filter (a) --> (b) filter (b) --> (c) filter
  176. *
  177. * where the letters in parenthesis indicate a list of formats supported on
  178. * the input or output of the link. Suppose the lists are as follows:
  179. * (a) = {A, B}
  180. * (b) = {A, B, C}
  181. * (c) = {B, C}
  182. *
  183. * First, the first link's lists are merged, yielding:
  184. * filter (a) --> (a) filter (a) --> (c) filter
  185. *
  186. * Notice that format list (b) now refers to the same list as filter list (a).
  187. * Next, the lists for the second link are merged, yielding:
  188. * filter (a) --> (a) filter (a) --> (a) filter
  189. *
  190. * where (a) = {B}.
  191. *
  192. * Unfortunately, when the format lists at the two ends of a link are merged,
  193. * we must ensure that all links which reference either pre-merge format list
  194. * get updated as well. Therefore, we have the format list structure store a
  195. * pointer to each of the pointers to itself.
  196. */
  197. typedef struct AVFilterFormats {
  198. unsigned format_count; ///< number of formats
  199. int *formats; ///< list of media formats
  200. unsigned refcount; ///< number of references to this list
  201. struct AVFilterFormats ***refs; ///< references to this list
  202. } AVFilterFormats;
  203. /**
  204. * Create a list of supported formats. This is intended for use in
  205. * AVFilter->query_formats().
  206. *
  207. * @param fmts list of media formats, terminated by -1
  208. * @return the format list, with no existing references
  209. */
  210. AVFilterFormats *avfilter_make_format_list(const int *fmts);
  211. /**
  212. * Add fmt to the list of media formats contained in *avff.
  213. * If *avff is NULL the function allocates the filter formats struct
  214. * and puts its pointer in *avff.
  215. *
  216. * @return a non negative value in case of success, or a negative
  217. * value corresponding to an AVERROR code in case of error
  218. */
  219. int avfilter_add_format(AVFilterFormats **avff, int fmt);
  220. /**
  221. * Return a list of all formats supported by FFmpeg for the given media type.
  222. */
  223. AVFilterFormats *avfilter_all_formats(enum AVMediaType type);
  224. /**
  225. * Return a format list which contains the intersection of the formats of
  226. * a and b. Also, all the references of a, all the references of b, and
  227. * a and b themselves will be deallocated.
  228. *
  229. * If a and b do not share any common formats, neither is modified, and NULL
  230. * is returned.
  231. */
  232. AVFilterFormats *avfilter_merge_formats(AVFilterFormats *a, AVFilterFormats *b);
  233. /**
  234. * Add *ref as a new reference to formats.
  235. * That is the pointers will point like in the ascii art below:
  236. * ________
  237. * |formats |<--------.
  238. * | ____ | ____|___________________
  239. * | |refs| | | __|_
  240. * | |* * | | | | | | AVFilterLink
  241. * | |* *--------->|*ref|
  242. * | |____| | | |____|
  243. * |________| |________________________
  244. */
  245. void avfilter_formats_ref(AVFilterFormats *formats, AVFilterFormats **ref);
  246. /**
  247. * If *ref is non-NULL, remove *ref as a reference to the format list
  248. * it currently points to, deallocates that list if this was the last
  249. * reference, and sets *ref to NULL.
  250. *
  251. * Before After
  252. * ________ ________ NULL
  253. * |formats |<--------. |formats | ^
  254. * | ____ | ____|________________ | ____ | ____|________________
  255. * | |refs| | | __|_ | |refs| | | __|_
  256. * | |* * | | | | | | AVFilterLink | |* * | | | | | | AVFilterLink
  257. * | |* *--------->|*ref| | |* | | | |*ref|
  258. * | |____| | | |____| | |____| | | |____|
  259. * |________| |_____________________ |________| |_____________________
  260. */
  261. void avfilter_formats_unref(AVFilterFormats **ref);
  262. /**
  263. *
  264. * Before After
  265. * ________ ________
  266. * |formats |<---------. |formats |<---------.
  267. * | ____ | ___|___ | ____ | ___|___
  268. * | |refs| | | | | | |refs| | | | | NULL
  269. * | |* *--------->|*oldref| | |* *--------->|*newref| ^
  270. * | |* * | | |_______| | |* * | | |_______| ___|___
  271. * | |____| | | |____| | | | |
  272. * |________| |________| |*oldref|
  273. * |_______|
  274. */
  275. void avfilter_formats_changeref(AVFilterFormats **oldref,
  276. AVFilterFormats **newref);
  277. /**
  278. * A filter pad used for either input or output.
  279. */
  280. struct AVFilterPad {
  281. /**
  282. * Pad name. The name is unique among inputs and among outputs, but an
  283. * input may have the same name as an output. This may be NULL if this
  284. * pad has no need to ever be referenced by name.
  285. */
  286. const char *name;
  287. /**
  288. * AVFilterPad type. Only video supported now, hopefully someone will
  289. * add audio in the future.
  290. */
  291. enum AVMediaType type;
  292. /**
  293. * Minimum required permissions on incoming buffers. Any buffer with
  294. * insufficient permissions will be automatically copied by the filter
  295. * system to a new buffer which provides the needed access permissions.
  296. *
  297. * Input pads only.
  298. */
  299. int min_perms;
  300. /**
  301. * Permissions which are not accepted on incoming buffers. Any buffer
  302. * which has any of these permissions set will be automatically copied
  303. * by the filter system to a new buffer which does not have those
  304. * permissions. This can be used to easily disallow buffers with
  305. * AV_PERM_REUSE.
  306. *
  307. * Input pads only.
  308. */
  309. int rej_perms;
  310. /**
  311. * Callback called before passing the first slice of a new frame. If
  312. * NULL, the filter layer will default to storing a reference to the
  313. * picture inside the link structure.
  314. *
  315. * Input video pads only.
  316. */
  317. void (*start_frame)(AVFilterLink *link, AVFilterBufferRef *picref);
  318. /**
  319. * Callback function to get a video buffer. If NULL, the filter system will
  320. * use avfilter_default_get_video_buffer().
  321. *
  322. * Input video pads only.
  323. */
  324. AVFilterBufferRef *(*get_video_buffer)(AVFilterLink *link, int perms, int w, int h);
  325. /**
  326. * Callback function to get an audio buffer. If NULL, the filter system will
  327. * use avfilter_default_get_audio_buffer().
  328. *
  329. * Input audio pads only.
  330. */
  331. AVFilterBufferRef *(*get_audio_buffer)(AVFilterLink *link, int perms,
  332. enum AVSampleFormat sample_fmt, int size,
  333. int64_t channel_layout, int planar);
  334. /**
  335. * Callback called after the slices of a frame are completely sent. If
  336. * NULL, the filter layer will default to releasing the reference stored
  337. * in the link structure during start_frame().
  338. *
  339. * Input video pads only.
  340. */
  341. void (*end_frame)(AVFilterLink *link);
  342. /**
  343. * Slice drawing callback. This is where a filter receives video data
  344. * and should do its processing.
  345. *
  346. * Input video pads only.
  347. */
  348. void (*draw_slice)(AVFilterLink *link, int y, int height, int slice_dir);
  349. /**
  350. * Samples filtering callback. This is where a filter receives audio data
  351. * and should do its processing.
  352. *
  353. * Input audio pads only.
  354. */
  355. void (*filter_samples)(AVFilterLink *link, AVFilterBufferRef *samplesref);
  356. /**
  357. * Frame poll callback. This returns the number of immediately available
  358. * samples. It should return a positive value if the next request_frame()
  359. * is guaranteed to return one frame (with no delay).
  360. *
  361. * Defaults to just calling the source poll_frame() method.
  362. *
  363. * Output video pads only.
  364. */
  365. int (*poll_frame)(AVFilterLink *link);
  366. /**
  367. * Frame request callback. A call to this should result in at least one
  368. * frame being output over the given link. This should return zero on
  369. * success, and another value on error.
  370. *
  371. * Output video pads only.
  372. */
  373. int (*request_frame)(AVFilterLink *link);
  374. /**
  375. * Link configuration callback.
  376. *
  377. * For output pads, this should set the link properties such as
  378. * width/height. This should NOT set the format property - that is
  379. * negotiated between filters by the filter system using the
  380. * query_formats() callback before this function is called.
  381. *
  382. * For input pads, this should check the properties of the link, and update
  383. * the filter's internal state as necessary.
  384. *
  385. * For both input and output filters, this should return zero on success,
  386. * and another value on error.
  387. */
  388. int (*config_props)(AVFilterLink *link);
  389. };
  390. /** default handler for start_frame() for video inputs */
  391. void avfilter_default_start_frame(AVFilterLink *link, AVFilterBufferRef *picref);
  392. /** default handler for draw_slice() for video inputs */
  393. void avfilter_default_draw_slice(AVFilterLink *link, int y, int h, int slice_dir);
  394. /** default handler for end_frame() for video inputs */
  395. void avfilter_default_end_frame(AVFilterLink *link);
  396. /** default handler for filter_samples() for audio inputs */
  397. void avfilter_default_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref);
  398. /** default handler for config_props() for audio/video outputs */
  399. int avfilter_default_config_output_link(AVFilterLink *link);
  400. /** default handler for config_props() for audio/video inputs */
  401. int avfilter_default_config_input_link (AVFilterLink *link);
  402. /** default handler for get_video_buffer() for video inputs */
  403. AVFilterBufferRef *avfilter_default_get_video_buffer(AVFilterLink *link,
  404. int perms, int w, int h);
  405. /** default handler for get_audio_buffer() for audio inputs */
  406. AVFilterBufferRef *avfilter_default_get_audio_buffer(AVFilterLink *link, int perms,
  407. enum AVSampleFormat sample_fmt, int size,
  408. int64_t channel_layout, int planar);
  409. /**
  410. * A helper for query_formats() which sets all links to the same list of
  411. * formats. If there are no links hooked to this filter, the list of formats is
  412. * freed.
  413. */
  414. void avfilter_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats);
  415. /** Default handler for query_formats() */
  416. int avfilter_default_query_formats(AVFilterContext *ctx);
  417. /** start_frame() handler for filters which simply pass video along */
  418. void avfilter_null_start_frame(AVFilterLink *link, AVFilterBufferRef *picref);
  419. /** draw_slice() handler for filters which simply pass video along */
  420. void avfilter_null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir);
  421. /** end_frame() handler for filters which simply pass video along */
  422. void avfilter_null_end_frame(AVFilterLink *link);
  423. /** filter_samples() handler for filters which simply pass audio along */
  424. void avfilter_null_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref);
  425. /** get_video_buffer() handler for filters which simply pass video along */
  426. AVFilterBufferRef *avfilter_null_get_video_buffer(AVFilterLink *link,
  427. int perms, int w, int h);
  428. /** get_audio_buffer() handler for filters which simply pass audio along */
  429. AVFilterBufferRef *avfilter_null_get_audio_buffer(AVFilterLink *link, int perms,
  430. enum AVSampleFormat sample_fmt, int size,
  431. int64_t channel_layout, int planar);
  432. /**
  433. * Filter definition. This defines the pads a filter contains, and all the
  434. * callback functions used to interact with the filter.
  435. */
  436. typedef struct AVFilter {
  437. const char *name; ///< filter name
  438. int priv_size; ///< size of private data to allocate for the filter
  439. /**
  440. * Filter initialization function. Args contains the user-supplied
  441. * parameters. FIXME: maybe an AVOption-based system would be better?
  442. * opaque is data provided by the code requesting creation of the filter,
  443. * and is used to pass data to the filter.
  444. */
  445. int (*init)(AVFilterContext *ctx, const char *args, void *opaque);
  446. /**
  447. * Filter uninitialization function. Should deallocate any memory held
  448. * by the filter, release any buffer references, etc. This does not need
  449. * to deallocate the AVFilterContext->priv memory itself.
  450. */
  451. void (*uninit)(AVFilterContext *ctx);
  452. /**
  453. * Queries formats supported by the filter and its pads, and sets the
  454. * in_formats for links connected to its output pads, and out_formats
  455. * for links connected to its input pads.
  456. *
  457. * @return zero on success, a negative value corresponding to an
  458. * AVERROR code otherwise
  459. */
  460. int (*query_formats)(AVFilterContext *);
  461. const AVFilterPad *inputs; ///< NULL terminated list of inputs. NULL if none
  462. const AVFilterPad *outputs; ///< NULL terminated list of outputs. NULL if none
  463. /**
  464. * A description for the filter. You should use the
  465. * NULL_IF_CONFIG_SMALL() macro to define it.
  466. */
  467. const char *description;
  468. } AVFilter;
  469. /** An instance of a filter */
  470. struct AVFilterContext {
  471. const AVClass *av_class; ///< needed for av_log()
  472. AVFilter *filter; ///< the AVFilter of which this is an instance
  473. char *name; ///< name of this filter instance
  474. unsigned input_count; ///< number of input pads
  475. AVFilterPad *input_pads; ///< array of input pads
  476. AVFilterLink **inputs; ///< array of pointers to input links
  477. unsigned output_count; ///< number of output pads
  478. AVFilterPad *output_pads; ///< array of output pads
  479. AVFilterLink **outputs; ///< array of pointers to output links
  480. void *priv; ///< private data for use by the filter
  481. };
  482. /**
  483. * A link between two filters. This contains pointers to the source and
  484. * destination filters between which this link exists, and the indexes of
  485. * the pads involved. In addition, this link also contains the parameters
  486. * which have been negotiated and agreed upon between the filter, such as
  487. * image dimensions, format, etc.
  488. */
  489. struct AVFilterLink {
  490. AVFilterContext *src; ///< source filter
  491. AVFilterPad *srcpad; ///< output pad on the source filter
  492. AVFilterContext *dst; ///< dest filter
  493. AVFilterPad *dstpad; ///< input pad on the dest filter
  494. /** stage of the initialization of the link properties (dimensions, etc) */
  495. enum {
  496. AVLINK_UNINIT = 0, ///< not started
  497. AVLINK_STARTINIT, ///< started, but incomplete
  498. AVLINK_INIT ///< complete
  499. } init_state;
  500. enum AVMediaType type; ///< filter media type
  501. /* These parameters apply only to video */
  502. int w; ///< agreed upon image width
  503. int h; ///< agreed upon image height
  504. AVRational sample_aspect_ratio; ///< agreed upon sample aspect ratio
  505. /* These two parameters apply only to audio */
  506. int64_t channel_layout; ///< channel layout of current buffer (see libavutil/audioconvert.h)
  507. int64_t sample_rate; ///< samples per second
  508. int format; ///< agreed upon media format
  509. /**
  510. * Lists of formats supported by the input and output filters respectively.
  511. * These lists are used for negotiating the format to actually be used,
  512. * which will be loaded into the format member, above, when chosen.
  513. */
  514. AVFilterFormats *in_formats;
  515. AVFilterFormats *out_formats;
  516. /**
  517. * The buffer reference currently being sent across the link by the source
  518. * filter. This is used internally by the filter system to allow
  519. * automatic copying of buffers which do not have sufficient permissions
  520. * for the destination. This should not be accessed directly by the
  521. * filters.
  522. */
  523. AVFilterBufferRef *src_buf;
  524. AVFilterBufferRef *cur_buf;
  525. AVFilterBufferRef *out_buf;
  526. /**
  527. * Define the time base used by the PTS of the frames/samples
  528. * which will pass through this link.
  529. * During the configuration stage, each filter is supposed to
  530. * change only the output timebase, while the timebase of the
  531. * input link is assumed to be an unchangeable property.
  532. */
  533. AVRational time_base;
  534. };
  535. /**
  536. * Link two filters together.
  537. *
  538. * @param src the source filter
  539. * @param srcpad index of the output pad on the source filter
  540. * @param dst the destination filter
  541. * @param dstpad index of the input pad on the destination filter
  542. * @return zero on success
  543. */
  544. int avfilter_link(AVFilterContext *src, unsigned srcpad,
  545. AVFilterContext *dst, unsigned dstpad);
  546. /**
  547. * Negotiate the media format, dimensions, etc of all inputs to a filter.
  548. *
  549. * @param filter the filter to negotiate the properties for its inputs
  550. * @return zero on successful negotiation
  551. */
  552. int avfilter_config_links(AVFilterContext *filter);
  553. /**
  554. * Request a picture buffer with a specific set of permissions.
  555. *
  556. * @param link the output link to the filter from which the buffer will
  557. * be requested
  558. * @param perms the required access permissions
  559. * @param w the minimum width of the buffer to allocate
  560. * @param h the minimum height of the buffer to allocate
  561. * @return A reference to the buffer. This must be unreferenced with
  562. * avfilter_unref_buffer when you are finished with it.
  563. */
  564. AVFilterBufferRef *avfilter_get_video_buffer(AVFilterLink *link, int perms,
  565. int w, int h);
  566. /**
  567. * Create a buffer reference wrapped around an already allocated image
  568. * buffer.
  569. *
  570. * @param data pointers to the planes of the image to reference
  571. * @param linesize linesizes for the planes of the image to reference
  572. * @param perms the required access permissions
  573. * @param w the width of the image specified by the data and linesize arrays
  574. * @param h the height of the image specified by the data and linesize arrays
  575. * @param format the pixel format of the image specified by the data and linesize arrays
  576. */
  577. AVFilterBufferRef *
  578. avfilter_get_video_buffer_ref_from_arrays(uint8_t *data[4], int linesize[4], int perms,
  579. int w, int h, enum PixelFormat format);
  580. /**
  581. * Request an audio samples buffer with a specific set of permissions.
  582. *
  583. * @param link the output link to the filter from which the buffer will
  584. * be requested
  585. * @param perms the required access permissions
  586. * @param sample_fmt the format of each sample in the buffer to allocate
  587. * @param size the buffer size in bytes
  588. * @param channel_layout the number and type of channels per sample in the buffer to allocate
  589. * @param planar audio data layout - planar or packed
  590. * @return A reference to the samples. This must be unreferenced with
  591. * avfilter_unref_buffer when you are finished with it.
  592. */
  593. AVFilterBufferRef *avfilter_get_audio_buffer(AVFilterLink *link, int perms,
  594. enum AVSampleFormat sample_fmt, int size,
  595. int64_t channel_layout, int planar);
  596. /**
  597. * Request an input frame from the filter at the other end of the link.
  598. *
  599. * @param link the input link
  600. * @return zero on success
  601. */
  602. int avfilter_request_frame(AVFilterLink *link);
  603. /**
  604. * Poll a frame from the filter chain.
  605. *
  606. * @param link the input link
  607. * @return the number of immediately available frames, a negative
  608. * number in case of error
  609. */
  610. int avfilter_poll_frame(AVFilterLink *link);
  611. /**
  612. * Notifie the next filter of the start of a frame.
  613. *
  614. * @param link the output link the frame will be sent over
  615. * @param picref A reference to the frame about to be sent. The data for this
  616. * frame need only be valid once draw_slice() is called for that
  617. * portion. The receiving filter will free this reference when
  618. * it no longer needs it.
  619. */
  620. void avfilter_start_frame(AVFilterLink *link, AVFilterBufferRef *picref);
  621. /**
  622. * Notifie the next filter that the current frame has finished.
  623. *
  624. * @param link the output link the frame was sent over
  625. */
  626. void avfilter_end_frame(AVFilterLink *link);
  627. /**
  628. * Send a slice to the next filter.
  629. *
  630. * Slices have to be provided in sequential order, either in
  631. * top-bottom or bottom-top order. If slices are provided in
  632. * non-sequential order the behavior of the function is undefined.
  633. *
  634. * @param link the output link over which the frame is being sent
  635. * @param y offset in pixels from the top of the image for this slice
  636. * @param h height of this slice in pixels
  637. * @param slice_dir the assumed direction for sending slices,
  638. * from the top slice to the bottom slice if the value is 1,
  639. * from the bottom slice to the top slice if the value is -1,
  640. * for other values the behavior of the function is undefined.
  641. */
  642. void avfilter_draw_slice(AVFilterLink *link, int y, int h, int slice_dir);
  643. /**
  644. * Send a buffer of audio samples to the next filter.
  645. *
  646. * @param link the output link over which the audio samples are being sent
  647. * @param samplesref a reference to the buffer of audio samples being sent. The
  648. * receiving filter will free this reference when it no longer
  649. * needs it or pass it on to the next filter.
  650. */
  651. void avfilter_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref);
  652. /** Initialize the filter system. Register all builtin filters. */
  653. void avfilter_register_all(void);
  654. /** Uninitialize the filter system. Unregister all filters. */
  655. void avfilter_uninit(void);
  656. /**
  657. * Register a filter. This is only needed if you plan to use
  658. * avfilter_get_by_name later to lookup the AVFilter structure by name. A
  659. * filter can still by instantiated with avfilter_open even if it is not
  660. * registered.
  661. *
  662. * @param filter the filter to register
  663. * @return 0 if the registration was succesfull, a negative value
  664. * otherwise
  665. */
  666. int avfilter_register(AVFilter *filter);
  667. /**
  668. * Get a filter definition matching the given name.
  669. *
  670. * @param name the filter name to find
  671. * @return the filter definition, if any matching one is registered.
  672. * NULL if none found.
  673. */
  674. AVFilter *avfilter_get_by_name(const char *name);
  675. /**
  676. * If filter is NULL, returns a pointer to the first registered filter pointer,
  677. * if filter is non-NULL, returns the next pointer after filter.
  678. * If the returned pointer points to NULL, the last registered filter
  679. * was already reached.
  680. */
  681. AVFilter **av_filter_next(AVFilter **filter);
  682. /**
  683. * Create a filter instance.
  684. *
  685. * @param filter_ctx put here a pointer to the created filter context
  686. * on success, NULL on failure
  687. * @param filter the filter to create an instance of
  688. * @param inst_name Name to give to the new instance. Can be NULL for none.
  689. * @return >= 0 in case of success, a negative error code otherwise
  690. */
  691. int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
  692. /**
  693. * Initialize a filter.
  694. *
  695. * @param filter the filter to initialize
  696. * @param args A string of parameters to use when initializing the filter.
  697. * The format and meaning of this string varies by filter.
  698. * @param opaque Any extra non-string data needed by the filter. The meaning
  699. * of this parameter varies by filter.
  700. * @return zero on success
  701. */
  702. int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
  703. /**
  704. * Free a filter context.
  705. *
  706. * @param filter the filter to free
  707. */
  708. void avfilter_free(AVFilterContext *filter);
  709. /**
  710. * Insert a filter in the middle of an existing link.
  711. *
  712. * @param link the link into which the filter should be inserted
  713. * @param filt the filter to be inserted
  714. * @param filt_srcpad_idx the input pad on the filter to connect
  715. * @param filt_dstpad_idx the output pad on the filter to connect
  716. * @return zero on success
  717. */
  718. int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
  719. unsigned filt_srcpad_idx, unsigned filt_dstpad_idx);
  720. /**
  721. * Insert a new pad.
  722. *
  723. * @param idx Insertion point. Pad is inserted at the end if this point
  724. * is beyond the end of the list of pads.
  725. * @param count Pointer to the number of pads in the list
  726. * @param padidx_off Offset within an AVFilterLink structure to the element
  727. * to increment when inserting a new pad causes link
  728. * numbering to change
  729. * @param pads Pointer to the pointer to the beginning of the list of pads
  730. * @param links Pointer to the pointer to the beginning of the list of links
  731. * @param newpad The new pad to add. A copy is made when adding.
  732. */
  733. void avfilter_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
  734. AVFilterPad **pads, AVFilterLink ***links,
  735. AVFilterPad *newpad);
  736. /** Insert a new input pad for the filter. */
  737. static inline void avfilter_insert_inpad(AVFilterContext *f, unsigned index,
  738. AVFilterPad *p)
  739. {
  740. avfilter_insert_pad(index, &f->input_count, offsetof(AVFilterLink, dstpad),
  741. &f->input_pads, &f->inputs, p);
  742. }
  743. /** Insert a new output pad for the filter. */
  744. static inline void avfilter_insert_outpad(AVFilterContext *f, unsigned index,
  745. AVFilterPad *p)
  746. {
  747. avfilter_insert_pad(index, &f->output_count, offsetof(AVFilterLink, srcpad),
  748. &f->output_pads, &f->outputs, p);
  749. }
  750. #endif /* AVFILTER_AVFILTER_H */