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.

383 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. #include "libavcodec/avcodec.h"
  32. typedef struct AVFilterCommand {
  33. double time; ///< time expressed in seconds
  34. char *command; ///< command
  35. char *arg; ///< optional argument for the command
  36. int flags;
  37. struct AVFilterCommand *next;
  38. } AVFilterCommand;
  39. /**
  40. * Update the position of a link in the age heap.
  41. */
  42. void ff_avfilter_graph_update_heap(AVFilterGraph *graph, AVFilterLink *link);
  43. /**
  44. * A filter pad used for either input or output.
  45. */
  46. struct AVFilterPad {
  47. /**
  48. * Pad name. The name is unique among inputs and among outputs, but an
  49. * input may have the same name as an output. This may be NULL if this
  50. * pad has no need to ever be referenced by name.
  51. */
  52. const char *name;
  53. /**
  54. * AVFilterPad type.
  55. */
  56. enum AVMediaType type;
  57. /**
  58. * Callback function to get a video buffer. If NULL, the filter system will
  59. * use ff_default_get_video_buffer().
  60. *
  61. * Input video pads only.
  62. */
  63. AVFrame *(*get_video_buffer)(AVFilterLink *link, int w, int h);
  64. /**
  65. * Callback function to get an audio buffer. If NULL, the filter system will
  66. * use ff_default_get_audio_buffer().
  67. *
  68. * Input audio pads only.
  69. */
  70. AVFrame *(*get_audio_buffer)(AVFilterLink *link, int nb_samples);
  71. /**
  72. * Filtering callback. This is where a filter receives a frame with
  73. * audio/video data and should do its processing.
  74. *
  75. * Input pads only.
  76. *
  77. * @return >= 0 on success, a negative AVERROR on error. This function
  78. * must ensure that samplesref is properly unreferenced on error if it
  79. * hasn't been passed on to another filter.
  80. */
  81. int (*filter_frame)(AVFilterLink *link, AVFrame *frame);
  82. /**
  83. * Frame poll callback. This returns the number of immediately available
  84. * samples. It should return a positive value if the next request_frame()
  85. * is guaranteed to return one frame (with no delay).
  86. *
  87. * Defaults to just calling the source poll_frame() method.
  88. *
  89. * Output pads only.
  90. */
  91. int (*poll_frame)(AVFilterLink *link);
  92. /**
  93. * Frame request callback. A call to this should result in some progress
  94. * towards producing output over the given link. This should return zero
  95. * on success, and another value on error.
  96. *
  97. * Output pads only.
  98. */
  99. int (*request_frame)(AVFilterLink *link);
  100. /**
  101. * Link configuration callback.
  102. *
  103. * For output pads, this should set the link properties such as
  104. * width/height. This should NOT set the format property - that is
  105. * negotiated between filters by the filter system using the
  106. * query_formats() callback before this function is called.
  107. *
  108. * For input pads, this should check the properties of the link, and update
  109. * the filter's internal state as necessary.
  110. *
  111. * For both input and output filters, this should return zero on success,
  112. * and another value on error.
  113. */
  114. int (*config_props)(AVFilterLink *link);
  115. /**
  116. * The filter expects a fifo to be inserted on its input link,
  117. * typically because it has a delay.
  118. *
  119. * input pads only.
  120. */
  121. int needs_fifo;
  122. /**
  123. * The filter expects writable frames from its input link,
  124. * duplicating data buffers if needed.
  125. *
  126. * input pads only.
  127. */
  128. int needs_writable;
  129. };
  130. struct AVFilterGraphInternal {
  131. void *thread;
  132. avfilter_execute_func *thread_execute;
  133. };
  134. struct AVFilterInternal {
  135. avfilter_execute_func *execute;
  136. };
  137. /**
  138. * Tell if an integer is contained in the provided -1-terminated list of integers.
  139. * This is useful for determining (for instance) if an AVPixelFormat is in an
  140. * array of supported formats.
  141. *
  142. * @param fmt provided format
  143. * @param fmts -1-terminated list of formats
  144. * @return 1 if present, 0 if absent
  145. */
  146. int ff_fmt_is_in(int fmt, const int *fmts);
  147. /* Functions to parse audio format arguments */
  148. /**
  149. * Parse a pixel format.
  150. *
  151. * @param ret pixel format pointer to where the value should be written
  152. * @param arg string to parse
  153. * @param log_ctx log context
  154. * @return >= 0 in case of success, a negative AVERROR code on error
  155. */
  156. av_warn_unused_result
  157. int ff_parse_pixel_format(enum AVPixelFormat *ret, const char *arg, void *log_ctx);
  158. /**
  159. * Parse a sample rate.
  160. *
  161. * @param ret unsigned integer pointer to where the value should be written
  162. * @param arg string to parse
  163. * @param log_ctx log context
  164. * @return >= 0 in case of success, a negative AVERROR code on error
  165. */
  166. av_warn_unused_result
  167. int ff_parse_sample_rate(int *ret, const char *arg, void *log_ctx);
  168. /**
  169. * Parse a time base.
  170. *
  171. * @param ret unsigned AVRational pointer to where the value should be written
  172. * @param arg string to parse
  173. * @param log_ctx log context
  174. * @return >= 0 in case of success, a negative AVERROR code on error
  175. */
  176. av_warn_unused_result
  177. int ff_parse_time_base(AVRational *ret, const char *arg, void *log_ctx);
  178. /**
  179. * Parse a sample format name or a corresponding integer representation.
  180. *
  181. * @param ret integer pointer to where the value should be written
  182. * @param arg string to parse
  183. * @param log_ctx log context
  184. * @return >= 0 in case of success, a negative AVERROR code on error
  185. */
  186. av_warn_unused_result
  187. int ff_parse_sample_format(int *ret, const char *arg, void *log_ctx);
  188. /**
  189. * Parse a channel layout or a corresponding integer representation.
  190. *
  191. * @param ret 64bit integer pointer to where the value should be written.
  192. * @param nret integer pointer to the number of channels;
  193. * if not NULL, then unknown channel layouts are accepted
  194. * @param arg string to parse
  195. * @param log_ctx log context
  196. * @return >= 0 in case of success, a negative AVERROR code on error
  197. */
  198. av_warn_unused_result
  199. int ff_parse_channel_layout(int64_t *ret, int *nret, const char *arg,
  200. 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. * @return >= 0 in case of success, a negative AVERROR code on error
  227. */
  228. int 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 int ff_insert_inpad(AVFilterContext *f, unsigned index,
  233. AVFilterPad *p)
  234. {
  235. return ff_insert_pad(index, &f->nb_inputs, offsetof(AVFilterLink, dstpad),
  236. &f->input_pads, &f->inputs, p);
  237. }
  238. /** Insert a new output pad for the filter. */
  239. static inline int ff_insert_outpad(AVFilterContext *f, unsigned index,
  240. AVFilterPad *p)
  241. {
  242. return ff_insert_pad(index, &f->nb_outputs, offsetof(AVFilterLink, srcpad),
  243. &f->output_pads, &f->outputs, p);
  244. }
  245. /**
  246. * Poll a frame from the filter chain.
  247. *
  248. * @param link the input link
  249. * @return the number of immediately available frames, a negative
  250. * number in case of error
  251. */
  252. int ff_poll_frame(AVFilterLink *link);
  253. /**
  254. * Request an input frame from the filter at the other end of the link.
  255. *
  256. * The input filter may pass the request on to its inputs, fulfill the
  257. * request from an internal buffer or any other means specific to its function.
  258. *
  259. * When the end of a stream is reached AVERROR_EOF is returned and no further
  260. * frames are returned after that.
  261. *
  262. * When a filter is unable to output a frame for example due to its sources
  263. * being unable to do so or because it depends on external means pushing data
  264. * into it then AVERROR(EAGAIN) is returned.
  265. * It is important that a AVERROR(EAGAIN) return is returned all the way to the
  266. * caller (generally eventually a user application) as this step may (but does
  267. * not have to be) necessary to provide the input with the next frame.
  268. *
  269. * If a request is successful then some progress has been made towards
  270. * providing a frame on the link (through ff_filter_frame()). A filter that
  271. * needs several frames to produce one is allowed to return success if one
  272. * more frame has been processed but no output has been produced yet. A
  273. * filter is also allowed to simply forward a success return value.
  274. *
  275. * @param link the input link
  276. * @return zero on success
  277. * AVERROR_EOF on end of file
  278. * AVERROR(EAGAIN) if the previous filter cannot output a frame
  279. * currently and can neither guarantee that EOF has been reached.
  280. */
  281. int ff_request_frame(AVFilterLink *link);
  282. #define AVFILTER_DEFINE_CLASS(fname) \
  283. static const AVClass fname##_class = { \
  284. .class_name = #fname, \
  285. .item_name = av_default_item_name, \
  286. .option = fname##_options, \
  287. .version = LIBAVUTIL_VERSION_INT, \
  288. .category = AV_CLASS_CATEGORY_FILTER, \
  289. }
  290. /**
  291. * Find the index of a link.
  292. *
  293. * I.e. find i such that link == ctx->(in|out)puts[i]
  294. */
  295. #define FF_INLINK_IDX(link) ((int)((link)->dstpad - (link)->dst->input_pads))
  296. #define FF_OUTLINK_IDX(link) ((int)((link)->srcpad - (link)->src->output_pads))
  297. /**
  298. * Send a frame of data to the next filter.
  299. *
  300. * @param link the output link over which the data is being sent
  301. * @param frame a reference to the buffer of data being sent. The
  302. * receiving filter will free this reference when it no longer
  303. * needs it or pass it on to the next filter.
  304. *
  305. * @return >= 0 on success, a negative AVERROR on error. The receiving filter
  306. * is responsible for unreferencing frame in case of error.
  307. */
  308. int ff_filter_frame(AVFilterLink *link, AVFrame *frame);
  309. /**
  310. * Allocate a new filter context and return it.
  311. *
  312. * @param filter what filter to create an instance of
  313. * @param inst_name name to give to the new filter context
  314. *
  315. * @return newly created filter context or NULL on failure
  316. */
  317. AVFilterContext *ff_filter_alloc(const AVFilter *filter, const char *inst_name);
  318. /**
  319. * Remove a filter from a graph;
  320. */
  321. void ff_filter_graph_remove_filter(AVFilterGraph *graph, AVFilterContext *filter);
  322. /**
  323. * Normalize the qscale factor
  324. * FIXME the H264 qscale is a log based scale, mpeg1/2 is not, the code below
  325. * cannot be optimal
  326. */
  327. static inline int ff_norm_qscale(int qscale, int type)
  328. {
  329. switch (type) {
  330. case FF_QSCALE_TYPE_MPEG1: return qscale;
  331. case FF_QSCALE_TYPE_MPEG2: return qscale >> 1;
  332. case FF_QSCALE_TYPE_H264: return qscale >> 2;
  333. case FF_QSCALE_TYPE_VP56: return (63 - qscale + 2) >> 2;
  334. }
  335. return qscale;
  336. }
  337. #endif /* AVFILTER_INTERNAL_H */