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.

222 lines
8.6KB

  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. #if !FF_API_FILTERS_PUBLIC
  62. struct AVFilterFormats {
  63. unsigned format_count; ///< number of formats
  64. int *formats; ///< list of media formats
  65. unsigned refcount; ///< number of references to this list
  66. struct AVFilterFormats ***refs; ///< references to this list
  67. };
  68. #endif
  69. typedef struct AVFilterChannelLayouts {
  70. uint64_t *channel_layouts; ///< list of channel layouts
  71. int nb_channel_layouts; ///< number of channel layouts
  72. unsigned refcount; ///< number of references to this list
  73. struct AVFilterChannelLayouts ***refs; ///< references to this list
  74. } AVFilterChannelLayouts;
  75. /**
  76. * Return a channel layouts/samplerates list which contains the intersection of
  77. * the layouts/samplerates of a and b. Also, all the references of a, all the
  78. * references of b, and a and b themselves will be deallocated.
  79. *
  80. * If a and b do not share any common elements, neither is modified, and NULL
  81. * is returned.
  82. */
  83. AVFilterChannelLayouts *ff_merge_channel_layouts(AVFilterChannelLayouts *a,
  84. AVFilterChannelLayouts *b);
  85. AVFilterFormats *ff_merge_samplerates(AVFilterFormats *a,
  86. AVFilterFormats *b);
  87. /**
  88. * Construct an empty AVFilterChannelLayouts/AVFilterFormats struct --
  89. * representing any channel layout/sample rate.
  90. */
  91. AVFilterChannelLayouts *ff_all_channel_layouts(void);
  92. AVFilterFormats *ff_all_samplerates(void);
  93. AVFilterChannelLayouts *avfilter_make_format64_list(const int64_t *fmts);
  94. /**
  95. * A helper for query_formats() which sets all links to the same list of channel
  96. * layouts/sample rates. If there are no links hooked to this filter, the list
  97. * is freed.
  98. */
  99. void ff_set_common_channel_layouts(AVFilterContext *ctx,
  100. AVFilterChannelLayouts *layouts);
  101. void ff_set_common_samplerates(AVFilterContext *ctx,
  102. AVFilterFormats *samplerates);
  103. /**
  104. * A helper for query_formats() which sets all links to the same list of
  105. * formats. If there are no links hooked to this filter, the list of formats is
  106. * freed.
  107. */
  108. void ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats);
  109. int ff_add_channel_layout(AVFilterChannelLayouts **l, uint64_t channel_layout);
  110. /**
  111. * Add *ref as a new reference to f.
  112. */
  113. void ff_channel_layouts_ref(AVFilterChannelLayouts *f,
  114. AVFilterChannelLayouts **ref);
  115. /**
  116. * Remove a reference to a channel layouts list.
  117. */
  118. void ff_channel_layouts_unref(AVFilterChannelLayouts **ref);
  119. void ff_channel_layouts_changeref(AVFilterChannelLayouts **oldref,
  120. AVFilterChannelLayouts **newref);
  121. int ff_default_query_formats(AVFilterContext *ctx);
  122. /**
  123. * Create a list of supported formats. This is intended for use in
  124. * AVFilter->query_formats().
  125. *
  126. * @param fmts list of media formats, terminated by -1
  127. * @return the format list, with no existing references
  128. */
  129. AVFilterFormats *ff_make_format_list(const int *fmts);
  130. /**
  131. * Add fmt to the list of media formats contained in *avff.
  132. * If *avff is NULL the function allocates the filter formats struct
  133. * and puts its pointer in *avff.
  134. *
  135. * @return a non negative value in case of success, or a negative
  136. * value corresponding to an AVERROR code in case of error
  137. */
  138. int ff_add_format(AVFilterFormats **avff, int64_t fmt);
  139. /**
  140. * Return a list of all formats supported by Libav for the given media type.
  141. */
  142. AVFilterFormats *ff_all_formats(enum AVMediaType type);
  143. /**
  144. * Return a format list which contains the intersection of the formats of
  145. * a and b. Also, all the references of a, all the references of b, and
  146. * a and b themselves will be deallocated.
  147. *
  148. * If a and b do not share any common formats, neither is modified, and NULL
  149. * is returned.
  150. */
  151. AVFilterFormats *ff_merge_formats(AVFilterFormats *a, AVFilterFormats *b);
  152. /**
  153. * Add *ref as a new reference to formats.
  154. * That is the pointers will point like in the ascii art below:
  155. * ________
  156. * |formats |<--------.
  157. * | ____ | ____|___________________
  158. * | |refs| | | __|_
  159. * | |* * | | | | | | AVFilterLink
  160. * | |* *--------->|*ref|
  161. * | |____| | | |____|
  162. * |________| |________________________
  163. */
  164. void ff_formats_ref(AVFilterFormats *formats, AVFilterFormats **ref);
  165. /**
  166. * If *ref is non-NULL, remove *ref as a reference to the format list
  167. * it currently points to, deallocates that list if this was the last
  168. * reference, and sets *ref to NULL.
  169. *
  170. * Before After
  171. * ________ ________ NULL
  172. * |formats |<--------. |formats | ^
  173. * | ____ | ____|________________ | ____ | ____|________________
  174. * | |refs| | | __|_ | |refs| | | __|_
  175. * | |* * | | | | | | AVFilterLink | |* * | | | | | | AVFilterLink
  176. * | |* *--------->|*ref| | |* | | | |*ref|
  177. * | |____| | | |____| | |____| | | |____|
  178. * |________| |_____________________ |________| |_____________________
  179. */
  180. void ff_formats_unref(AVFilterFormats **ref);
  181. /**
  182. *
  183. * Before After
  184. * ________ ________
  185. * |formats |<---------. |formats |<---------.
  186. * | ____ | ___|___ | ____ | ___|___
  187. * | |refs| | | | | | |refs| | | | | NULL
  188. * | |* *--------->|*oldref| | |* *--------->|*newref| ^
  189. * | |* * | | |_______| | |* * | | |_______| ___|___
  190. * | |____| | | |____| | | | |
  191. * |________| |________| |*oldref|
  192. * |_______|
  193. */
  194. void ff_formats_changeref(AVFilterFormats **oldref, AVFilterFormats **newref);
  195. #endif // AVFILTER_FORMATS_H