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.

954 lines
36KB

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