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.

351 lines
11KB

  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_INTERNAL_H
  19. #define AVFILTER_INTERNAL_H
  20. /**
  21. * @file
  22. * internal API functions
  23. */
  24. #include "avfilter.h"
  25. #include "avfiltergraph.h"
  26. #include "formats.h"
  27. #include "video.h"
  28. #define POOL_SIZE 32
  29. typedef struct AVFilterPool {
  30. AVFilterBufferRef *pic[POOL_SIZE];
  31. int count;
  32. int refcount;
  33. int draining;
  34. } AVFilterPool;
  35. typedef struct AVFilterCommand {
  36. double time; ///< time expressed in seconds
  37. char *command; ///< command
  38. char *arg; ///< optional argument for the command
  39. int flags;
  40. struct AVFilterCommand *next;
  41. } AVFilterCommand;
  42. /**
  43. * Update the position of a link in the age heap.
  44. */
  45. void ff_avfilter_graph_update_heap(AVFilterGraph *graph, AVFilterLink *link);
  46. #if !FF_API_AVFILTERPAD_PUBLIC
  47. /**
  48. * A filter pad used for either input or output.
  49. */
  50. struct AVFilterPad {
  51. /**
  52. * Pad name. The name is unique among inputs and among outputs, but an
  53. * input may have the same name as an output. This may be NULL if this
  54. * pad has no need to ever be referenced by name.
  55. */
  56. const char *name;
  57. /**
  58. * AVFilterPad type.
  59. */
  60. enum AVMediaType type;
  61. /**
  62. * Minimum required permissions on incoming buffers. Any buffer with
  63. * insufficient permissions will be automatically copied by the filter
  64. * system to a new buffer which provides the needed access permissions.
  65. *
  66. * Input pads only.
  67. */
  68. int min_perms;
  69. /**
  70. * Permissions which are not accepted on incoming buffers. Any buffer
  71. * which has any of these permissions set will be automatically copied
  72. * by the filter system to a new buffer which does not have those
  73. * permissions. This can be used to easily disallow buffers with
  74. * AV_PERM_REUSE.
  75. *
  76. * Input pads only.
  77. */
  78. int rej_perms;
  79. /**
  80. * Callback called before passing the first slice of a new frame. If
  81. * NULL, the filter layer will default to storing a reference to the
  82. * picture inside the link structure.
  83. *
  84. * Input video pads only.
  85. */
  86. void (*start_frame)(AVFilterLink *link, AVFilterBufferRef *picref);
  87. /**
  88. * Callback function to get a video buffer. If NULL, the filter system will
  89. * use avfilter_default_get_video_buffer().
  90. *
  91. * Input video pads only.
  92. */
  93. AVFilterBufferRef *(*get_video_buffer)(AVFilterLink *link, int perms, int w, int h);
  94. /**
  95. * Callback function to get an audio buffer. If NULL, the filter system will
  96. * use avfilter_default_get_audio_buffer().
  97. *
  98. * Input audio pads only.
  99. */
  100. AVFilterBufferRef *(*get_audio_buffer)(AVFilterLink *link, int perms,
  101. int nb_samples);
  102. /**
  103. * Callback called after the slices of a frame are completely sent. If
  104. * NULL, the filter layer will default to releasing the reference stored
  105. * in the link structure during start_frame().
  106. *
  107. * Input video pads only.
  108. */
  109. void (*end_frame)(AVFilterLink *link);
  110. /**
  111. * Slice drawing callback. This is where a filter receives video data
  112. * and should do its processing.
  113. *
  114. * Input video pads only.
  115. */
  116. void (*draw_slice)(AVFilterLink *link, int y, int height, int slice_dir);
  117. /**
  118. * Samples filtering callback. This is where a filter receives audio data
  119. * and should do its processing.
  120. *
  121. * Input audio pads only.
  122. *
  123. * @return >= 0 on success, a negative AVERROR on error. This function
  124. * must ensure that samplesref is properly unreferenced on error if it
  125. * hasn't been passed on to another filter.
  126. */
  127. int (*filter_samples)(AVFilterLink *link, AVFilterBufferRef *samplesref);
  128. /**
  129. * Frame poll callback. This returns the number of immediately available
  130. * samples. It should return a positive value if the next request_frame()
  131. * is guaranteed to return one frame (with no delay).
  132. *
  133. * Defaults to just calling the source poll_frame() method.
  134. *
  135. * Output pads only.
  136. */
  137. int (*poll_frame)(AVFilterLink *link);
  138. /**
  139. * Frame request callback. A call to this should result in at least one
  140. * frame being output over the given link. This should return zero on
  141. * success, and another value on error.
  142. *
  143. * Output pads only.
  144. */
  145. int (*request_frame)(AVFilterLink *link);
  146. /**
  147. * Link configuration callback.
  148. *
  149. * For output pads, this should set the link properties such as
  150. * width/height. This should NOT set the format property - that is
  151. * negotiated between filters by the filter system using the
  152. * query_formats() callback before this function is called.
  153. *
  154. * For input pads, this should check the properties of the link, and update
  155. * the filter's internal state as necessary.
  156. *
  157. * For both input and output filters, this should return zero on success,
  158. * and another value on error.
  159. */
  160. int (*config_props)(AVFilterLink *link);
  161. /**
  162. * The filter expects a fifo to be inserted on its input link,
  163. * typically because it has a delay.
  164. *
  165. * input pads only.
  166. */
  167. int needs_fifo;
  168. };
  169. #endif
  170. /** default handler for freeing audio/video buffer when there are no references left */
  171. void ff_avfilter_default_free_buffer(AVFilterBuffer *buf);
  172. /** Tell is a format is contained in the provided list terminated by -1. */
  173. int ff_fmt_is_in(int fmt, const int *fmts);
  174. /**
  175. * Return a copy of a list of integers terminated by -1, or NULL in
  176. * case of copy failure.
  177. */
  178. int *ff_copy_int_list(const int * const list);
  179. /**
  180. * Return a copy of a list of 64-bit integers, or NULL in case of
  181. * copy failure.
  182. */
  183. int64_t *ff_copy_int64_list(const int64_t * const list);
  184. /* Functions to parse audio format arguments */
  185. /**
  186. * Parse a pixel format.
  187. *
  188. * @param ret pixel format pointer to where the value should be written
  189. * @param arg string to parse
  190. * @param log_ctx log context
  191. * @return 0 in case of success, a negative AVERROR code on error
  192. */
  193. int ff_parse_pixel_format(enum PixelFormat *ret, const char *arg, void *log_ctx);
  194. /**
  195. * Parse a sample rate.
  196. *
  197. * @param ret unsigned integer pointer to where the value should be written
  198. * @param arg string to parse
  199. * @param log_ctx log context
  200. * @return 0 in case of success, a negative AVERROR code on error
  201. */
  202. int ff_parse_sample_rate(int *ret, const char *arg, void *log_ctx);
  203. /**
  204. * Parse a time base.
  205. *
  206. * @param ret unsigned AVRational pointer to where the value should be written
  207. * @param arg string to parse
  208. * @param log_ctx log context
  209. * @return 0 in case of success, a negative AVERROR code on error
  210. */
  211. int ff_parse_time_base(AVRational *ret, const char *arg, void *log_ctx);
  212. /**
  213. * Parse a sample format name or a corresponding integer representation.
  214. *
  215. * @param ret integer pointer to where the value should be written
  216. * @param arg string to parse
  217. * @param log_ctx log context
  218. * @return 0 in case of success, a negative AVERROR code on error
  219. */
  220. int ff_parse_sample_format(int *ret, const char *arg, void *log_ctx);
  221. /**
  222. * Parse a channel layout or a corresponding integer representation.
  223. *
  224. * @param ret 64bit integer pointer to where the value should be written.
  225. * @param arg string to parse
  226. * @param log_ctx log context
  227. * @return 0 in case of success, a negative AVERROR code on error
  228. */
  229. int ff_parse_channel_layout(int64_t *ret, const char *arg, void *log_ctx);
  230. void ff_update_link_current_pts(AVFilterLink *link, int64_t pts);
  231. void ff_free_pool(AVFilterPool *pool);
  232. void ff_command_queue_pop(AVFilterContext *filter);
  233. /* misc trace functions */
  234. /* #define FF_AVFILTER_TRACE */
  235. #ifdef FF_AVFILTER_TRACE
  236. # define ff_tlog(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__)
  237. #else
  238. # define ff_tlog(pctx, ...) do { if (0) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__); } while (0)
  239. #endif
  240. #define FF_TPRINTF_START(ctx, func) ff_tlog(NULL, "%-16s: ", #func)
  241. char *ff_get_ref_perms_string(char *buf, size_t buf_size, int perms);
  242. void ff_tlog_ref(void *ctx, AVFilterBufferRef *ref, int end);
  243. void ff_tlog_link(void *ctx, AVFilterLink *link, int end);
  244. /**
  245. * Insert a new pad.
  246. *
  247. * @param idx Insertion point. Pad is inserted at the end if this point
  248. * is beyond the end of the list of pads.
  249. * @param count Pointer to the number of pads in the list
  250. * @param padidx_off Offset within an AVFilterLink structure to the element
  251. * to increment when inserting a new pad causes link
  252. * numbering to change
  253. * @param pads Pointer to the pointer to the beginning of the list of pads
  254. * @param links Pointer to the pointer to the beginning of the list of links
  255. * @param newpad The new pad to add. A copy is made when adding.
  256. */
  257. void ff_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
  258. AVFilterPad **pads, AVFilterLink ***links,
  259. AVFilterPad *newpad);
  260. /** Insert a new input pad for the filter. */
  261. static inline void ff_insert_inpad(AVFilterContext *f, unsigned index,
  262. AVFilterPad *p)
  263. {
  264. ff_insert_pad(index, &f->nb_inputs, offsetof(AVFilterLink, dstpad),
  265. &f->input_pads, &f->inputs, p);
  266. #if FF_API_FOO_COUNT
  267. f->input_count = f->nb_inputs;
  268. #endif
  269. }
  270. /** Insert a new output pad for the filter. */
  271. static inline void ff_insert_outpad(AVFilterContext *f, unsigned index,
  272. AVFilterPad *p)
  273. {
  274. ff_insert_pad(index, &f->nb_outputs, offsetof(AVFilterLink, srcpad),
  275. &f->output_pads, &f->outputs, p);
  276. #if FF_API_FOO_COUNT
  277. f->output_count = f->nb_outputs;
  278. #endif
  279. }
  280. /**
  281. * Poll a frame from the filter chain.
  282. *
  283. * @param link the input link
  284. * @return the number of immediately available frames, a negative
  285. * number in case of error
  286. */
  287. int ff_poll_frame(AVFilterLink *link);
  288. /**
  289. * Request an input frame from the filter at the other end of the link.
  290. *
  291. * @param link the input link
  292. * @return zero on success
  293. */
  294. int ff_request_frame(AVFilterLink *link);
  295. #define AVFILTER_DEFINE_CLASS(fname) \
  296. static const AVClass fname##_class = { \
  297. .class_name = #fname, \
  298. .item_name = av_default_item_name, \
  299. .option = fname##_options, \
  300. .version = LIBAVUTIL_VERSION_INT, \
  301. .category = AV_CLASS_CATEGORY_FILTER, \
  302. }
  303. #endif /* AVFILTER_INTERNAL_H */