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.

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