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.

230 lines
7.3KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef AVFILTER_INTERNAL_H
  19. #define AVFILTER_INTERNAL_H
  20. /**
  21. * @file
  22. * internal API functions
  23. */
  24. #include "avfilter.h"
  25. #if !FF_API_AVFILTERPAD_PUBLIC
  26. /**
  27. * A filter pad used for either input or output.
  28. */
  29. struct AVFilterPad {
  30. /**
  31. * Pad name. The name is unique among inputs and among outputs, but an
  32. * input may have the same name as an output. This may be NULL if this
  33. * pad has no need to ever be referenced by name.
  34. */
  35. const char *name;
  36. /**
  37. * AVFilterPad type.
  38. */
  39. enum AVMediaType type;
  40. /**
  41. * Minimum required permissions on incoming buffers. Any buffer with
  42. * insufficient permissions will be automatically copied by the filter
  43. * system to a new buffer which provides the needed access permissions.
  44. *
  45. * Input pads only.
  46. */
  47. int min_perms;
  48. /**
  49. * Permissions which are not accepted on incoming buffers. Any buffer
  50. * which has any of these permissions set will be automatically copied
  51. * by the filter system to a new buffer which does not have those
  52. * permissions. This can be used to easily disallow buffers with
  53. * AV_PERM_REUSE.
  54. *
  55. * Input pads only.
  56. */
  57. int rej_perms;
  58. /**
  59. * Callback called before passing the first slice of a new frame. If
  60. * NULL, the filter layer will default to storing a reference to the
  61. * picture inside the link structure.
  62. *
  63. * Input video pads only.
  64. */
  65. void (*start_frame)(AVFilterLink *link, AVFilterBufferRef *picref);
  66. /**
  67. * Callback function to get a video buffer. If NULL, the filter system will
  68. * use avfilter_default_get_video_buffer().
  69. *
  70. * Input video pads only.
  71. */
  72. AVFilterBufferRef *(*get_video_buffer)(AVFilterLink *link, int perms, int w, int h);
  73. /**
  74. * Callback function to get an audio buffer. If NULL, the filter system will
  75. * use avfilter_default_get_audio_buffer().
  76. *
  77. * Input audio pads only.
  78. */
  79. AVFilterBufferRef *(*get_audio_buffer)(AVFilterLink *link, int perms,
  80. int nb_samples);
  81. /**
  82. * Callback called after the slices of a frame are completely sent. If
  83. * NULL, the filter layer will default to releasing the reference stored
  84. * in the link structure during start_frame().
  85. *
  86. * Input video pads only.
  87. */
  88. void (*end_frame)(AVFilterLink *link);
  89. /**
  90. * Slice drawing callback. This is where a filter receives video data
  91. * and should do its processing.
  92. *
  93. * Input video pads only.
  94. */
  95. void (*draw_slice)(AVFilterLink *link, int y, int height, int slice_dir);
  96. /**
  97. * Samples filtering callback. This is where a filter receives audio data
  98. * and should do its processing.
  99. *
  100. * Input audio pads only.
  101. */
  102. void (*filter_samples)(AVFilterLink *link, AVFilterBufferRef *samplesref);
  103. /**
  104. * Frame poll callback. This returns the number of immediately available
  105. * samples. It should return a positive value if the next request_frame()
  106. * is guaranteed to return one frame (with no delay).
  107. *
  108. * Defaults to just calling the source poll_frame() method.
  109. *
  110. * Output pads only.
  111. */
  112. int (*poll_frame)(AVFilterLink *link);
  113. /**
  114. * Frame request callback. A call to this should result in at least one
  115. * frame being output over the given link. This should return zero on
  116. * success, and another value on error.
  117. *
  118. * Output pads only.
  119. */
  120. int (*request_frame)(AVFilterLink *link);
  121. /**
  122. * Link configuration callback.
  123. *
  124. * For output pads, this should set the link properties such as
  125. * width/height. This should NOT set the format property - that is
  126. * negotiated between filters by the filter system using the
  127. * query_formats() callback before this function is called.
  128. *
  129. * For input pads, this should check the properties of the link, and update
  130. * the filter's internal state as necessary.
  131. *
  132. * For both input and output filters, this should return zero on success,
  133. * and another value on error.
  134. */
  135. int (*config_props)(AVFilterLink *link);
  136. /**
  137. * The filter expects a fifo to be inserted on its input link,
  138. * typically because it has a delay.
  139. *
  140. * input pads only.
  141. */
  142. int needs_fifo;
  143. };
  144. #endif
  145. /** default handler for freeing audio/video buffer when there are no references left */
  146. void ff_avfilter_default_free_buffer(AVFilterBuffer *buf);
  147. /** Tell is a format is contained in the provided list terminated by -1. */
  148. int ff_fmt_is_in(int fmt, const int *fmts);
  149. #define FF_DPRINTF_START(ctx, func) av_dlog(NULL, "%-16s: ", #func)
  150. void ff_dlog_link(void *ctx, AVFilterLink *link, int end);
  151. /**
  152. * Insert a new pad.
  153. *
  154. * @param idx Insertion point. Pad is inserted at the end if this point
  155. * is beyond the end of the list of pads.
  156. * @param count Pointer to the number of pads in the list
  157. * @param padidx_off Offset within an AVFilterLink structure to the element
  158. * to increment when inserting a new pad causes link
  159. * numbering to change
  160. * @param pads Pointer to the pointer to the beginning of the list of pads
  161. * @param links Pointer to the pointer to the beginning of the list of links
  162. * @param newpad The new pad to add. A copy is made when adding.
  163. */
  164. void ff_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
  165. AVFilterPad **pads, AVFilterLink ***links,
  166. AVFilterPad *newpad);
  167. /** Insert a new input pad for the filter. */
  168. static inline void ff_insert_inpad(AVFilterContext *f, unsigned index,
  169. AVFilterPad *p)
  170. {
  171. ff_insert_pad(index, &f->nb_inputs, offsetof(AVFilterLink, dstpad),
  172. &f->input_pads, &f->inputs, p);
  173. #if FF_API_FOO_COUNT
  174. f->input_count = f->nb_inputs;
  175. #endif
  176. }
  177. /** Insert a new output pad for the filter. */
  178. static inline void ff_insert_outpad(AVFilterContext *f, unsigned index,
  179. AVFilterPad *p)
  180. {
  181. ff_insert_pad(index, &f->nb_outputs, offsetof(AVFilterLink, srcpad),
  182. &f->output_pads, &f->outputs, p);
  183. #if FF_API_FOO_COUNT
  184. f->output_count = f->nb_outputs;
  185. #endif
  186. }
  187. /**
  188. * Poll a frame from the filter chain.
  189. *
  190. * @param link the input link
  191. * @return the number of immediately available frames, a negative
  192. * number in case of error
  193. */
  194. int ff_poll_frame(AVFilterLink *link);
  195. /**
  196. * Request an input frame from the filter at the other end of the link.
  197. *
  198. * @param link the input link
  199. * @return zero on success
  200. */
  201. int ff_request_frame(AVFilterLink *link);
  202. #endif /* AVFILTER_INTERNAL_H */