internal.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  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. * @return >= 0 on success, a negative AVERROR on error. picref will be
  87. * unreferenced by the caller in case of error.
  88. */
  89. void (*start_frame)(AVFilterLink *link, AVFilterBufferRef *picref);
  90. /**
  91. * Callback function to get a video buffer. If NULL, the filter system will
  92. * use avfilter_default_get_video_buffer().
  93. *
  94. * Input video pads only.
  95. */
  96. AVFilterBufferRef *(*get_video_buffer)(AVFilterLink *link, int perms, int w, int h);
  97. /**
  98. * Callback function to get an audio buffer. If NULL, the filter system will
  99. * use avfilter_default_get_audio_buffer().
  100. *
  101. * Input audio pads only.
  102. */
  103. AVFilterBufferRef *(*get_audio_buffer)(AVFilterLink *link, int perms,
  104. int nb_samples);
  105. /**
  106. * Callback called after the slices of a frame are completely sent. If
  107. * NULL, the filter layer will default to releasing the reference stored
  108. * in the link structure during start_frame().
  109. *
  110. * Input video pads only.
  111. *
  112. * @return >= 0 on success, a negative AVERROR on error.
  113. */
  114. int (*end_frame)(AVFilterLink *link);
  115. /**
  116. * Slice drawing callback. This is where a filter receives video data
  117. * and should do its processing.
  118. *
  119. * Input video pads only.
  120. *
  121. * @return >= 0 on success, a negative AVERROR on error.
  122. */
  123. int (*draw_slice)(AVFilterLink *link, int y, int height, int slice_dir);
  124. /**
  125. * Samples filtering callback. This is where a filter receives audio data
  126. * and should do its processing.
  127. *
  128. * Input audio pads only.
  129. *
  130. * @return >= 0 on success, a negative AVERROR on error. This function
  131. * must ensure that samplesref is properly unreferenced on error if it
  132. * hasn't been passed on to another filter.
  133. */
  134. int (*filter_samples)(AVFilterLink *link, AVFilterBufferRef *samplesref);
  135. /**
  136. * Frame poll callback. This returns the number of immediately available
  137. * samples. It should return a positive value if the next request_frame()
  138. * is guaranteed to return one frame (with no delay).
  139. *
  140. * Defaults to just calling the source poll_frame() method.
  141. *
  142. * Output pads only.
  143. */
  144. int (*poll_frame)(AVFilterLink *link);
  145. /**
  146. * Frame request callback. A call to this should result in at least one
  147. * frame being output over the given link. This should return zero on
  148. * success, and another value on error.
  149. *
  150. * Output pads only.
  151. */
  152. int (*request_frame)(AVFilterLink *link);
  153. /**
  154. * Link configuration callback.
  155. *
  156. * For output pads, this should set the link properties such as
  157. * width/height. This should NOT set the format property - that is
  158. * negotiated between filters by the filter system using the
  159. * query_formats() callback before this function is called.
  160. *
  161. * For input pads, this should check the properties of the link, and update
  162. * the filter's internal state as necessary.
  163. *
  164. * For both input and output filters, this should return zero on success,
  165. * and another value on error.
  166. */
  167. int (*config_props)(AVFilterLink *link);
  168. /**
  169. * The filter expects a fifo to be inserted on its input link,
  170. * typically because it has a delay.
  171. *
  172. * input pads only.
  173. */
  174. int needs_fifo;
  175. };
  176. #endif
  177. /** default handler for freeing audio/video buffer when there are no references left */
  178. void ff_avfilter_default_free_buffer(AVFilterBuffer *buf);
  179. /** Tell is a format is contained in the provided list terminated by -1. */
  180. int ff_fmt_is_in(int fmt, const int *fmts);
  181. /**
  182. * Return a copy of a list of integers terminated by -1, or NULL in
  183. * case of copy failure.
  184. */
  185. int *ff_copy_int_list(const int * const list);
  186. /**
  187. * Return a copy of a list of 64-bit integers, or NULL in case of
  188. * copy failure.
  189. */
  190. int64_t *ff_copy_int64_list(const int64_t * const list);
  191. /* Functions to parse audio format arguments */
  192. /**
  193. * Parse a pixel format.
  194. *
  195. * @param ret pixel format pointer to where the value should be written
  196. * @param arg string to parse
  197. * @param log_ctx log context
  198. * @return 0 in case of success, a negative AVERROR code on error
  199. */
  200. int ff_parse_pixel_format(enum PixelFormat *ret, const char *arg, void *log_ctx);
  201. /**
  202. * Parse a sample rate.
  203. *
  204. * @param ret unsigned integer pointer to where the value should be written
  205. * @param arg string to parse
  206. * @param log_ctx log context
  207. * @return 0 in case of success, a negative AVERROR code on error
  208. */
  209. int ff_parse_sample_rate(int *ret, const char *arg, void *log_ctx);
  210. /**
  211. * Parse a time base.
  212. *
  213. * @param ret unsigned AVRational pointer to where the value should be written
  214. * @param arg string to parse
  215. * @param log_ctx log context
  216. * @return 0 in case of success, a negative AVERROR code on error
  217. */
  218. int ff_parse_time_base(AVRational *ret, const char *arg, void *log_ctx);
  219. /**
  220. * Parse a sample format name or a corresponding integer representation.
  221. *
  222. * @param ret integer pointer to where the value should be written
  223. * @param arg string to parse
  224. * @param log_ctx log context
  225. * @return 0 in case of success, a negative AVERROR code on error
  226. */
  227. int ff_parse_sample_format(int *ret, const char *arg, void *log_ctx);
  228. /**
  229. * Parse a channel layout or a corresponding integer representation.
  230. *
  231. * @param ret 64bit integer pointer to where the value should be written.
  232. * @param arg string to parse
  233. * @param log_ctx log context
  234. * @return 0 in case of success, a negative AVERROR code on error
  235. */
  236. int ff_parse_channel_layout(int64_t *ret, const char *arg, void *log_ctx);
  237. void ff_update_link_current_pts(AVFilterLink *link, int64_t pts);
  238. void ff_free_pool(AVFilterPool *pool);
  239. void ff_command_queue_pop(AVFilterContext *filter);
  240. /* misc trace functions */
  241. /* #define FF_AVFILTER_TRACE */
  242. #ifdef FF_AVFILTER_TRACE
  243. # define ff_tlog(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__)
  244. #else
  245. # define ff_tlog(pctx, ...) do { if (0) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__); } while (0)
  246. #endif
  247. #define FF_TPRINTF_START(ctx, func) ff_tlog(NULL, "%-16s: ", #func)
  248. char *ff_get_ref_perms_string(char *buf, size_t buf_size, int perms);
  249. void ff_tlog_ref(void *ctx, AVFilterBufferRef *ref, int end);
  250. void ff_tlog_link(void *ctx, AVFilterLink *link, int end);
  251. /**
  252. * Insert a new pad.
  253. *
  254. * @param idx Insertion point. Pad is inserted at the end if this point
  255. * is beyond the end of the list of pads.
  256. * @param count Pointer to the number of pads in the list
  257. * @param padidx_off Offset within an AVFilterLink structure to the element
  258. * to increment when inserting a new pad causes link
  259. * numbering to change
  260. * @param pads Pointer to the pointer to the beginning of the list of pads
  261. * @param links Pointer to the pointer to the beginning of the list of links
  262. * @param newpad The new pad to add. A copy is made when adding.
  263. */
  264. void ff_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
  265. AVFilterPad **pads, AVFilterLink ***links,
  266. AVFilterPad *newpad);
  267. /** Insert a new input pad for the filter. */
  268. static inline void ff_insert_inpad(AVFilterContext *f, unsigned index,
  269. AVFilterPad *p)
  270. {
  271. ff_insert_pad(index, &f->nb_inputs, offsetof(AVFilterLink, dstpad),
  272. &f->input_pads, &f->inputs, p);
  273. #if FF_API_FOO_COUNT
  274. f->input_count = f->nb_inputs;
  275. #endif
  276. }
  277. /** Insert a new output pad for the filter. */
  278. static inline void ff_insert_outpad(AVFilterContext *f, unsigned index,
  279. AVFilterPad *p)
  280. {
  281. ff_insert_pad(index, &f->nb_outputs, offsetof(AVFilterLink, srcpad),
  282. &f->output_pads, &f->outputs, p);
  283. #if FF_API_FOO_COUNT
  284. f->output_count = f->nb_outputs;
  285. #endif
  286. }
  287. /**
  288. * Poll a frame from the filter chain.
  289. *
  290. * @param link the input link
  291. * @return the number of immediately available frames, a negative
  292. * number in case of error
  293. */
  294. int ff_poll_frame(AVFilterLink *link);
  295. /**
  296. * Request an input frame from the filter at the other end of the link.
  297. *
  298. * @param link the input link
  299. * @return zero on success
  300. */
  301. int ff_request_frame(AVFilterLink *link);
  302. #define AVFILTER_DEFINE_CLASS(fname) \
  303. static const AVClass fname##_class = { \
  304. .class_name = #fname, \
  305. .item_name = av_default_item_name, \
  306. .option = fname##_options, \
  307. .version = LIBAVUTIL_VERSION_INT, \
  308. .category = AV_CLASS_CATEGORY_FILTER, \
  309. }
  310. AVFilterBufferRef *ff_copy_buffer_ref(AVFilterLink *outlink,
  311. AVFilterBufferRef *ref);
  312. /**
  313. * Find the index of a link.
  314. *
  315. * I.e. find i such that link == ctx->(in|out)puts[i]
  316. */
  317. #define FF_INLINK_IDX(link) ((int)((link)->dstpad - (link)->dst->input_pads))
  318. #define FF_OUTLINK_IDX(link) ((int)((link)->srcpad - (link)->src->output_pads))
  319. int ff_buffersink_read_compat(AVFilterContext *ctx, AVFilterBufferRef **buf);
  320. int ff_buffersink_read_samples_compat(AVFilterContext *ctx, AVFilterBufferRef **pbuf,
  321. int nb_samples);
  322. #endif /* AVFILTER_INTERNAL_H */