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.

811 lines
32KB

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