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.

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