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.

901 lines
34KB

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