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.

701 lines
24KB

  1. /*
  2. * filter layer
  3. * Copyright (c) 2007 Bobby Bingham
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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/frame.h"
  25. #include "libavutil/log.h"
  26. #include "libavutil/samplefmt.h"
  27. #include "libavutil/pixfmt.h"
  28. #include "libavutil/rational.h"
  29. #include "libavcodec/avcodec.h"
  30. #include <stddef.h>
  31. #include "libavfilter/version.h"
  32. /**
  33. * Return the LIBAVFILTER_VERSION_INT constant.
  34. */
  35. unsigned avfilter_version(void);
  36. /**
  37. * Return the libavfilter build-time configuration.
  38. */
  39. const char *avfilter_configuration(void);
  40. /**
  41. * Return the libavfilter license.
  42. */
  43. const char *avfilter_license(void);
  44. typedef struct AVFilterContext AVFilterContext;
  45. typedef struct AVFilterLink AVFilterLink;
  46. typedef struct AVFilterPad AVFilterPad;
  47. typedef struct AVFilterFormats AVFilterFormats;
  48. #if FF_API_AVFILTERBUFFER
  49. /**
  50. * A reference-counted buffer data type used by the filter system. Filters
  51. * should not store pointers to this structure directly, but instead use the
  52. * AVFilterBufferRef structure below.
  53. */
  54. typedef struct AVFilterBuffer {
  55. uint8_t *data[8]; ///< buffer data for each plane/channel
  56. /**
  57. * pointers to the data planes/channels.
  58. *
  59. * For video, this should simply point to data[].
  60. *
  61. * For planar audio, each channel has a separate data pointer, and
  62. * linesize[0] contains the size of each channel buffer.
  63. * For packed audio, there is just one data pointer, and linesize[0]
  64. * contains the total size of the buffer for all channels.
  65. *
  66. * Note: Both data and extended_data will always be set, but for planar
  67. * audio with more channels that can fit in data, extended_data must be used
  68. * in order to access all channels.
  69. */
  70. uint8_t **extended_data;
  71. int linesize[8]; ///< number of bytes per line
  72. /** private data to be used by a custom free function */
  73. void *priv;
  74. /**
  75. * A pointer to the function to deallocate this buffer if the default
  76. * function is not sufficient. This could, for example, add the memory
  77. * back into a memory pool to be reused later without the overhead of
  78. * reallocating it from scratch.
  79. */
  80. void (*free)(struct AVFilterBuffer *buf);
  81. int format; ///< media format
  82. int w, h; ///< width and height of the allocated buffer
  83. unsigned refcount; ///< number of references to this buffer
  84. } AVFilterBuffer;
  85. #define AV_PERM_READ 0x01 ///< can read from the buffer
  86. #define AV_PERM_WRITE 0x02 ///< can write to the buffer
  87. #define AV_PERM_PRESERVE 0x04 ///< nobody else can overwrite the buffer
  88. #define AV_PERM_REUSE 0x08 ///< can output the buffer multiple times, with the same contents each time
  89. #define AV_PERM_REUSE2 0x10 ///< can output the buffer multiple times, modified each time
  90. #define AV_PERM_NEG_LINESIZES 0x20 ///< the buffer requested can have negative linesizes
  91. /**
  92. * Audio specific properties in a reference to an AVFilterBuffer. Since
  93. * AVFilterBufferRef is common to different media formats, audio specific
  94. * per reference properties must be separated out.
  95. */
  96. typedef struct AVFilterBufferRefAudioProps {
  97. uint64_t channel_layout; ///< channel layout of audio buffer
  98. int nb_samples; ///< number of audio samples
  99. int sample_rate; ///< audio buffer sample rate
  100. int planar; ///< audio buffer - planar or packed
  101. } AVFilterBufferRefAudioProps;
  102. /**
  103. * Video specific properties in a reference to an AVFilterBuffer. Since
  104. * AVFilterBufferRef is common to different media formats, video specific
  105. * per reference properties must be separated out.
  106. */
  107. typedef struct AVFilterBufferRefVideoProps {
  108. int w; ///< image width
  109. int h; ///< image height
  110. AVRational pixel_aspect; ///< pixel aspect ratio
  111. int interlaced; ///< is frame interlaced
  112. int top_field_first; ///< field order
  113. enum AVPictureType pict_type; ///< picture type of the frame
  114. int key_frame; ///< 1 -> keyframe, 0-> not
  115. } AVFilterBufferRefVideoProps;
  116. /**
  117. * A reference to an AVFilterBuffer. Since filters can manipulate the origin of
  118. * a buffer to, for example, crop image without any memcpy, the buffer origin
  119. * and dimensions are per-reference properties. Linesize is also useful for
  120. * image flipping, frame to field filters, etc, and so is also per-reference.
  121. *
  122. * TODO: add anything necessary for frame reordering
  123. */
  124. typedef struct AVFilterBufferRef {
  125. AVFilterBuffer *buf; ///< the buffer that this is a reference to
  126. uint8_t *data[8]; ///< picture/audio data for each plane
  127. /**
  128. * pointers to the data planes/channels.
  129. *
  130. * For video, this should simply point to data[].
  131. *
  132. * For planar audio, each channel has a separate data pointer, and
  133. * linesize[0] contains the size of each channel buffer.
  134. * For packed audio, there is just one data pointer, and linesize[0]
  135. * contains the total size of the buffer for all channels.
  136. *
  137. * Note: Both data and extended_data will always be set, but for planar
  138. * audio with more channels that can fit in data, extended_data must be used
  139. * in order to access all channels.
  140. */
  141. uint8_t **extended_data;
  142. int linesize[8]; ///< number of bytes per line
  143. AVFilterBufferRefVideoProps *video; ///< video buffer specific properties
  144. AVFilterBufferRefAudioProps *audio; ///< audio buffer specific properties
  145. /**
  146. * presentation timestamp. The time unit may change during
  147. * filtering, as it is specified in the link and the filter code
  148. * may need to rescale the PTS accordingly.
  149. */
  150. int64_t pts;
  151. int64_t pos; ///< byte position in stream, -1 if unknown
  152. int format; ///< media format
  153. int perms; ///< permissions, see the AV_PERM_* flags
  154. enum AVMediaType type; ///< media type of buffer data
  155. } AVFilterBufferRef;
  156. /**
  157. * Copy properties of src to dst, without copying the actual data
  158. */
  159. attribute_deprecated
  160. void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilterBufferRef *src);
  161. /**
  162. * Add a new reference to a buffer.
  163. *
  164. * @param ref an existing reference to the buffer
  165. * @param pmask a bitmask containing the allowable permissions in the new
  166. * reference
  167. * @return a new reference to the buffer with the same properties as the
  168. * old, excluding any permissions denied by pmask
  169. */
  170. attribute_deprecated
  171. AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask);
  172. /**
  173. * Remove a reference to a buffer. If this is the last reference to the
  174. * buffer, the buffer itself is also automatically freed.
  175. *
  176. * @param ref reference to the buffer, may be NULL
  177. *
  178. * @note it is recommended to use avfilter_unref_bufferp() instead of this
  179. * function
  180. */
  181. attribute_deprecated
  182. void avfilter_unref_buffer(AVFilterBufferRef *ref);
  183. /**
  184. * Remove a reference to a buffer and set the pointer to NULL.
  185. * If this is the last reference to the buffer, the buffer itself
  186. * is also automatically freed.
  187. *
  188. * @param ref pointer to the buffer reference
  189. */
  190. attribute_deprecated
  191. void avfilter_unref_bufferp(AVFilterBufferRef **ref);
  192. #endif
  193. #if FF_API_AVFILTERPAD_PUBLIC
  194. /**
  195. * A filter pad used for either input or output.
  196. *
  197. * @warning this struct will be removed from public API.
  198. * users should call avfilter_pad_get_name() and avfilter_pad_get_type()
  199. * to access the name and type fields; there should be no need to access
  200. * any other fields from outside of libavfilter.
  201. */
  202. struct AVFilterPad {
  203. /**
  204. * Pad name. The name is unique among inputs and among outputs, but an
  205. * input may have the same name as an output. This may be NULL if this
  206. * pad has no need to ever be referenced by name.
  207. */
  208. const char *name;
  209. /**
  210. * AVFilterPad type.
  211. */
  212. enum AVMediaType type;
  213. /**
  214. * Minimum required permissions on incoming buffers. Any buffer with
  215. * insufficient permissions will be automatically copied by the filter
  216. * system to a new buffer which provides the needed access permissions.
  217. *
  218. * Input pads only.
  219. */
  220. attribute_deprecated int min_perms;
  221. /**
  222. * Permissions which are not accepted on incoming buffers. Any buffer
  223. * which has any of these permissions set will be automatically copied
  224. * by the filter system to a new buffer which does not have those
  225. * permissions. This can be used to easily disallow buffers with
  226. * AV_PERM_REUSE.
  227. *
  228. * Input pads only.
  229. */
  230. attribute_deprecated int rej_perms;
  231. /**
  232. * @deprecated unused
  233. */
  234. int (*start_frame)(AVFilterLink *link, AVFilterBufferRef *picref);
  235. /**
  236. * Callback function to get a video buffer. If NULL, the filter system will
  237. * use avfilter_default_get_video_buffer().
  238. *
  239. * Input video pads only.
  240. */
  241. AVFrame *(*get_video_buffer)(AVFilterLink *link, int w, int h);
  242. /**
  243. * Callback function to get an audio buffer. If NULL, the filter system will
  244. * use avfilter_default_get_audio_buffer().
  245. *
  246. * Input audio pads only.
  247. */
  248. AVFrame *(*get_audio_buffer)(AVFilterLink *link, int nb_samples);
  249. /**
  250. * @deprecated unused
  251. */
  252. int (*end_frame)(AVFilterLink *link);
  253. /**
  254. * @deprecated unused
  255. */
  256. int (*draw_slice)(AVFilterLink *link, int y, int height, int slice_dir);
  257. /**
  258. * Filtering callback. This is where a filter receives a frame with
  259. * audio/video data and should do its processing.
  260. *
  261. * Input pads only.
  262. *
  263. * @return >= 0 on success, a negative AVERROR on error. This function
  264. * must ensure that samplesref is properly unreferenced on error if it
  265. * hasn't been passed on to another filter.
  266. */
  267. int (*filter_frame)(AVFilterLink *link, AVFrame *frame);
  268. /**
  269. * Frame poll callback. This returns the number of immediately available
  270. * samples. It should return a positive value if the next request_frame()
  271. * is guaranteed to return one frame (with no delay).
  272. *
  273. * Defaults to just calling the source poll_frame() method.
  274. *
  275. * Output pads only.
  276. */
  277. int (*poll_frame)(AVFilterLink *link);
  278. /**
  279. * Frame request callback. A call to this should result in at least one
  280. * frame being output over the given link. This should return zero on
  281. * success, and another value on error.
  282. *
  283. * Output pads only.
  284. */
  285. int (*request_frame)(AVFilterLink *link);
  286. /**
  287. * Link configuration callback.
  288. *
  289. * For output pads, this should set the link properties such as
  290. * width/height. This should NOT set the format property - that is
  291. * negotiated between filters by the filter system using the
  292. * query_formats() callback before this function is called.
  293. *
  294. * For input pads, this should check the properties of the link, and update
  295. * the filter's internal state as necessary.
  296. *
  297. * For both input and output filters, this should return zero on success,
  298. * and another value on error.
  299. */
  300. int (*config_props)(AVFilterLink *link);
  301. /**
  302. * The filter expects a fifo to be inserted on its input link,
  303. * typically because it has a delay.
  304. *
  305. * input pads only.
  306. */
  307. int needs_fifo;
  308. int needs_writable;
  309. };
  310. #endif
  311. /**
  312. * Get the name of an AVFilterPad.
  313. *
  314. * @param pads an array of AVFilterPads
  315. * @param pad_idx index of the pad in the array it; is the caller's
  316. * responsibility to ensure the index is valid
  317. *
  318. * @return name of the pad_idx'th pad in pads
  319. */
  320. const char *avfilter_pad_get_name(AVFilterPad *pads, int pad_idx);
  321. /**
  322. * Get the type of an AVFilterPad.
  323. *
  324. * @param pads an array of AVFilterPads
  325. * @param pad_idx index of the pad in the array; it is the caller's
  326. * responsibility to ensure the index is valid
  327. *
  328. * @return type of the pad_idx'th pad in pads
  329. */
  330. enum AVMediaType avfilter_pad_get_type(AVFilterPad *pads, int pad_idx);
  331. /**
  332. * Filter definition. This defines the pads a filter contains, and all the
  333. * callback functions used to interact with the filter.
  334. */
  335. typedef struct AVFilter {
  336. const char *name; ///< filter name
  337. /**
  338. * A description for the filter. You should use the
  339. * NULL_IF_CONFIG_SMALL() macro to define it.
  340. */
  341. const char *description;
  342. const AVFilterPad *inputs; ///< NULL terminated list of inputs. NULL if none
  343. const AVFilterPad *outputs; ///< NULL terminated list of outputs. NULL if none
  344. /**
  345. * A class for the private data, used to access filter private
  346. * AVOptions.
  347. */
  348. const AVClass *priv_class;
  349. /*****************************************************************
  350. * All fields below this line are not part of the public API. They
  351. * may not be used outside of libavfilter and can be changed and
  352. * removed at will.
  353. * New public fields should be added right above.
  354. *****************************************************************
  355. */
  356. /**
  357. * Filter initialization function. Called when all the options have been
  358. * set.
  359. */
  360. int (*init)(AVFilterContext *ctx);
  361. /**
  362. * Should be set instead of init by the filters that want to pass a
  363. * dictionary of AVOptions to nested contexts that are allocated in
  364. * init.
  365. */
  366. int (*init_dict)(AVFilterContext *ctx, AVDictionary **options);
  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 supported by the filter and its pads, and sets the
  375. * in_formats for links connected to its output pads, and out_formats
  376. * 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. } AVFilter;
  384. /** An instance of a filter */
  385. struct AVFilterContext {
  386. const AVClass *av_class; ///< needed for av_log()
  387. AVFilter *filter; ///< the AVFilter of which this is an instance
  388. char *name; ///< name of this filter instance
  389. AVFilterPad *input_pads; ///< array of input pads
  390. AVFilterLink **inputs; ///< array of pointers to input links
  391. #if FF_API_FOO_COUNT
  392. unsigned input_count; ///< @deprecated use nb_inputs
  393. #endif
  394. unsigned nb_inputs; ///< number of input pads
  395. AVFilterPad *output_pads; ///< array of output pads
  396. AVFilterLink **outputs; ///< array of pointers to output links
  397. #if FF_API_FOO_COUNT
  398. unsigned output_count; ///< @deprecated use nb_outputs
  399. #endif
  400. unsigned nb_outputs; ///< number of output pads
  401. void *priv; ///< private data for use by the filter
  402. };
  403. /**
  404. * A link between two filters. This contains pointers to the source and
  405. * destination filters between which this link exists, and the indexes of
  406. * the pads involved. In addition, this link also contains the parameters
  407. * which have been negotiated and agreed upon between the filter, such as
  408. * image dimensions, format, etc.
  409. */
  410. struct AVFilterLink {
  411. AVFilterContext *src; ///< source filter
  412. AVFilterPad *srcpad; ///< output pad on the source filter
  413. AVFilterContext *dst; ///< dest filter
  414. AVFilterPad *dstpad; ///< input pad on the dest filter
  415. enum AVMediaType type; ///< filter media type
  416. /* These parameters apply only to video */
  417. int w; ///< agreed upon image width
  418. int h; ///< agreed upon image height
  419. AVRational sample_aspect_ratio; ///< agreed upon sample aspect ratio
  420. /* These two parameters apply only to audio */
  421. uint64_t channel_layout; ///< channel layout of current buffer (see libavutil/channel_layout.h)
  422. int sample_rate; ///< samples per second
  423. int format; ///< agreed upon media format
  424. /**
  425. * Define the time base used by the PTS of the frames/samples
  426. * which will pass through this link.
  427. * During the configuration stage, each filter is supposed to
  428. * change only the output timebase, while the timebase of the
  429. * input link is assumed to be an unchangeable property.
  430. */
  431. AVRational time_base;
  432. /*****************************************************************
  433. * All fields below this line are not part of the public API. They
  434. * may not be used outside of libavfilter and can be changed and
  435. * removed at will.
  436. * New public fields should be added right above.
  437. *****************************************************************
  438. */
  439. /**
  440. * Lists of formats supported by the input and output filters respectively.
  441. * These lists are used for negotiating the format to actually be used,
  442. * which will be loaded into the format member, above, when chosen.
  443. */
  444. AVFilterFormats *in_formats;
  445. AVFilterFormats *out_formats;
  446. /**
  447. * Lists of channel layouts and sample rates used for automatic
  448. * negotiation.
  449. */
  450. AVFilterFormats *in_samplerates;
  451. AVFilterFormats *out_samplerates;
  452. struct AVFilterChannelLayouts *in_channel_layouts;
  453. struct AVFilterChannelLayouts *out_channel_layouts;
  454. /**
  455. * Audio only, the destination filter sets this to a non-zero value to
  456. * request that buffers with the given number of samples should be sent to
  457. * it. AVFilterPad.needs_fifo must also be set on the corresponding input
  458. * pad.
  459. * Last buffer before EOF will be padded with silence.
  460. */
  461. int request_samples;
  462. /** stage of the initialization of the link properties (dimensions, etc) */
  463. enum {
  464. AVLINK_UNINIT = 0, ///< not started
  465. AVLINK_STARTINIT, ///< started, but incomplete
  466. AVLINK_INIT ///< complete
  467. } init_state;
  468. };
  469. /**
  470. * Link two filters together.
  471. *
  472. * @param src the source filter
  473. * @param srcpad index of the output pad on the source filter
  474. * @param dst the destination filter
  475. * @param dstpad index of the input pad on the destination filter
  476. * @return zero on success
  477. */
  478. int avfilter_link(AVFilterContext *src, unsigned srcpad,
  479. AVFilterContext *dst, unsigned dstpad);
  480. /**
  481. * Negotiate the media format, dimensions, etc of all inputs to a filter.
  482. *
  483. * @param filter the filter to negotiate the properties for its inputs
  484. * @return zero on successful negotiation
  485. */
  486. int avfilter_config_links(AVFilterContext *filter);
  487. #if FF_API_AVFILTERBUFFER
  488. /**
  489. * Create a buffer reference wrapped around an already allocated image
  490. * buffer.
  491. *
  492. * @param data pointers to the planes of the image to reference
  493. * @param linesize linesizes for the planes of the image to reference
  494. * @param perms the required access permissions
  495. * @param w the width of the image specified by the data and linesize arrays
  496. * @param h the height of the image specified by the data and linesize arrays
  497. * @param format the pixel format of the image specified by the data and linesize arrays
  498. */
  499. attribute_deprecated
  500. AVFilterBufferRef *
  501. avfilter_get_video_buffer_ref_from_arrays(uint8_t *data[4], int linesize[4], int perms,
  502. int w, int h, enum AVPixelFormat format);
  503. /**
  504. * Create an audio buffer reference wrapped around an already
  505. * allocated samples buffer.
  506. *
  507. * @param data pointers to the samples plane buffers
  508. * @param linesize linesize for the samples plane buffers
  509. * @param perms the required access permissions
  510. * @param nb_samples number of samples per channel
  511. * @param sample_fmt the format of each sample in the buffer to allocate
  512. * @param channel_layout the channel layout of the buffer
  513. */
  514. attribute_deprecated
  515. AVFilterBufferRef *avfilter_get_audio_buffer_ref_from_arrays(uint8_t **data,
  516. int linesize,
  517. int perms,
  518. int nb_samples,
  519. enum AVSampleFormat sample_fmt,
  520. uint64_t channel_layout);
  521. #endif
  522. /** Initialize the filter system. Register all builtin filters. */
  523. void avfilter_register_all(void);
  524. /** Uninitialize the filter system. Unregister all filters. */
  525. void avfilter_uninit(void);
  526. /**
  527. * Register a filter. This is only needed if you plan to use
  528. * avfilter_get_by_name later to lookup the AVFilter structure by name. A
  529. * filter can still by instantiated with avfilter_open even if it is not
  530. * registered.
  531. *
  532. * @param filter the filter to register
  533. * @return 0 if the registration was succesfull, a negative value
  534. * otherwise
  535. */
  536. int avfilter_register(AVFilter *filter);
  537. /**
  538. * Get a filter definition matching the given name.
  539. *
  540. * @param name the filter name to find
  541. * @return the filter definition, if any matching one is registered.
  542. * NULL if none found.
  543. */
  544. AVFilter *avfilter_get_by_name(const char *name);
  545. /**
  546. * If filter is NULL, returns a pointer to the first registered filter pointer,
  547. * if filter is non-NULL, returns the next pointer after filter.
  548. * If the returned pointer points to NULL, the last registered filter
  549. * was already reached.
  550. */
  551. AVFilter **av_filter_next(AVFilter **filter);
  552. /**
  553. * Create a filter instance.
  554. *
  555. * @param filter_ctx put here a pointer to the created filter context
  556. * on success, NULL on failure
  557. * @param filter the filter to create an instance of
  558. * @param inst_name Name to give to the new instance. Can be NULL for none.
  559. * @return >= 0 in case of success, a negative error code otherwise
  560. */
  561. int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
  562. /**
  563. * Initialize a filter.
  564. *
  565. * @param filter the filter to initialize
  566. * @param args A string of parameters to use when initializing the filter.
  567. * The format and meaning of this string varies by filter.
  568. * @param opaque Any extra non-string data needed by the filter. The meaning
  569. * of this parameter varies by filter.
  570. * @return zero on success
  571. */
  572. int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
  573. /**
  574. * Free a filter context.
  575. *
  576. * @param filter the filter to free
  577. */
  578. void avfilter_free(AVFilterContext *filter);
  579. /**
  580. * Insert a filter in the middle of an existing link.
  581. *
  582. * @param link the link into which the filter should be inserted
  583. * @param filt the filter to be inserted
  584. * @param filt_srcpad_idx the input pad on the filter to connect
  585. * @param filt_dstpad_idx the output pad on the filter to connect
  586. * @return zero on success
  587. */
  588. int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
  589. unsigned filt_srcpad_idx, unsigned filt_dstpad_idx);
  590. #if FF_API_AVFILTERBUFFER
  591. /**
  592. * Copy the frame properties of src to dst, without copying the actual
  593. * image data.
  594. *
  595. * @return 0 on success, a negative number on error.
  596. */
  597. attribute_deprecated
  598. int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src);
  599. /**
  600. * Copy the frame properties and data pointers of src to dst, without copying
  601. * the actual data.
  602. *
  603. * @return 0 on success, a negative number on error.
  604. */
  605. attribute_deprecated
  606. int avfilter_copy_buf_props(AVFrame *dst, const AVFilterBufferRef *src);
  607. #endif
  608. /**
  609. * @return AVClass for AVFilterContext.
  610. *
  611. * @see av_opt_find().
  612. */
  613. const AVClass *avfilter_get_class(void);
  614. #endif /* AVFILTER_AVFILTER_H */