buffersrc.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. * @ingroup lavfi_buffersrc
  24. * Memory buffer source API.
  25. */
  26. #include "libavcodec/avcodec.h"
  27. #include "avfilter.h"
  28. /**
  29. * @defgroup lavfi_buffersrc Buffer source API
  30. * @ingroup lavfi
  31. * @{
  32. */
  33. enum {
  34. /**
  35. * Do not check for format changes.
  36. */
  37. AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT = 1,
  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. * Get the number of failed requests.
  51. *
  52. * A failed request is when the request_frame method is called while no
  53. * frame is present in the buffer.
  54. * The number is reset when a frame is added.
  55. */
  56. unsigned av_buffersrc_get_nb_failed_requests(AVFilterContext *buffer_src);
  57. /**
  58. * Add a frame to the buffer source.
  59. *
  60. * @param ctx an instance of the buffersrc filter
  61. * @param frame frame to be added. If the frame is reference counted, this
  62. * function will make a new reference to it. Otherwise the frame data will be
  63. * copied.
  64. *
  65. * @return 0 on success, a negative AVERROR on error
  66. *
  67. * This function is equivalent to av_buffersrc_add_frame_flags() with the
  68. * AV_BUFFERSRC_FLAG_KEEP_REF flag.
  69. */
  70. av_warn_unused_result
  71. int av_buffersrc_write_frame(AVFilterContext *ctx, const AVFrame *frame);
  72. /**
  73. * Add a frame to the buffer source.
  74. *
  75. * @param ctx an instance of the buffersrc filter
  76. * @param frame frame to be added. If the frame is reference counted, this
  77. * function will take ownership of the reference(s) and reset the frame.
  78. * Otherwise the frame data will be copied. If this function returns an error,
  79. * the input frame is not touched.
  80. *
  81. * @return 0 on success, a negative AVERROR on error.
  82. *
  83. * @note the difference between this function and av_buffersrc_write_frame() is
  84. * that av_buffersrc_write_frame() creates a new reference to the input frame,
  85. * while this function takes ownership of the reference passed to it.
  86. *
  87. * This function is equivalent to av_buffersrc_add_frame_flags() without the
  88. * AV_BUFFERSRC_FLAG_KEEP_REF flag.
  89. */
  90. av_warn_unused_result
  91. int av_buffersrc_add_frame(AVFilterContext *ctx, AVFrame *frame);
  92. /**
  93. * Add a frame to the buffer source.
  94. *
  95. * By default, if the frame is reference-counted, this function will take
  96. * ownership of the reference(s) and reset the frame. This can be controlled
  97. * using the flags.
  98. *
  99. * If this function returns an error, the input frame is not touched.
  100. *
  101. * @param buffer_src pointer to a buffer source context
  102. * @param frame a frame, or NULL to mark EOF
  103. * @param flags a combination of AV_BUFFERSRC_FLAG_*
  104. * @return >= 0 in case of success, a negative AVERROR code
  105. * in case of failure
  106. */
  107. av_warn_unused_result
  108. int av_buffersrc_add_frame_flags(AVFilterContext *buffer_src,
  109. AVFrame *frame, int flags);
  110. /**
  111. * @}
  112. */
  113. #endif /* AVFILTER_BUFFERSRC_H */