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.

876 lines
34KB

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