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.

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