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.

185 lines
6.5KB

  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. #if FF_API_AVFILTERBUFFER
  26. /**
  27. * Struct to use for initializing a buffersink context.
  28. */
  29. typedef struct {
  30. const enum AVPixelFormat *pixel_fmts; ///< list of allowed pixel formats, terminated by AV_PIX_FMT_NONE
  31. } AVBufferSinkParams;
  32. /**
  33. * Create an AVBufferSinkParams structure.
  34. *
  35. * Must be freed with av_free().
  36. */
  37. AVBufferSinkParams *av_buffersink_params_alloc(void);
  38. /**
  39. * Struct to use for initializing an abuffersink context.
  40. */
  41. typedef struct {
  42. const enum AVSampleFormat *sample_fmts; ///< list of allowed sample formats, terminated by AV_SAMPLE_FMT_NONE
  43. const int64_t *channel_layouts; ///< list of allowed channel layouts, terminated by -1
  44. const int *channel_counts; ///< list of allowed channel counts, terminated by -1
  45. int all_channel_counts; ///< if not 0, accept any channel count or layout
  46. int *sample_rates; ///< list of allowed sample rates, terminated by -1
  47. } AVABufferSinkParams;
  48. /**
  49. * Create an AVABufferSinkParams structure.
  50. *
  51. * Must be freed with av_free().
  52. */
  53. AVABufferSinkParams *av_abuffersink_params_alloc(void);
  54. /**
  55. * Set the frame size for an audio buffer sink.
  56. *
  57. * All calls to av_buffersink_get_buffer_ref will return a buffer with
  58. * exactly the specified number of samples, or AVERROR(EAGAIN) if there is
  59. * not enough. The last buffer at EOF will be padded with 0.
  60. */
  61. void av_buffersink_set_frame_size(AVFilterContext *ctx, unsigned frame_size);
  62. /**
  63. * Tell av_buffersink_get_buffer_ref() to read video/samples buffer
  64. * reference, but not remove it from the buffer. This is useful if you
  65. * need only to read a video/samples buffer, without to fetch it.
  66. */
  67. #define AV_BUFFERSINK_FLAG_PEEK 1
  68. /**
  69. * Tell av_buffersink_get_buffer_ref() not to request a frame from its input.
  70. * If a frame is already buffered, it is read (and removed from the buffer),
  71. * but if no frame is present, return AVERROR(EAGAIN).
  72. */
  73. #define AV_BUFFERSINK_FLAG_NO_REQUEST 2
  74. /**
  75. * Get an audio/video buffer data from buffer_sink and put it in bufref.
  76. *
  77. * This function works with both audio and video buffer sinks.
  78. *
  79. * @param buffer_sink pointer to a buffersink or abuffersink context
  80. * @param flags a combination of AV_BUFFERSINK_FLAG_* flags
  81. * @return >= 0 in case of success, a negative AVERROR code in case of
  82. * failure
  83. */
  84. int av_buffersink_get_buffer_ref(AVFilterContext *buffer_sink,
  85. AVFilterBufferRef **bufref, int flags);
  86. /* TODO */
  87. int av_buffersink_get_frame_flags(AVFilterContext *ctx, AVFrame *frame, int flags);
  88. /**
  89. * Get the number of immediately available frames.
  90. */
  91. int av_buffersink_poll_frame(AVFilterContext *ctx);
  92. /**
  93. * Get the frame rate of the input.
  94. */
  95. AVRational av_buffersink_get_frame_rate(AVFilterContext *ctx);
  96. /**
  97. * @defgroup libav_api Libav API
  98. * @{
  99. */
  100. /**
  101. * Get a buffer with filtered data from sink and put it in buf.
  102. *
  103. * @param ctx pointer to a context of a buffersink or abuffersink AVFilter.
  104. * @param buf pointer to the buffer will be written here if buf is non-NULL. buf
  105. * must be freed by the caller using avfilter_unref_buffer().
  106. * Buf may also be NULL to query whether a buffer is ready to be
  107. * output.
  108. *
  109. * @return >= 0 in case of success, a negative AVERROR code in case of
  110. * failure.
  111. */
  112. attribute_deprecated
  113. int av_buffersink_read(AVFilterContext *ctx, AVFilterBufferRef **buf);
  114. /**
  115. * Same as av_buffersink_read, but with the ability to specify the number of
  116. * samples read. This function is less efficient than av_buffersink_read(),
  117. * because it copies the data around.
  118. *
  119. * @param ctx pointer to a context of the abuffersink AVFilter.
  120. * @param buf pointer to the buffer will be written here if buf is non-NULL. buf
  121. * must be freed by the caller using avfilter_unref_buffer(). buf
  122. * will contain exactly nb_samples audio samples, except at the end
  123. * of stream, when it can contain less than nb_samples.
  124. * Buf may also be NULL to query whether a buffer is ready to be
  125. * output.
  126. *
  127. * @warning do not mix this function with av_buffersink_read(). Use only one or
  128. * the other with a single sink, not both.
  129. */
  130. attribute_deprecated
  131. int av_buffersink_read_samples(AVFilterContext *ctx, AVFilterBufferRef **buf,
  132. int nb_samples);
  133. #endif
  134. /**
  135. * Get a frame with filtered data from sink and put it in frame.
  136. *
  137. * @param ctx pointer to a context of a buffersink or abuffersink AVFilter.
  138. * @param frame pointer to an allocated frame that will be filled with data.
  139. * The data must be freed using av_frame_unref() / av_frame_free()
  140. *
  141. * @return >= 0 in case of success, a negative AVERROR code in case of
  142. * failure.
  143. */
  144. int av_buffersink_get_frame(AVFilterContext *ctx, AVFrame *frame);
  145. /**
  146. * Same as av_buffersink_get_frame(), but with the ability to specify the number
  147. * of samples read. This function is less efficient than
  148. * av_buffersink_get_frame(), because it copies the data around.
  149. *
  150. * @param ctx pointer to a context of the abuffersink AVFilter.
  151. * @param frame pointer to an allocated frame that will be filled with data.
  152. * The data must be freed using av_frame_unref() / av_frame_free()
  153. * frame will contain exactly nb_samples audio samples, except at
  154. * the end of stream, when it can contain less than nb_samples.
  155. *
  156. * @warning do not mix this function with av_buffersink_get_frame(). Use only one or
  157. * the other with a single sink, not both.
  158. */
  159. int av_buffersink_get_samples(AVFilterContext *ctx, AVFrame *frame, int nb_samples);
  160. /**
  161. * @}
  162. */
  163. #endif /* AVFILTER_BUFFERSINK_H */