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.

378 lines
12KB

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