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.

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