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.

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