formats.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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_FORMATS_H
  19. #define AVFILTER_FORMATS_H
  20. #include "avfilter.h"
  21. /**
  22. * A list of supported formats for one end of a filter link. This is used
  23. * during the format negotiation process to try to pick the best format to
  24. * use to minimize the number of necessary conversions. Each filter gives a
  25. * list of the formats supported by each input and output pad. The list
  26. * given for each pad need not be distinct - they may be references to the
  27. * same list of formats, as is often the case when a filter supports multiple
  28. * formats, but will always output the same format as it is given in input.
  29. *
  30. * In this way, a list of possible input formats and a list of possible
  31. * output formats are associated with each link. When a set of formats is
  32. * negotiated over a link, the input and output lists are merged to form a
  33. * new list containing only the common elements of each list. In the case
  34. * that there were no common elements, a format conversion is necessary.
  35. * Otherwise, the lists are merged, and all other links which reference
  36. * either of the format lists involved in the merge are also affected.
  37. *
  38. * For example, consider the filter chain:
  39. * filter (a) --> (b) filter (b) --> (c) filter
  40. *
  41. * where the letters in parenthesis indicate a list of formats supported on
  42. * the input or output of the link. Suppose the lists are as follows:
  43. * (a) = {A, B}
  44. * (b) = {A, B, C}
  45. * (c) = {B, C}
  46. *
  47. * First, the first link's lists are merged, yielding:
  48. * filter (a) --> (a) filter (a) --> (c) filter
  49. *
  50. * Notice that format list (b) now refers to the same list as filter list (a).
  51. * Next, the lists for the second link are merged, yielding:
  52. * filter (a) --> (a) filter (a) --> (a) filter
  53. *
  54. * where (a) = {B}.
  55. *
  56. * Unfortunately, when the format lists at the two ends of a link are merged,
  57. * we must ensure that all links which reference either pre-merge format list
  58. * get updated as well. Therefore, we have the format list structure store a
  59. * pointer to each of the pointers to itself.
  60. */
  61. struct AVFilterFormats {
  62. unsigned nb_formats; ///< number of formats
  63. int *formats; ///< list of media formats
  64. unsigned refcount; ///< number of references to this list
  65. struct AVFilterFormats ***refs; ///< references to this list
  66. };
  67. /**
  68. * A list of supported channel layouts.
  69. *
  70. * The list works the same as AVFilterFormats, except for the following
  71. * differences:
  72. * - A list with all_layouts = 1 means all channel layouts with a known
  73. * disposition; nb_channel_layouts must then be 0.
  74. * - A list with all_counts = 1 means all channel counts, with a known or
  75. * unknown disposition; nb_channel_layouts must then be 0 and all_layouts 1.
  76. * - The list must not contain a layout with a known disposition and a
  77. * channel count with unknown disposition with the same number of channels
  78. * (e.g. AV_CH_LAYOUT_STEREO and FF_COUNT2LAYOUT(2).
  79. */
  80. typedef struct AVFilterChannelLayouts {
  81. uint64_t *channel_layouts; ///< list of channel layouts
  82. int nb_channel_layouts; ///< number of channel layouts
  83. char all_layouts; ///< accept any known channel layout
  84. char all_counts; ///< accept any channel layout or count
  85. unsigned refcount; ///< number of references to this list
  86. struct AVFilterChannelLayouts ***refs; ///< references to this list
  87. } AVFilterChannelLayouts;
  88. /**
  89. * Encode a channel count as a channel layout.
  90. * FF_COUNT2LAYOUT(c) means any channel layout with c channels, with a known
  91. * or unknown disposition.
  92. * The result is only valid inside AVFilterChannelLayouts and immediately
  93. * related functions.
  94. */
  95. #define FF_COUNT2LAYOUT(c) (0x8000000000000000ULL | (c))
  96. /**
  97. * Decode a channel count encoded as a channel layout.
  98. * Return 0 if the channel layout was a real one.
  99. */
  100. #define FF_LAYOUT2COUNT(l) (((l) & 0x8000000000000000ULL) ? \
  101. (int)((l) & 0x7FFFFFFF) : 0)
  102. /**
  103. * Return a channel layouts/samplerates list which contains the intersection of
  104. * the layouts/samplerates of a and b. Also, all the references of a, all the
  105. * references of b, and a and b themselves will be deallocated.
  106. *
  107. * If a and b do not share any common elements, neither is modified, and NULL
  108. * is returned.
  109. */
  110. AVFilterChannelLayouts *ff_merge_channel_layouts(AVFilterChannelLayouts *a,
  111. AVFilterChannelLayouts *b);
  112. AVFilterFormats *ff_merge_samplerates(AVFilterFormats *a,
  113. AVFilterFormats *b);
  114. /**
  115. * Construct an empty AVFilterChannelLayouts/AVFilterFormats struct --
  116. * representing any channel layout (with known disposition)/sample rate.
  117. */
  118. av_warn_unused_result
  119. AVFilterChannelLayouts *ff_all_channel_layouts(void);
  120. av_warn_unused_result
  121. AVFilterFormats *ff_all_samplerates(void);
  122. /**
  123. * Construct an AVFilterChannelLayouts coding for any channel layout, with
  124. * known or unknown disposition.
  125. */
  126. av_warn_unused_result
  127. AVFilterChannelLayouts *ff_all_channel_counts(void);
  128. av_warn_unused_result
  129. AVFilterChannelLayouts *avfilter_make_format64_list(const int64_t *fmts);
  130. av_warn_unused_result
  131. AVFilterChannelLayouts *ff_make_formatu64_list(const uint64_t *fmts);
  132. /**
  133. * A helper for query_formats() which sets all links to the same list of channel
  134. * layouts/sample rates. If there are no links hooked to this filter, the list
  135. * is freed.
  136. */
  137. av_warn_unused_result
  138. int ff_set_common_channel_layouts(AVFilterContext *ctx,
  139. AVFilterChannelLayouts *layouts);
  140. av_warn_unused_result
  141. int ff_set_common_samplerates(AVFilterContext *ctx,
  142. AVFilterFormats *samplerates);
  143. /**
  144. * A helper for query_formats() which sets all links to the same list of
  145. * formats. If there are no links hooked to this filter, the list of formats is
  146. * freed.
  147. */
  148. av_warn_unused_result
  149. int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats);
  150. av_warn_unused_result
  151. int ff_add_channel_layout(AVFilterChannelLayouts **l, uint64_t channel_layout);
  152. /**
  153. * Add *ref as a new reference to f.
  154. */
  155. av_warn_unused_result
  156. int ff_channel_layouts_ref(AVFilterChannelLayouts *f,
  157. AVFilterChannelLayouts **ref);
  158. /**
  159. * Remove a reference to a channel layouts list.
  160. */
  161. void ff_channel_layouts_unref(AVFilterChannelLayouts **ref);
  162. void ff_channel_layouts_changeref(AVFilterChannelLayouts **oldref,
  163. AVFilterChannelLayouts **newref);
  164. av_warn_unused_result
  165. int ff_default_query_formats(AVFilterContext *ctx);
  166. /**
  167. * Set the formats list to all existing formats.
  168. * This function behaves like ff_default_query_formats(), except it also
  169. * accepts channel layouts with unknown disposition. It should only be used
  170. * with audio filters.
  171. */
  172. av_warn_unused_result
  173. int ff_query_formats_all(AVFilterContext *ctx);
  174. /**
  175. * Create a list of supported formats. This is intended for use in
  176. * AVFilter->query_formats().
  177. *
  178. * @param fmts list of media formats, terminated by -1
  179. * @return the format list, with no existing references
  180. */
  181. av_warn_unused_result
  182. AVFilterFormats *ff_make_format_list(const int *fmts);
  183. /**
  184. * Add fmt to the list of media formats contained in *avff.
  185. * If *avff is NULL the function allocates the filter formats struct
  186. * and puts its pointer in *avff.
  187. *
  188. * @return a non negative value in case of success, or a negative
  189. * value corresponding to an AVERROR code in case of error
  190. */
  191. av_warn_unused_result
  192. int ff_add_format(AVFilterFormats **avff, int64_t fmt);
  193. /**
  194. * Return a list of all formats supported by FFmpeg for the given media type.
  195. */
  196. av_warn_unused_result
  197. AVFilterFormats *ff_all_formats(enum AVMediaType type);
  198. /**
  199. * Construct a formats list containing all planar sample formats.
  200. */
  201. av_warn_unused_result
  202. AVFilterFormats *ff_planar_sample_fmts(void);
  203. /**
  204. * Return a format list which contains the intersection of the formats of
  205. * a and b. Also, all the references of a, all the references of b, and
  206. * a and b themselves will be deallocated.
  207. *
  208. * If a and b do not share any common formats, neither is modified, and NULL
  209. * is returned.
  210. */
  211. AVFilterFormats *ff_merge_formats(AVFilterFormats *a, AVFilterFormats *b,
  212. enum AVMediaType type);
  213. /**
  214. * Add *ref as a new reference to formats.
  215. * That is the pointers will point like in the ascii art below:
  216. * ________
  217. * |formats |<--------.
  218. * | ____ | ____|___________________
  219. * | |refs| | | __|_
  220. * | |* * | | | | | | AVFilterLink
  221. * | |* *--------->|*ref|
  222. * | |____| | | |____|
  223. * |________| |________________________
  224. */
  225. av_warn_unused_result
  226. int ff_formats_ref(AVFilterFormats *formats, AVFilterFormats **ref);
  227. /**
  228. * If *ref is non-NULL, remove *ref as a reference to the format list
  229. * it currently points to, deallocates that list if this was the last
  230. * reference, and sets *ref to NULL.
  231. *
  232. * Before After
  233. * ________ ________ NULL
  234. * |formats |<--------. |formats | ^
  235. * | ____ | ____|________________ | ____ | ____|________________
  236. * | |refs| | | __|_ | |refs| | | __|_
  237. * | |* * | | | | | | AVFilterLink | |* * | | | | | | AVFilterLink
  238. * | |* *--------->|*ref| | |* | | | |*ref|
  239. * | |____| | | |____| | |____| | | |____|
  240. * |________| |_____________________ |________| |_____________________
  241. */
  242. void ff_formats_unref(AVFilterFormats **ref);
  243. /**
  244. * Before After
  245. * ________ ________
  246. * |formats |<---------. |formats |<---------.
  247. * | ____ | ___|___ | ____ | ___|___
  248. * | |refs| | | | | | |refs| | | | | NULL
  249. * | |* *--------->|*oldref| | |* *--------->|*newref| ^
  250. * | |* * | | |_______| | |* * | | |_______| ___|___
  251. * | |____| | | |____| | | | |
  252. * |________| |________| |*oldref|
  253. * |_______|
  254. */
  255. void ff_formats_changeref(AVFilterFormats **oldref, AVFilterFormats **newref);
  256. #endif /* AVFILTER_FORMATS_H */