avfilter.h 32 KB

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