avfilter.h 31 KB

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