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.

860 lines
33KB

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