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.

912 lines
35KB

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