avfilter.h 36 KB

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