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.

396 lines
13KB

  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. #if FF_API_AVFILTERBUFFER
  33. #define POOL_SIZE 32
  34. typedef struct AVFilterPool {
  35. AVFilterBufferRef *pic[POOL_SIZE];
  36. int count;
  37. int refcount;
  38. int draining;
  39. } AVFilterPool;
  40. #endif
  41. typedef struct AVFilterCommand {
  42. double time; ///< time expressed in seconds
  43. char *command; ///< command
  44. char *arg; ///< optional argument for the command
  45. int flags;
  46. struct AVFilterCommand *next;
  47. } AVFilterCommand;
  48. /**
  49. * Update the position of a link in the age heap.
  50. */
  51. void ff_avfilter_graph_update_heap(AVFilterGraph *graph, AVFilterLink *link);
  52. /**
  53. * A filter pad used for either input or output.
  54. */
  55. struct AVFilterPad {
  56. /**
  57. * Pad name. The name is unique among inputs and among outputs, but an
  58. * input may have the same name as an output. This may be NULL if this
  59. * pad has no need to ever be referenced by name.
  60. */
  61. const char *name;
  62. /**
  63. * AVFilterPad type.
  64. */
  65. enum AVMediaType type;
  66. /**
  67. * Callback function to get a video buffer. If NULL, the filter system will
  68. * use ff_default_get_video_buffer().
  69. *
  70. * Input video pads only.
  71. */
  72. AVFrame *(*get_video_buffer)(AVFilterLink *link, int w, int h);
  73. /**
  74. * Callback function to get an audio buffer. If NULL, the filter system will
  75. * use ff_default_get_audio_buffer().
  76. *
  77. * Input audio pads only.
  78. */
  79. AVFrame *(*get_audio_buffer)(AVFilterLink *link, int nb_samples);
  80. /**
  81. * Filtering callback. This is where a filter receives a frame with
  82. * audio/video data and should do its processing.
  83. *
  84. * Input pads only.
  85. *
  86. * @return >= 0 on success, a negative AVERROR on error. This function
  87. * must ensure that samplesref is properly unreferenced on error if it
  88. * hasn't been passed on to another filter.
  89. */
  90. int (*filter_frame)(AVFilterLink *link, AVFrame *frame);
  91. /**
  92. * Frame poll callback. This returns the number of immediately available
  93. * samples. It should return a positive value if the next request_frame()
  94. * is guaranteed to return one frame (with no delay).
  95. *
  96. * Defaults to just calling the source poll_frame() method.
  97. *
  98. * Output pads only.
  99. */
  100. int (*poll_frame)(AVFilterLink *link);
  101. /**
  102. * Frame request callback. A call to this should result in at least one
  103. * frame being output over the given link. This should return zero on
  104. * success, and another value on error.
  105. *
  106. * Output pads only.
  107. */
  108. int (*request_frame)(AVFilterLink *link);
  109. /**
  110. * Link configuration callback.
  111. *
  112. * For output pads, this should set the link properties such as
  113. * width/height. This should NOT set the format property - that is
  114. * negotiated between filters by the filter system using the
  115. * query_formats() callback before this function is called.
  116. *
  117. * For input pads, this should check the properties of the link, and update
  118. * the filter's internal state as necessary.
  119. *
  120. * For both input and output filters, this should return zero on success,
  121. * and another value on error.
  122. */
  123. int (*config_props)(AVFilterLink *link);
  124. /**
  125. * The filter expects a fifo to be inserted on its input link,
  126. * typically because it has a delay.
  127. *
  128. * input pads only.
  129. */
  130. int needs_fifo;
  131. /**
  132. * The filter expects writable frames from its input link,
  133. * duplicating data buffers if needed.
  134. *
  135. * input pads only.
  136. */
  137. int needs_writable;
  138. };
  139. struct AVFilterGraphInternal {
  140. void *thread;
  141. avfilter_execute_func *thread_execute;
  142. };
  143. struct AVFilterInternal {
  144. avfilter_execute_func *execute;
  145. };
  146. #if FF_API_AVFILTERBUFFER
  147. /** default handler for freeing audio/video buffer when there are no references left */
  148. void ff_avfilter_default_free_buffer(AVFilterBuffer *buf);
  149. #endif
  150. /** Tell is a format is contained in the provided list terminated by -1. */
  151. int ff_fmt_is_in(int fmt, const int *fmts);
  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 nret integer pointer to the number of channels;
  194. * if not NULL, then unknown channel layouts are accepted
  195. * @param arg string to parse
  196. * @param log_ctx log context
  197. * @return >= 0 in case of success, a negative AVERROR code on error
  198. */
  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 the filter_frame() function will be called
  270. * at least once before ff_request_frame() returns
  271. *
  272. * @param link the input link
  273. * @return zero on success
  274. * AVERROR_EOF on end of file
  275. * AVERROR(EAGAIN) if the previous filter cannot output a frame
  276. * currently and can neither guarantee that EOF has been reached.
  277. */
  278. int ff_request_frame(AVFilterLink *link);
  279. #define AVFILTER_DEFINE_CLASS(fname) \
  280. static const AVClass fname##_class = { \
  281. .class_name = #fname, \
  282. .item_name = av_default_item_name, \
  283. .option = fname##_options, \
  284. .version = LIBAVUTIL_VERSION_INT, \
  285. .category = AV_CLASS_CATEGORY_FILTER, \
  286. }
  287. /**
  288. * Find the index of a link.
  289. *
  290. * I.e. find i such that link == ctx->(in|out)puts[i]
  291. */
  292. #define FF_INLINK_IDX(link) ((int)((link)->dstpad - (link)->dst->input_pads))
  293. #define FF_OUTLINK_IDX(link) ((int)((link)->srcpad - (link)->src->output_pads))
  294. /**
  295. * Send a frame of data to the next filter.
  296. *
  297. * @param link the output link over which the data is being sent
  298. * @param frame a reference to the buffer of data being sent. The
  299. * receiving filter will free this reference when it no longer
  300. * needs it or pass it on to the next filter.
  301. *
  302. * @return >= 0 on success, a negative AVERROR on error. The receiving filter
  303. * is responsible for unreferencing frame in case of error.
  304. */
  305. int ff_filter_frame(AVFilterLink *link, AVFrame *frame);
  306. /**
  307. * Flags for AVFilterLink.flags.
  308. */
  309. enum {
  310. /**
  311. * Frame requests may need to loop in order to be fulfilled.
  312. * A filter must set this flags on an output link if it may return 0 in
  313. * request_frame() without filtering a frame.
  314. */
  315. FF_LINK_FLAG_REQUEST_LOOP = 1,
  316. };
  317. /**
  318. * Allocate a new filter context and return it.
  319. *
  320. * @param filter what filter to create an instance of
  321. * @param inst_name name to give to the new filter context
  322. *
  323. * @return newly created filter context or NULL on failure
  324. */
  325. AVFilterContext *ff_filter_alloc(const AVFilter *filter, const char *inst_name);
  326. /**
  327. * Remove a filter from a graph;
  328. */
  329. void ff_filter_graph_remove_filter(AVFilterGraph *graph, AVFilterContext *filter);
  330. /**
  331. * Normalize the qscale factor
  332. * FIXME the H264 qscale is a log based scale, mpeg1/2 is not, the code below
  333. * cannot be optimal
  334. */
  335. static inline int ff_norm_qscale(int qscale, int type)
  336. {
  337. switch (type) {
  338. case FF_QSCALE_TYPE_MPEG1: return qscale;
  339. case FF_QSCALE_TYPE_MPEG2: return qscale >> 1;
  340. case FF_QSCALE_TYPE_H264: return qscale >> 2;
  341. case FF_QSCALE_TYPE_VP56: return (63 - qscale + 2) >> 2;
  342. }
  343. return qscale;
  344. }
  345. #endif /* AVFILTER_INTERNAL_H */