buffersink.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef AVFILTER_VSINK_BUFFER_H
  19. #define AVFILTER_VSINK_BUFFER_H
  20. /**
  21. * @file
  22. * memory buffer sink API for audio and video
  23. */
  24. #include "avfilter.h"
  25. /**
  26. * Struct to use for initializing a buffersink context.
  27. */
  28. typedef struct {
  29. const enum PixelFormat *pixel_fmts; ///< list of allowed pixel formats, terminated by PIX_FMT_NONE
  30. } AVBufferSinkParams;
  31. /**
  32. * Create an AVBufferSinkParams structure.
  33. *
  34. * Must be freed with av_free().
  35. */
  36. AVBufferSinkParams *av_buffersink_params_alloc(void);
  37. /**
  38. * Struct to use for initializing an abuffersink context.
  39. */
  40. typedef struct {
  41. const enum AVSampleFormat *sample_fmts; ///< list of allowed sample formats, terminated by AV_SAMPLE_FMT_NONE
  42. const int64_t *channel_layouts; ///< list of allowed channel layouts, terminated by -1
  43. const int *packing_fmts; ///< list of allowed packing formats
  44. } AVABufferSinkParams;
  45. /**
  46. * Create an AVABufferSinkParams structure.
  47. *
  48. * Must be freed with av_free().
  49. */
  50. AVABufferSinkParams *av_abuffersink_params_alloc(void);
  51. /**
  52. * Tell av_buffersink_get_buffer_ref() to read video/samples buffer
  53. * reference, but not remove it from the buffer. This is useful if you
  54. * need only to read a video/samples buffer, without to fetch it.
  55. */
  56. #define AV_BUFFERSINK_FLAG_PEEK 1
  57. /**
  58. * Get an audio/video buffer data from buffer_sink and put it in bufref.
  59. *
  60. * This function works with both audio and video buffer sinks.
  61. *
  62. * @param buffer_sink pointer to a buffersink or abuffersink context
  63. * @param flags a combination of AV_BUFFERSINK_FLAG_* flags
  64. * @return >= 0 in case of success, a negative AVERROR code in case of
  65. * failure
  66. */
  67. int av_buffersink_get_buffer_ref(AVFilterContext *buffer_sink,
  68. AVFilterBufferRef **bufref, int flags);
  69. /**
  70. * Get the number of immediately available frames.
  71. */
  72. int av_buffersink_poll_frame(AVFilterContext *ctx);
  73. #if FF_API_OLD_VSINK_API
  74. /**
  75. * @deprecated Use av_buffersink_get_buffer_ref() instead.
  76. */
  77. attribute_deprecated
  78. int av_vsink_buffer_get_video_buffer_ref(AVFilterContext *buffer_sink,
  79. AVFilterBufferRef **picref, int flags);
  80. #endif
  81. #endif /* AVFILTER_VSINK_BUFFER_H */