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.

139 lines
4.4KB

  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_BUFFERSINK_H
  19. #define AVFILTER_BUFFERSINK_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. } AVABufferSinkParams;
  44. /**
  45. * Create an AVABufferSinkParams structure.
  46. *
  47. * Must be freed with av_free().
  48. */
  49. AVABufferSinkParams *av_abuffersink_params_alloc(void);
  50. /**
  51. * Tell av_buffersink_get_buffer_ref() to read video/samples buffer
  52. * reference, but not remove it from the buffer. This is useful if you
  53. * need only to read a video/samples buffer, without to fetch it.
  54. */
  55. #define AV_BUFFERSINK_FLAG_PEEK 1
  56. /**
  57. * Tell av_buffersink_get_buffer_ref() not to request a frame from its input.
  58. * If a frame is already buffered, it is read (and removed from the buffer),
  59. * but if no frame is present, return AVERROR(EAGAIN).
  60. */
  61. #define AV_BUFFERSINK_FLAG_NO_REQUEST 2
  62. /**
  63. * Get an audio/video buffer data from buffer_sink and put it in bufref.
  64. *
  65. * This function works with both audio and video buffer sinks.
  66. *
  67. * @param buffer_sink pointer to a buffersink or abuffersink context
  68. * @param flags a combination of AV_BUFFERSINK_FLAG_* flags
  69. * @return >= 0 in case of success, a negative AVERROR code in case of
  70. * failure
  71. */
  72. int av_buffersink_get_buffer_ref(AVFilterContext *buffer_sink,
  73. AVFilterBufferRef **bufref, int flags);
  74. /**
  75. * Get the number of immediately available frames.
  76. */
  77. int av_buffersink_poll_frame(AVFilterContext *ctx);
  78. /**
  79. * Get the frame rate of the input.
  80. */
  81. AVRational av_buffersink_get_frame_rate(AVFilterContext *ctx);
  82. /**
  83. * @defgroup libav_api Libav API
  84. * @{
  85. */
  86. /**
  87. * Get a buffer with filtered data from sink and put it in buf.
  88. *
  89. * @param sink pointer to a context of a buffersink or abuffersink AVFilter.
  90. * @param buf pointer to the buffer will be written here if buf is non-NULL. buf
  91. * must be freed by the caller using avfilter_unref_buffer().
  92. * Buf may also be NULL to query whether a buffer is ready to be
  93. * output.
  94. *
  95. * @return >= 0 in case of success, a negative AVERROR code in case of
  96. * failure.
  97. */
  98. int av_buffersink_read(AVFilterContext *sink, AVFilterBufferRef **buf);
  99. /**
  100. * Same as av_buffersink_read, but with the ability to specify the number of
  101. * samples read. This function is less efficient than av_buffersink_read(),
  102. * because it copies the data around.
  103. *
  104. * @param sink pointer to a context of the abuffersink AVFilter.
  105. * @param buf pointer to the buffer will be written here if buf is non-NULL. buf
  106. * must be freed by the caller using avfilter_unref_buffer(). buf
  107. * will contain exactly nb_samples audio samples, except at the end
  108. * of stream, when it can contain less than nb_samples.
  109. * Buf may also be NULL to query whether a buffer is ready to be
  110. * output.
  111. *
  112. * @warning do not mix this function with av_buffersink_read(). Use only one or
  113. * the other with a single sink, not both.
  114. */
  115. int av_buffersink_read_samples(AVFilterContext *ctx, AVFilterBufferRef **buf,
  116. int nb_samples);
  117. /**
  118. * @}
  119. */
  120. #endif /* AVFILTER_BUFFERSINK_H */