buffersink.h 5.1 KB

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