You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

771 lines
28KB

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