avfilter.h 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852
  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. /**
  24. * @file
  25. * @ingroup lavfi
  26. * external API header
  27. */
  28. /**
  29. * @defgroup lavfi Libavfilter
  30. * @{
  31. */
  32. #include <stddef.h>
  33. #include "libavutil/avutil.h"
  34. #include "libavutil/dict.h"
  35. #include "libavutil/log.h"
  36. #include "libavutil/samplefmt.h"
  37. #include "libavutil/pixfmt.h"
  38. #include "libavutil/rational.h"
  39. #include "libavfilter/version.h"
  40. /**
  41. * Return the LIBAVFILTER_VERSION_INT constant.
  42. */
  43. unsigned avfilter_version(void);
  44. /**
  45. * Return the libavfilter build-time configuration.
  46. */
  47. const char *avfilter_configuration(void);
  48. /**
  49. * Return the libavfilter license.
  50. */
  51. const char *avfilter_license(void);
  52. /**
  53. * Get the class for the AVFilterContext struct.
  54. */
  55. const AVClass *avfilter_get_class(void);
  56. typedef struct AVFilterContext AVFilterContext;
  57. typedef struct AVFilterLink AVFilterLink;
  58. typedef struct AVFilterPad AVFilterPad;
  59. typedef struct AVFilterFormats AVFilterFormats;
  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. /**
  68. * pointers to the data planes/channels.
  69. *
  70. * For video, this should simply point to data[].
  71. *
  72. * For planar audio, each channel has a separate data pointer, and
  73. * linesize[0] contains the size of each channel buffer.
  74. * For packed audio, there is just one data pointer, and linesize[0]
  75. * contains the total size of the buffer for all channels.
  76. *
  77. * Note: Both data and extended_data will always be set, but for planar
  78. * audio with more channels that can fit in data, extended_data must be used
  79. * in order to access all channels.
  80. */
  81. uint8_t **extended_data;
  82. int linesize[8]; ///< number of bytes per line
  83. /** private data to be used by a custom free function */
  84. void *priv;
  85. /**
  86. * A pointer to the function to deallocate this buffer if the default
  87. * function is not sufficient. This could, for example, add the memory
  88. * back into a memory pool to be reused later without the overhead of
  89. * reallocating it from scratch.
  90. */
  91. void (*free)(struct AVFilterBuffer *buf);
  92. int format; ///< media format
  93. int w, h; ///< width and height of the allocated buffer
  94. unsigned refcount; ///< number of references to this buffer
  95. } AVFilterBuffer;
  96. #define AV_PERM_READ 0x01 ///< can read from the buffer
  97. #define AV_PERM_WRITE 0x02 ///< can write to the buffer
  98. #define AV_PERM_PRESERVE 0x04 ///< nobody else can overwrite the buffer
  99. #define AV_PERM_REUSE 0x08 ///< can output the buffer multiple times, with the same contents each time
  100. #define AV_PERM_REUSE2 0x10 ///< can output the buffer multiple times, modified each time
  101. #define AV_PERM_NEG_LINESIZES 0x20 ///< the buffer requested can have negative linesizes
  102. #define AV_PERM_ALIGN 0x40 ///< the buffer must be aligned
  103. #define AVFILTER_ALIGN 16 //not part of ABI
  104. /**
  105. * Audio specific properties in a reference to an AVFilterBuffer. Since
  106. * AVFilterBufferRef is common to different media formats, audio specific
  107. * per reference properties must be separated out.
  108. */
  109. typedef struct AVFilterBufferRefAudioProps {
  110. uint64_t channel_layout; ///< channel layout of audio buffer
  111. int nb_samples; ///< number of audio samples per channel
  112. int sample_rate; ///< audio buffer sample rate
  113. int channels; ///< number of channels (do not access directly)
  114. } AVFilterBufferRefAudioProps;
  115. /**
  116. * Video specific properties in a reference to an AVFilterBuffer. Since
  117. * AVFilterBufferRef is common to different media formats, video specific
  118. * per reference properties must be separated out.
  119. */
  120. typedef struct AVFilterBufferRefVideoProps {
  121. int w; ///< image width
  122. int h; ///< image height
  123. AVRational sample_aspect_ratio; ///< sample aspect ratio
  124. int interlaced; ///< is frame interlaced
  125. int top_field_first; ///< field order
  126. enum AVPictureType pict_type; ///< picture type of the frame
  127. int key_frame; ///< 1 -> keyframe, 0-> not
  128. int qp_table_linesize; ///< qp_table stride
  129. int qp_table_size; ///< qp_table size
  130. int8_t *qp_table; ///< array of Quantization Parameters
  131. } AVFilterBufferRefVideoProps;
  132. /**
  133. * A reference to an AVFilterBuffer. Since filters can manipulate the origin of
  134. * a buffer to, for example, crop image without any memcpy, the buffer origin
  135. * and dimensions are per-reference properties. Linesize is also useful for
  136. * image flipping, frame to field filters, etc, and so is also per-reference.
  137. *
  138. * TODO: add anything necessary for frame reordering
  139. */
  140. typedef struct AVFilterBufferRef {
  141. AVFilterBuffer *buf; ///< the buffer that this is a reference to
  142. uint8_t *data[8]; ///< picture/audio data for each plane
  143. /**
  144. * pointers to the data planes/channels.
  145. *
  146. * For video, this should simply point to data[].
  147. *
  148. * For planar audio, each channel has a separate data pointer, and
  149. * linesize[0] contains the size of each channel buffer.
  150. * For packed audio, there is just one data pointer, and linesize[0]
  151. * contains the total size of the buffer for all channels.
  152. *
  153. * Note: Both data and extended_data will always be set, but for planar
  154. * audio with more channels that can fit in data, extended_data must be used
  155. * in order to access all channels.
  156. */
  157. uint8_t **extended_data;
  158. int linesize[8]; ///< number of bytes per line
  159. AVFilterBufferRefVideoProps *video; ///< video buffer specific properties
  160. AVFilterBufferRefAudioProps *audio; ///< audio buffer specific properties
  161. /**
  162. * presentation timestamp. The time unit may change during
  163. * filtering, as it is specified in the link and the filter code
  164. * may need to rescale the PTS accordingly.
  165. */
  166. int64_t pts;
  167. int64_t pos; ///< byte position in stream, -1 if unknown
  168. int format; ///< media format
  169. int perms; ///< permissions, see the AV_PERM_* flags
  170. enum AVMediaType type; ///< media type of buffer data
  171. AVDictionary *metadata; ///< dictionary containing metadata key=value tags
  172. } AVFilterBufferRef;
  173. /**
  174. * Copy properties of src to dst, without copying the actual data
  175. */
  176. void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilterBufferRef *src);
  177. /**
  178. * Add a new reference to a buffer.
  179. *
  180. * @param ref an existing reference to the buffer
  181. * @param pmask a bitmask containing the allowable permissions in the new
  182. * reference
  183. * @return a new reference to the buffer with the same properties as the
  184. * old, excluding any permissions denied by pmask
  185. */
  186. AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask);
  187. /**
  188. * Remove a reference to a buffer. If this is the last reference to the
  189. * buffer, the buffer itself is also automatically freed.
  190. *
  191. * @param ref reference to the buffer, may be NULL
  192. *
  193. * @note it is recommended to use avfilter_unref_bufferp() instead of this
  194. * function
  195. */
  196. void avfilter_unref_buffer(AVFilterBufferRef *ref);
  197. /**
  198. * Remove a reference to a buffer and set the pointer to NULL.
  199. * If this is the last reference to the buffer, the buffer itself
  200. * is also automatically freed.
  201. *
  202. * @param ref pointer to the buffer reference
  203. */
  204. void avfilter_unref_bufferp(AVFilterBufferRef **ref);
  205. /**
  206. * Get the number of channels of a buffer reference.
  207. */
  208. int avfilter_ref_get_channels(AVFilterBufferRef *ref);
  209. #if FF_API_AVFILTERPAD_PUBLIC
  210. /**
  211. * A filter pad used for either input or output.
  212. *
  213. * See doc/filter_design.txt for details on how to implement the methods.
  214. *
  215. * @warning this struct might be removed from public API.
  216. * users should call avfilter_pad_get_name() and avfilter_pad_get_type()
  217. * to access the name and type fields; there should be no need to access
  218. * any other fields from outside of libavfilter.
  219. */
  220. struct AVFilterPad {
  221. /**
  222. * Pad name. The name is unique among inputs and among outputs, but an
  223. * input may have the same name as an output. This may be NULL if this
  224. * pad has no need to ever be referenced by name.
  225. */
  226. const char *name;
  227. /**
  228. * AVFilterPad type.
  229. */
  230. enum AVMediaType type;
  231. /**
  232. * Input pads:
  233. * Minimum required permissions on incoming buffers. Any buffer with
  234. * insufficient permissions will be automatically copied by the filter
  235. * system to a new buffer which provides the needed access permissions.
  236. *
  237. * Output pads:
  238. * Guaranteed permissions on outgoing buffers. Any buffer pushed on the
  239. * link must have at least these permissions; this fact is checked by
  240. * asserts. It can be used to optimize buffer allocation.
  241. */
  242. int min_perms;
  243. /**
  244. * Input pads:
  245. * Permissions which are not accepted on incoming buffers. Any buffer
  246. * which has any of these permissions set will be automatically copied
  247. * by the filter system to a new buffer which does not have those
  248. * permissions. This can be used to easily disallow buffers with
  249. * AV_PERM_REUSE.
  250. *
  251. * Output pads:
  252. * Permissions which are automatically removed on outgoing buffers. It
  253. * can be used to optimize buffer allocation.
  254. */
  255. int rej_perms;
  256. /**
  257. * @deprecated unused
  258. */
  259. int (*start_frame)(AVFilterLink *link, AVFilterBufferRef *picref);
  260. /**
  261. * Callback function to get a video buffer. If NULL, the filter system will
  262. * use ff_default_get_video_buffer().
  263. *
  264. * Input video pads only.
  265. */
  266. AVFilterBufferRef *(*get_video_buffer)(AVFilterLink *link, int perms, int w, int h);
  267. /**
  268. * Callback function to get an audio buffer. If NULL, the filter system will
  269. * use ff_default_get_audio_buffer().
  270. *
  271. * Input audio pads only.
  272. */
  273. AVFilterBufferRef *(*get_audio_buffer)(AVFilterLink *link, int perms,
  274. int nb_samples);
  275. /**
  276. * @deprecated unused
  277. */
  278. int (*end_frame)(AVFilterLink *link);
  279. /**
  280. * @deprecated unused
  281. */
  282. int (*draw_slice)(AVFilterLink *link, int y, int height, int slice_dir);
  283. /**
  284. * Filtering callback. This is where a filter receives a frame with
  285. * audio/video data and should do its processing.
  286. *
  287. * Input pads only.
  288. *
  289. * @return >= 0 on success, a negative AVERROR on error. This function
  290. * must ensure that frame is properly unreferenced on error if it
  291. * hasn't been passed on to another filter.
  292. */
  293. int (*filter_frame)(AVFilterLink *link, AVFilterBufferRef *frame);
  294. /**
  295. * Frame poll callback. This returns the number of immediately available
  296. * samples. It should return a positive value if the next request_frame()
  297. * is guaranteed to return one frame (with no delay).
  298. *
  299. * Defaults to just calling the source poll_frame() method.
  300. *
  301. * Output pads only.
  302. */
  303. int (*poll_frame)(AVFilterLink *link);
  304. /**
  305. * Frame request callback. A call to this should result in at least one
  306. * frame being output over the given link. This should return zero on
  307. * success, and another value on error.
  308. * See ff_request_frame() for the error codes with a specific
  309. * meaning.
  310. *
  311. * Output pads only.
  312. */
  313. int (*request_frame)(AVFilterLink *link);
  314. /**
  315. * Link configuration callback.
  316. *
  317. * For output pads, this should set the following link properties:
  318. * video: width, height, sample_aspect_ratio, time_base
  319. * audio: sample_rate.
  320. *
  321. * This should NOT set properties such as format, channel_layout, etc which
  322. * are negotiated between filters by the filter system using the
  323. * query_formats() callback before this function is called.
  324. *
  325. * For input pads, this should check the properties of the link, and update
  326. * the filter's internal state as necessary.
  327. *
  328. * For both input and output pads, this should return zero on success,
  329. * and another value on error.
  330. */
  331. int (*config_props)(AVFilterLink *link);
  332. /**
  333. * The filter expects a fifo to be inserted on its input link,
  334. * typically because it has a delay.
  335. *
  336. * input pads only.
  337. */
  338. int needs_fifo;
  339. };
  340. #endif
  341. /**
  342. * Get the name of an AVFilterPad.
  343. *
  344. * @param pads an array of AVFilterPads
  345. * @param pad_idx index of the pad in the array it; is the caller's
  346. * responsibility to ensure the index is valid
  347. *
  348. * @return name of the pad_idx'th pad in pads
  349. */
  350. const char *avfilter_pad_get_name(AVFilterPad *pads, int pad_idx);
  351. /**
  352. * Get the type of an AVFilterPad.
  353. *
  354. * @param pads an array of AVFilterPads
  355. * @param pad_idx index of the pad in the array; it is the caller's
  356. * responsibility to ensure the index is valid
  357. *
  358. * @return type of the pad_idx'th pad in pads
  359. */
  360. enum AVMediaType avfilter_pad_get_type(AVFilterPad *pads, int pad_idx);
  361. /**
  362. * Filter definition. This defines the pads a filter contains, and all the
  363. * callback functions used to interact with the filter.
  364. */
  365. typedef struct AVFilter {
  366. const char *name; ///< filter name
  367. /**
  368. * A description for the filter. You should use the
  369. * NULL_IF_CONFIG_SMALL() macro to define it.
  370. */
  371. const char *description;
  372. const AVFilterPad *inputs; ///< NULL terminated list of inputs. NULL if none
  373. const AVFilterPad *outputs; ///< NULL terminated list of outputs. NULL if none
  374. /*****************************************************************
  375. * All fields below this line are not part of the public API. They
  376. * may not be used outside of libavfilter and can be changed and
  377. * removed at will.
  378. * New public fields should be added right above.
  379. *****************************************************************
  380. */
  381. /**
  382. * Filter initialization function. Args contains the user-supplied
  383. * parameters. FIXME: maybe an AVOption-based system would be better?
  384. */
  385. int (*init)(AVFilterContext *ctx, const char *args);
  386. /**
  387. * Filter uninitialization function. Should deallocate any memory held
  388. * by the filter, release any buffer references, etc. This does not need
  389. * to deallocate the AVFilterContext->priv memory itself.
  390. */
  391. void (*uninit)(AVFilterContext *ctx);
  392. /**
  393. * Queries formats/layouts supported by the filter and its pads, and sets
  394. * the in_formats/in_chlayouts for links connected to its output pads,
  395. * and out_formats/out_chlayouts for links connected to its input pads.
  396. *
  397. * @return zero on success, a negative value corresponding to an
  398. * AVERROR code otherwise
  399. */
  400. int (*query_formats)(AVFilterContext *);
  401. int priv_size; ///< size of private data to allocate for the filter
  402. /**
  403. * Make the filter instance process a command.
  404. *
  405. * @param cmd the command to process, for handling simplicity all commands must be alphanumeric only
  406. * @param arg the argument for the command
  407. * @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.
  408. * @param flags if AVFILTER_CMD_FLAG_FAST is set and the command would be
  409. * time consuming then a filter should treat it like an unsupported command
  410. *
  411. * @returns >=0 on success otherwise an error code.
  412. * AVERROR(ENOSYS) on unsupported commands
  413. */
  414. int (*process_command)(AVFilterContext *, const char *cmd, const char *arg, char *res, int res_len, int flags);
  415. /**
  416. * Filter initialization function, alternative to the init()
  417. * callback. Args contains the user-supplied parameters, opaque is
  418. * used for providing binary data.
  419. */
  420. int (*init_opaque)(AVFilterContext *ctx, const char *args, void *opaque);
  421. const AVClass *priv_class; ///< private class, containing filter specific options
  422. } AVFilter;
  423. /** An instance of a filter */
  424. struct AVFilterContext {
  425. const AVClass *av_class; ///< needed for av_log()
  426. AVFilter *filter; ///< the AVFilter of which this is an instance
  427. char *name; ///< name of this filter instance
  428. AVFilterPad *input_pads; ///< array of input pads
  429. AVFilterLink **inputs; ///< array of pointers to input links
  430. #if FF_API_FOO_COUNT
  431. unsigned input_count; ///< @deprecated use nb_inputs
  432. #endif
  433. unsigned nb_inputs; ///< number of input pads
  434. AVFilterPad *output_pads; ///< array of output pads
  435. AVFilterLink **outputs; ///< array of pointers to output links
  436. #if FF_API_FOO_COUNT
  437. unsigned output_count; ///< @deprecated use nb_outputs
  438. #endif
  439. unsigned nb_outputs; ///< number of output pads
  440. void *priv; ///< private data for use by the filter
  441. struct AVFilterCommand *command_queue;
  442. };
  443. /**
  444. * A link between two filters. This contains pointers to the source and
  445. * destination filters between which this link exists, and the indexes of
  446. * the pads involved. In addition, this link also contains the parameters
  447. * which have been negotiated and agreed upon between the filter, such as
  448. * image dimensions, format, etc.
  449. */
  450. struct AVFilterLink {
  451. AVFilterContext *src; ///< source filter
  452. AVFilterPad *srcpad; ///< output pad on the source filter
  453. AVFilterContext *dst; ///< dest filter
  454. AVFilterPad *dstpad; ///< input pad on the dest filter
  455. enum AVMediaType type; ///< filter media type
  456. /* These parameters apply only to video */
  457. int w; ///< agreed upon image width
  458. int h; ///< agreed upon image height
  459. AVRational sample_aspect_ratio; ///< agreed upon sample aspect ratio
  460. /* These parameters apply only to audio */
  461. uint64_t channel_layout; ///< channel layout of current buffer (see libavutil/channel_layout.h)
  462. int sample_rate; ///< samples per second
  463. int format; ///< agreed upon media format
  464. /**
  465. * Define the time base used by the PTS of the frames/samples
  466. * which will pass through this link.
  467. * During the configuration stage, each filter is supposed to
  468. * change only the output timebase, while the timebase of the
  469. * input link is assumed to be an unchangeable property.
  470. */
  471. AVRational time_base;
  472. /*****************************************************************
  473. * All fields below this line are not part of the public API. They
  474. * may not be used outside of libavfilter and can be changed and
  475. * removed at will.
  476. * New public fields should be added right above.
  477. *****************************************************************
  478. */
  479. /**
  480. * Lists of formats and channel layouts supported by the input and output
  481. * filters respectively. These lists are used for negotiating the format
  482. * to actually be used, which will be loaded into the format and
  483. * channel_layout members, above, when chosen.
  484. *
  485. */
  486. AVFilterFormats *in_formats;
  487. AVFilterFormats *out_formats;
  488. /**
  489. * Lists of channel layouts and sample rates used for automatic
  490. * negotiation.
  491. */
  492. AVFilterFormats *in_samplerates;
  493. AVFilterFormats *out_samplerates;
  494. struct AVFilterChannelLayouts *in_channel_layouts;
  495. struct AVFilterChannelLayouts *out_channel_layouts;
  496. /**
  497. * Audio only, the destination filter sets this to a non-zero value to
  498. * request that buffers with the given number of samples should be sent to
  499. * it. AVFilterPad.needs_fifo must also be set on the corresponding input
  500. * pad.
  501. * Last buffer before EOF will be padded with silence.
  502. */
  503. int request_samples;
  504. /** stage of the initialization of the link properties (dimensions, etc) */
  505. enum {
  506. AVLINK_UNINIT = 0, ///< not started
  507. AVLINK_STARTINIT, ///< started, but incomplete
  508. AVLINK_INIT ///< complete
  509. } init_state;
  510. struct AVFilterPool *pool;
  511. /**
  512. * Graph the filter belongs to.
  513. */
  514. struct AVFilterGraph *graph;
  515. /**
  516. * Current timestamp of the link, as defined by the most recent
  517. * frame(s), in AV_TIME_BASE units.
  518. */
  519. int64_t current_pts;
  520. /**
  521. * Index in the age array.
  522. */
  523. int age_index;
  524. /**
  525. * Frame rate of the stream on the link, or 1/0 if unknown;
  526. * if left to 0/0, will be automatically be copied from the first input
  527. * of the source filter if it exists.
  528. *
  529. * Sources should set it to the best estimation of the real frame rate.
  530. * Filters should update it if necessary depending on their function.
  531. * Sinks can use it to set a default output frame rate.
  532. * It is similar to the r_frame_rate field in AVStream.
  533. */
  534. AVRational frame_rate;
  535. /**
  536. * Buffer partially filled with samples to achieve a fixed/minimum size.
  537. */
  538. AVFilterBufferRef *partial_buf;
  539. /**
  540. * Size of the partial buffer to allocate.
  541. * Must be between min_samples and max_samples.
  542. */
  543. int partial_buf_size;
  544. /**
  545. * Minimum number of samples to filter at once. If filter_frame() is
  546. * called with fewer samples, it will accumulate them in partial_buf.
  547. * This field and the related ones must not be changed after filtering
  548. * has started.
  549. * If 0, all related fields are ignored.
  550. */
  551. int min_samples;
  552. /**
  553. * Maximum number of samples to filter at once. If filter_frame() is
  554. * called with more samples, it will split them.
  555. */
  556. int max_samples;
  557. /**
  558. * The buffer reference currently being received across the link by the
  559. * destination filter. This is used internally by the filter system to
  560. * allow automatic copying of buffers which do not have sufficient
  561. * permissions for the destination. This should not be accessed directly
  562. * by the filters.
  563. */
  564. AVFilterBufferRef *cur_buf_copy;
  565. /**
  566. * True if the link is closed.
  567. * If set, all attemps of start_frame, filter_frame or request_frame
  568. * will fail with AVERROR_EOF, and if necessary the reference will be
  569. * destroyed.
  570. * If request_frame returns AVERROR_EOF, this flag is set on the
  571. * corresponding link.
  572. * It can be set also be set by either the source or the destination
  573. * filter.
  574. */
  575. int closed;
  576. /**
  577. * Number of channels.
  578. */
  579. int channels;
  580. };
  581. /**
  582. * Link two filters together.
  583. *
  584. * @param src the source filter
  585. * @param srcpad index of the output pad on the source filter
  586. * @param dst the destination filter
  587. * @param dstpad index of the input pad on the destination filter
  588. * @return zero on success
  589. */
  590. int avfilter_link(AVFilterContext *src, unsigned srcpad,
  591. AVFilterContext *dst, unsigned dstpad);
  592. /**
  593. * Free the link in *link, and set its pointer to NULL.
  594. */
  595. void avfilter_link_free(AVFilterLink **link);
  596. /**
  597. * Get the number of channels of a link.
  598. */
  599. int avfilter_link_get_channels(AVFilterLink *link);
  600. /**
  601. * Set the closed field of a link.
  602. */
  603. void avfilter_link_set_closed(AVFilterLink *link, int closed);
  604. /**
  605. * Negotiate the media format, dimensions, etc of all inputs to a filter.
  606. *
  607. * @param filter the filter to negotiate the properties for its inputs
  608. * @return zero on successful negotiation
  609. */
  610. int avfilter_config_links(AVFilterContext *filter);
  611. /**
  612. * Create a buffer reference wrapped around an already allocated image
  613. * buffer.
  614. *
  615. * @param data pointers to the planes of the image to reference
  616. * @param linesize linesizes for the planes of the image to reference
  617. * @param perms the required access permissions
  618. * @param w the width of the image specified by the data and linesize arrays
  619. * @param h the height of the image specified by the data and linesize arrays
  620. * @param format the pixel format of the image specified by the data and linesize arrays
  621. */
  622. AVFilterBufferRef *
  623. avfilter_get_video_buffer_ref_from_arrays(uint8_t * const data[4], const int linesize[4], int perms,
  624. int w, int h, enum AVPixelFormat format);
  625. /**
  626. * Create an audio buffer reference wrapped around an already
  627. * allocated samples buffer.
  628. *
  629. * See avfilter_get_audio_buffer_ref_from_arrays_channels() for a version
  630. * that can handle unknown channel layouts.
  631. *
  632. * @param data pointers to the samples plane buffers
  633. * @param linesize linesize for the samples plane buffers
  634. * @param perms the required access permissions
  635. * @param nb_samples number of samples per channel
  636. * @param sample_fmt the format of each sample in the buffer to allocate
  637. * @param channel_layout the channel layout of the buffer
  638. */
  639. AVFilterBufferRef *avfilter_get_audio_buffer_ref_from_arrays(uint8_t **data,
  640. int linesize,
  641. int perms,
  642. int nb_samples,
  643. enum AVSampleFormat sample_fmt,
  644. uint64_t channel_layout);
  645. /**
  646. * Create an audio buffer reference wrapped around an already
  647. * allocated samples buffer.
  648. *
  649. * @param data pointers to the samples plane buffers
  650. * @param linesize linesize for the samples plane buffers
  651. * @param perms the required access permissions
  652. * @param nb_samples number of samples per channel
  653. * @param sample_fmt the format of each sample in the buffer to allocate
  654. * @param channels the number of channels of the buffer
  655. * @param channel_layout the channel layout of the buffer,
  656. * must be either 0 or consistent with channels
  657. */
  658. AVFilterBufferRef *avfilter_get_audio_buffer_ref_from_arrays_channels(uint8_t **data,
  659. int linesize,
  660. int perms,
  661. int nb_samples,
  662. enum AVSampleFormat sample_fmt,
  663. int channels,
  664. uint64_t channel_layout);
  665. #define AVFILTER_CMD_FLAG_ONE 1 ///< Stop once a filter understood the command (for target=all for example), fast filters are favored automatically
  666. #define AVFILTER_CMD_FLAG_FAST 2 ///< Only execute command when its fast (like a video out that supports contrast adjustment in hw)
  667. /**
  668. * Make the filter instance process a command.
  669. * It is recommended to use avfilter_graph_send_command().
  670. */
  671. int avfilter_process_command(AVFilterContext *filter, const char *cmd, const char *arg, char *res, int res_len, int flags);
  672. /** Initialize the filter system. Register all builtin filters. */
  673. void avfilter_register_all(void);
  674. /** Uninitialize the filter system. Unregister all filters. */
  675. void avfilter_uninit(void);
  676. /**
  677. * Register a filter. This is only needed if you plan to use
  678. * avfilter_get_by_name later to lookup the AVFilter structure by name. A
  679. * filter can still by instantiated with avfilter_open even if it is not
  680. * registered.
  681. *
  682. * @param filter the filter to register
  683. * @return 0 if the registration was successful, a negative value
  684. * otherwise
  685. */
  686. int avfilter_register(AVFilter *filter);
  687. /**
  688. * Get a filter definition matching the given name.
  689. *
  690. * @param name the filter name to find
  691. * @return the filter definition, if any matching one is registered.
  692. * NULL if none found.
  693. */
  694. AVFilter *avfilter_get_by_name(const char *name);
  695. /**
  696. * If filter is NULL, returns a pointer to the first registered filter pointer,
  697. * if filter is non-NULL, returns the next pointer after filter.
  698. * If the returned pointer points to NULL, the last registered filter
  699. * was already reached.
  700. */
  701. AVFilter **av_filter_next(AVFilter **filter);
  702. /**
  703. * Create a filter instance.
  704. *
  705. * @param filter_ctx put here a pointer to the created filter context
  706. * on success, NULL on failure
  707. * @param filter the filter to create an instance of
  708. * @param inst_name Name to give to the new instance. Can be NULL for none.
  709. * @return >= 0 in case of success, a negative error code otherwise
  710. */
  711. int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
  712. /**
  713. * Initialize a filter.
  714. *
  715. * @param filter the filter to initialize
  716. * @param args A string of parameters to use when initializing the filter.
  717. * The format and meaning of this string varies by filter.
  718. * @param opaque Any extra non-string data needed by the filter. The meaning
  719. * of this parameter varies by filter.
  720. * @return zero on success
  721. */
  722. int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
  723. /**
  724. * Free a filter context.
  725. *
  726. * @param filter the filter to free
  727. */
  728. void avfilter_free(AVFilterContext *filter);
  729. /**
  730. * Insert a filter in the middle of an existing link.
  731. *
  732. * @param link the link into which the filter should be inserted
  733. * @param filt the filter to be inserted
  734. * @param filt_srcpad_idx the input pad on the filter to connect
  735. * @param filt_dstpad_idx the output pad on the filter to connect
  736. * @return zero on success
  737. */
  738. int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
  739. unsigned filt_srcpad_idx, unsigned filt_dstpad_idx);
  740. /**
  741. * @}
  742. */
  743. #endif /* AVFILTER_AVFILTER_H */