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.

274 lines
8.8KB

  1. /*
  2. * Copyright (c) 2013 Stefano Sabatini
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * audio and video interleaver
  23. */
  24. #include "libavutil/avassert.h"
  25. #include "libavutil/avstring.h"
  26. #include "libavutil/opt.h"
  27. #include "avfilter.h"
  28. #include "formats.h"
  29. #include "filters.h"
  30. #include "internal.h"
  31. #include "audio.h"
  32. #include "video.h"
  33. typedef struct InterleaveContext {
  34. const AVClass *class;
  35. int nb_inputs;
  36. int duration_mode;
  37. int64_t pts;
  38. } InterleaveContext;
  39. #define DURATION_LONGEST 0
  40. #define DURATION_SHORTEST 1
  41. #define DURATION_FIRST 2
  42. #define OFFSET(x) offsetof(InterleaveContext, x)
  43. #define DEFINE_OPTIONS(filt_name, flags_) \
  44. static const AVOption filt_name##_options[] = { \
  45. { "nb_inputs", "set number of inputs", OFFSET(nb_inputs), AV_OPT_TYPE_INT, {.i64 = 2}, 1, INT_MAX, .flags = flags_ }, \
  46. { "n", "set number of inputs", OFFSET(nb_inputs), AV_OPT_TYPE_INT, {.i64 = 2}, 1, INT_MAX, .flags = flags_ }, \
  47. { "duration", "how to determine the end-of-stream", \
  48. OFFSET(duration_mode), AV_OPT_TYPE_INT, { .i64 = DURATION_LONGEST }, 0, 2, flags_, "duration" }, \
  49. { "longest", "Duration of longest input", 0, AV_OPT_TYPE_CONST, { .i64 = DURATION_LONGEST }, 0, 0, flags_, "duration" }, \
  50. { "shortest", "Duration of shortest input", 0, AV_OPT_TYPE_CONST, { .i64 = DURATION_SHORTEST }, 0, 0, flags_, "duration" }, \
  51. { "first", "Duration of first input", 0, AV_OPT_TYPE_CONST, { .i64 = DURATION_FIRST }, 0, 0, flags_, "duration" }, \
  52. { NULL } \
  53. }
  54. static int activate(AVFilterContext *ctx)
  55. {
  56. AVFilterLink *outlink = ctx->outputs[0];
  57. InterleaveContext *s = ctx->priv;
  58. int64_t q_pts, pts = INT64_MAX;
  59. int i, nb_eofs = 0, input_idx = -1;
  60. int nb_inputs_with_frames = 0;
  61. FF_FILTER_FORWARD_STATUS_BACK_ALL(outlink, ctx);
  62. for (i = 0; i < ctx->nb_inputs; i++) {
  63. if (!ff_inlink_queued_frames(ctx->inputs[i]))
  64. continue;
  65. nb_inputs_with_frames++;
  66. }
  67. if (nb_inputs_with_frames > 0) {
  68. for (i = 0; i < ctx->nb_inputs; i++) {
  69. AVFrame *frame;
  70. if (ff_inlink_queued_frames(ctx->inputs[i]) == 0)
  71. continue;
  72. frame = ff_inlink_peek_frame(ctx->inputs[i], 0);
  73. if (frame->pts == AV_NOPTS_VALUE) {
  74. int ret;
  75. av_log(ctx, AV_LOG_WARNING,
  76. "NOPTS value for input frame cannot be accepted, frame discarded\n");
  77. ret = ff_inlink_consume_frame(ctx->inputs[i], &frame);
  78. if (ret < 0)
  79. return ret;
  80. av_frame_free(&frame);
  81. return AVERROR_INVALIDDATA;
  82. }
  83. q_pts = av_rescale_q(frame->pts, ctx->inputs[i]->time_base, AV_TIME_BASE_Q);
  84. if (q_pts < pts) {
  85. pts = q_pts;
  86. input_idx = i;
  87. }
  88. }
  89. if (input_idx >= 0) {
  90. AVFrame *frame;
  91. int ret;
  92. ret = ff_inlink_consume_frame(ctx->inputs[input_idx], &frame);
  93. if (ret < 0)
  94. return ret;
  95. frame->pts = s->pts = pts;
  96. return ff_filter_frame(outlink, frame);
  97. }
  98. }
  99. for (i = 0; i < ctx->nb_inputs; i++)
  100. nb_eofs += !!ff_outlink_get_status(ctx->inputs[i]);
  101. if ((nb_eofs > 0 && s->duration_mode == DURATION_SHORTEST) ||
  102. (nb_eofs == ctx->nb_inputs && s->duration_mode == DURATION_LONGEST) ||
  103. (ff_outlink_get_status(ctx->inputs[0]) && s->duration_mode == DURATION_FIRST)) {
  104. ff_outlink_set_status(outlink, AVERROR_EOF, s->pts);
  105. return 0;
  106. }
  107. for (i = 0; i < ctx->nb_inputs; i++) {
  108. if (ff_inlink_queued_frames(ctx->inputs[i]))
  109. continue;
  110. if (ff_outlink_frame_wanted(outlink) &&
  111. !ff_outlink_get_status(ctx->inputs[i])) {
  112. ff_inlink_request_frame(ctx->inputs[i]);
  113. return 0;
  114. }
  115. }
  116. if (i) {
  117. ff_filter_set_ready(ctx, 100);
  118. return 0;
  119. }
  120. return FFERROR_NOT_READY;
  121. }
  122. static av_cold int init(AVFilterContext *ctx)
  123. {
  124. InterleaveContext *s = ctx->priv;
  125. const AVFilterPad *outpad = &ctx->filter->outputs[0];
  126. int i, ret;
  127. for (i = 0; i < s->nb_inputs; i++) {
  128. AVFilterPad inpad = { 0 };
  129. inpad.name = av_asprintf("input%d", i);
  130. if (!inpad.name)
  131. return AVERROR(ENOMEM);
  132. inpad.type = outpad->type;
  133. switch (outpad->type) {
  134. case AVMEDIA_TYPE_VIDEO:
  135. inpad.get_video_buffer = ff_null_get_video_buffer; break;
  136. case AVMEDIA_TYPE_AUDIO:
  137. inpad.get_audio_buffer = ff_null_get_audio_buffer; break;
  138. default:
  139. av_assert0(0);
  140. }
  141. if ((ret = ff_insert_inpad(ctx, i, &inpad)) < 0) {
  142. av_freep(&inpad.name);
  143. return ret;
  144. }
  145. }
  146. return 0;
  147. }
  148. static av_cold void uninit(AVFilterContext *ctx)
  149. {
  150. for (int i = 0; i < ctx->nb_inputs; i++)
  151. av_freep(&ctx->input_pads[i].name);
  152. }
  153. static int config_output(AVFilterLink *outlink)
  154. {
  155. AVFilterContext *ctx = outlink->src;
  156. AVFilterLink *inlink0 = ctx->inputs[0];
  157. int i;
  158. if (outlink->type == AVMEDIA_TYPE_VIDEO) {
  159. outlink->time_base = AV_TIME_BASE_Q;
  160. outlink->w = inlink0->w;
  161. outlink->h = inlink0->h;
  162. outlink->sample_aspect_ratio = inlink0->sample_aspect_ratio;
  163. outlink->format = inlink0->format;
  164. outlink->frame_rate = (AVRational) {1, 0};
  165. for (i = 1; i < ctx->nb_inputs; i++) {
  166. AVFilterLink *inlink = ctx->inputs[i];
  167. if (outlink->w != inlink->w ||
  168. outlink->h != inlink->h ||
  169. outlink->sample_aspect_ratio.num != inlink->sample_aspect_ratio.num ||
  170. outlink->sample_aspect_ratio.den != inlink->sample_aspect_ratio.den) {
  171. av_log(ctx, AV_LOG_ERROR, "Parameters for input link %s "
  172. "(size %dx%d, SAR %d:%d) do not match the corresponding "
  173. "output link parameters (%dx%d, SAR %d:%d)\n",
  174. ctx->input_pads[i].name, inlink->w, inlink->h,
  175. inlink->sample_aspect_ratio.num,
  176. inlink->sample_aspect_ratio.den,
  177. outlink->w, outlink->h,
  178. outlink->sample_aspect_ratio.num,
  179. outlink->sample_aspect_ratio.den);
  180. return AVERROR(EINVAL);
  181. }
  182. }
  183. }
  184. return 0;
  185. }
  186. #if CONFIG_INTERLEAVE_FILTER
  187. DEFINE_OPTIONS(interleave, AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM);
  188. AVFILTER_DEFINE_CLASS(interleave);
  189. static const AVFilterPad interleave_outputs[] = {
  190. {
  191. .name = "default",
  192. .type = AVMEDIA_TYPE_VIDEO,
  193. .config_props = config_output,
  194. },
  195. { NULL }
  196. };
  197. AVFilter ff_vf_interleave = {
  198. .name = "interleave",
  199. .description = NULL_IF_CONFIG_SMALL("Temporally interleave video inputs."),
  200. .priv_size = sizeof(InterleaveContext),
  201. .init = init,
  202. .uninit = uninit,
  203. .activate = activate,
  204. .outputs = interleave_outputs,
  205. .priv_class = &interleave_class,
  206. .flags = AVFILTER_FLAG_DYNAMIC_INPUTS,
  207. };
  208. #endif
  209. #if CONFIG_AINTERLEAVE_FILTER
  210. DEFINE_OPTIONS(ainterleave, AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM);
  211. AVFILTER_DEFINE_CLASS(ainterleave);
  212. static const AVFilterPad ainterleave_outputs[] = {
  213. {
  214. .name = "default",
  215. .type = AVMEDIA_TYPE_AUDIO,
  216. .config_props = config_output,
  217. },
  218. { NULL }
  219. };
  220. AVFilter ff_af_ainterleave = {
  221. .name = "ainterleave",
  222. .description = NULL_IF_CONFIG_SMALL("Temporally interleave audio inputs."),
  223. .priv_size = sizeof(InterleaveContext),
  224. .init = init,
  225. .uninit = uninit,
  226. .activate = activate,
  227. .outputs = ainterleave_outputs,
  228. .priv_class = &ainterleave_class,
  229. .flags = AVFILTER_FLAG_DYNAMIC_INPUTS,
  230. };
  231. #endif