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.

150 lines
4.7KB

  1. /*
  2. *
  3. * This file is part of FFmpeg.
  4. *
  5. * FFmpeg is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2.1 of the License, or (at your option) any later version.
  9. *
  10. * FFmpeg is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with FFmpeg; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. #ifndef AVFILTER_BUFFERSRC_H
  20. #define AVFILTER_BUFFERSRC_H
  21. /**
  22. * @file
  23. * Memory buffer source API.
  24. */
  25. #include "libavcodec/avcodec.h"
  26. #include "avfilter.h"
  27. enum {
  28. /**
  29. * Do not check for format changes.
  30. */
  31. AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT = 1,
  32. #if FF_API_AVFILTERBUFFER
  33. /**
  34. * Ignored
  35. */
  36. AV_BUFFERSRC_FLAG_NO_COPY = 2,
  37. #endif
  38. /**
  39. * Immediately push the frame to the output.
  40. */
  41. AV_BUFFERSRC_FLAG_PUSH = 4,
  42. /**
  43. * Keep a reference to the frame.
  44. * If the frame if reference-counted, create a new reference; otherwise
  45. * copy the frame data.
  46. */
  47. AV_BUFFERSRC_FLAG_KEEP_REF = 8,
  48. };
  49. /**
  50. * Add buffer data in picref to buffer_src.
  51. *
  52. * @param buffer_src pointer to a buffer source context
  53. * @param picref a buffer reference, or NULL to mark EOF
  54. * @param flags a combination of AV_BUFFERSRC_FLAG_*
  55. * @return >= 0 in case of success, a negative AVERROR code
  56. * in case of failure
  57. */
  58. int av_buffersrc_add_ref(AVFilterContext *buffer_src,
  59. AVFilterBufferRef *picref, int flags);
  60. /**
  61. * Get the number of failed requests.
  62. *
  63. * A failed request is when the request_frame method is called while no
  64. * frame is present in the buffer.
  65. * The number is reset when a frame is added.
  66. */
  67. unsigned av_buffersrc_get_nb_failed_requests(AVFilterContext *buffer_src);
  68. #if FF_API_AVFILTERBUFFER
  69. /**
  70. * Add a buffer to a filtergraph.
  71. *
  72. * @param ctx an instance of the buffersrc filter
  73. * @param buf buffer containing frame data to be passed down the filtergraph.
  74. * This function will take ownership of buf, the user must not free it.
  75. * A NULL buf signals EOF -- i.e. no more frames will be sent to this filter.
  76. *
  77. * @deprecated use av_buffersrc_write_frame() or av_buffersrc_add_frame()
  78. */
  79. attribute_deprecated
  80. int av_buffersrc_buffer(AVFilterContext *ctx, AVFilterBufferRef *buf);
  81. #endif
  82. /**
  83. * Add a frame to the buffer source.
  84. *
  85. * @param ctx an instance of the buffersrc filter
  86. * @param frame frame to be added. If the frame is reference counted, this
  87. * function will make a new reference to it. Otherwise the frame data will be
  88. * copied.
  89. *
  90. * @return 0 on success, a negative AVERROR on error
  91. *
  92. * This function is equivalent to av_buffersrc_add_frame_flags() with the
  93. * AV_BUFFERSRC_FLAG_KEEP_REF flag.
  94. */
  95. int av_buffersrc_write_frame(AVFilterContext *ctx, const AVFrame *frame);
  96. /**
  97. * Add a frame to the buffer source.
  98. *
  99. * @param ctx an instance of the buffersrc filter
  100. * @param frame frame to be added. If the frame is reference counted, this
  101. * function will take ownership of the reference(s) and reset the frame.
  102. * Otherwise the frame data will be copied. If this function returns an error,
  103. * the input frame is not touched.
  104. *
  105. * @return 0 on success, a negative AVERROR on error.
  106. *
  107. * @note the difference between this function and av_buffersrc_write_frame() is
  108. * that av_buffersrc_write_frame() creates a new reference to the input frame,
  109. * while this function takes ownership of the reference passed to it.
  110. *
  111. * This function is equivalent to av_buffersrc_add_frame_flags() without the
  112. * AV_BUFFERSRC_FLAG_KEEP_REF flag.
  113. */
  114. int av_buffersrc_add_frame(AVFilterContext *ctx, AVFrame *frame);
  115. /**
  116. * Add a frame to the buffer source.
  117. *
  118. * By default, if the frame is reference-counted, this function will take
  119. * ownership of the reference(s) and reset the frame. This can be controled
  120. * using the flags.
  121. *
  122. * If this function returns an error, the input frame is not touched.
  123. *
  124. * @param buffer_src pointer to a buffer source context
  125. * @param frame a frame, or NULL to mark EOF
  126. * @param flags a combination of AV_BUFFERSRC_FLAG_*
  127. * @return >= 0 in case of success, a negative AVERROR code
  128. * in case of failure
  129. */
  130. int av_buffersrc_add_frame_flags(AVFilterContext *buffer_src,
  131. AVFrame *frame, int flags);
  132. #endif /* AVFILTER_BUFFERSRC_H */