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.

492 lines
16KB

  1. /*
  2. * Copyright (c) 2008 Vitor Sessak
  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. * memory buffer source filter
  23. */
  24. #include <float.h>
  25. #include "libavutil/avassert.h"
  26. #include "libavutil/channel_layout.h"
  27. #include "libavutil/common.h"
  28. #include "libavutil/frame.h"
  29. #include "libavutil/imgutils.h"
  30. #include "libavutil/internal.h"
  31. #include "libavutil/opt.h"
  32. #include "libavutil/samplefmt.h"
  33. #include "libavutil/timestamp.h"
  34. #include "audio.h"
  35. #include "avfilter.h"
  36. #include "buffersrc.h"
  37. #include "formats.h"
  38. #include "internal.h"
  39. #include "video.h"
  40. typedef struct BufferSourceContext {
  41. const AVClass *class;
  42. AVRational time_base; ///< time_base to set in the output link
  43. AVRational frame_rate; ///< frame_rate to set in the output link
  44. unsigned nb_failed_requests;
  45. /* video only */
  46. int w, h;
  47. enum AVPixelFormat pix_fmt;
  48. AVRational pixel_aspect;
  49. char *sws_param;
  50. AVBufferRef *hw_frames_ctx;
  51. /* audio only */
  52. int sample_rate;
  53. enum AVSampleFormat sample_fmt;
  54. int channels;
  55. uint64_t channel_layout;
  56. char *channel_layout_str;
  57. int eof;
  58. } BufferSourceContext;
  59. #define CHECK_VIDEO_PARAM_CHANGE(s, c, width, height, format, pts)\
  60. if (c->w != width || c->h != height || c->pix_fmt != format) {\
  61. av_log(s, AV_LOG_INFO, "filter context - w: %d h: %d fmt: %d, incoming frame - w: %d h: %d fmt: %d pts_time: %s\n",\
  62. c->w, c->h, c->pix_fmt, width, height, format, av_ts2timestr(pts, &s->outputs[0]->time_base));\
  63. av_log(s, AV_LOG_WARNING, "Changing video frame properties on the fly is not supported by all filters.\n");\
  64. }
  65. #define CHECK_AUDIO_PARAM_CHANGE(s, c, srate, ch_layout, ch_count, format, pts)\
  66. if (c->sample_fmt != format || c->sample_rate != srate ||\
  67. c->channel_layout != ch_layout || c->channels != ch_count) {\
  68. av_log(s, AV_LOG_INFO, "filter context - fmt: %s r: %d layout: %"PRIX64" ch: %d, incoming frame - fmt: %s r: %d layout: %"PRIX64" ch: %d pts_time: %s\n",\
  69. av_get_sample_fmt_name(c->sample_fmt), c->sample_rate, c->channel_layout, c->channels,\
  70. av_get_sample_fmt_name(format), srate, ch_layout, ch_count, av_ts2timestr(pts, &s->outputs[0]->time_base));\
  71. av_log(s, AV_LOG_ERROR, "Changing audio frame properties on the fly is not supported.\n");\
  72. return AVERROR(EINVAL);\
  73. }
  74. AVBufferSrcParameters *av_buffersrc_parameters_alloc(void)
  75. {
  76. AVBufferSrcParameters *par = av_mallocz(sizeof(*par));
  77. if (!par)
  78. return NULL;
  79. par->format = -1;
  80. return par;
  81. }
  82. int av_buffersrc_parameters_set(AVFilterContext *ctx, AVBufferSrcParameters *param)
  83. {
  84. BufferSourceContext *s = ctx->priv;
  85. if (param->time_base.num > 0 && param->time_base.den > 0)
  86. s->time_base = param->time_base;
  87. switch (ctx->filter->outputs[0].type) {
  88. case AVMEDIA_TYPE_VIDEO:
  89. if (param->format != AV_PIX_FMT_NONE) {
  90. s->pix_fmt = param->format;
  91. }
  92. if (param->width > 0)
  93. s->w = param->width;
  94. if (param->height > 0)
  95. s->h = param->height;
  96. if (param->sample_aspect_ratio.num > 0 && param->sample_aspect_ratio.den > 0)
  97. s->pixel_aspect = param->sample_aspect_ratio;
  98. if (param->frame_rate.num > 0 && param->frame_rate.den > 0)
  99. s->frame_rate = param->frame_rate;
  100. if (param->hw_frames_ctx) {
  101. av_buffer_unref(&s->hw_frames_ctx);
  102. s->hw_frames_ctx = av_buffer_ref(param->hw_frames_ctx);
  103. if (!s->hw_frames_ctx)
  104. return AVERROR(ENOMEM);
  105. }
  106. break;
  107. case AVMEDIA_TYPE_AUDIO:
  108. if (param->format != AV_SAMPLE_FMT_NONE) {
  109. s->sample_fmt = param->format;
  110. }
  111. if (param->sample_rate > 0)
  112. s->sample_rate = param->sample_rate;
  113. if (param->channel_layout)
  114. s->channel_layout = param->channel_layout;
  115. break;
  116. default:
  117. return AVERROR_BUG;
  118. }
  119. return 0;
  120. }
  121. int attribute_align_arg av_buffersrc_write_frame(AVFilterContext *ctx, const AVFrame *frame)
  122. {
  123. return av_buffersrc_add_frame_flags(ctx, (AVFrame *)frame,
  124. AV_BUFFERSRC_FLAG_KEEP_REF);
  125. }
  126. int attribute_align_arg av_buffersrc_add_frame(AVFilterContext *ctx, AVFrame *frame)
  127. {
  128. return av_buffersrc_add_frame_flags(ctx, frame, 0);
  129. }
  130. static int av_buffersrc_add_frame_internal(AVFilterContext *ctx,
  131. AVFrame *frame, int flags);
  132. int attribute_align_arg av_buffersrc_add_frame_flags(AVFilterContext *ctx, AVFrame *frame, int flags)
  133. {
  134. AVFrame *copy = NULL;
  135. int ret = 0;
  136. if (frame && frame->channel_layout &&
  137. av_get_channel_layout_nb_channels(frame->channel_layout) != frame->channels) {
  138. av_log(ctx, AV_LOG_ERROR, "Layout indicates a different number of channels than actually present\n");
  139. return AVERROR(EINVAL);
  140. }
  141. if (!(flags & AV_BUFFERSRC_FLAG_KEEP_REF) || !frame)
  142. return av_buffersrc_add_frame_internal(ctx, frame, flags);
  143. if (!(copy = av_frame_alloc()))
  144. return AVERROR(ENOMEM);
  145. ret = av_frame_ref(copy, frame);
  146. if (ret >= 0)
  147. ret = av_buffersrc_add_frame_internal(ctx, copy, flags);
  148. av_frame_free(&copy);
  149. return ret;
  150. }
  151. static int push_frame(AVFilterGraph *graph)
  152. {
  153. int ret;
  154. while (1) {
  155. ret = ff_filter_graph_run_once(graph);
  156. if (ret == AVERROR(EAGAIN))
  157. break;
  158. if (ret < 0)
  159. return ret;
  160. }
  161. return 0;
  162. }
  163. static int av_buffersrc_add_frame_internal(AVFilterContext *ctx,
  164. AVFrame *frame, int flags)
  165. {
  166. BufferSourceContext *s = ctx->priv;
  167. AVFrame *copy;
  168. int refcounted, ret;
  169. s->nb_failed_requests = 0;
  170. if (!frame)
  171. return av_buffersrc_close(ctx, AV_NOPTS_VALUE, flags);
  172. if (s->eof)
  173. return AVERROR(EINVAL);
  174. refcounted = !!frame->buf[0];
  175. if (!(flags & AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT)) {
  176. switch (ctx->outputs[0]->type) {
  177. case AVMEDIA_TYPE_VIDEO:
  178. CHECK_VIDEO_PARAM_CHANGE(ctx, s, frame->width, frame->height,
  179. frame->format, frame->pts);
  180. break;
  181. case AVMEDIA_TYPE_AUDIO:
  182. /* For layouts unknown on input but known on link after negotiation. */
  183. if (!frame->channel_layout)
  184. frame->channel_layout = s->channel_layout;
  185. CHECK_AUDIO_PARAM_CHANGE(ctx, s, frame->sample_rate, frame->channel_layout,
  186. frame->channels, frame->format, frame->pts);
  187. break;
  188. default:
  189. return AVERROR(EINVAL);
  190. }
  191. }
  192. if (!(copy = av_frame_alloc()))
  193. return AVERROR(ENOMEM);
  194. if (refcounted) {
  195. av_frame_move_ref(copy, frame);
  196. } else {
  197. ret = av_frame_ref(copy, frame);
  198. if (ret < 0) {
  199. av_frame_free(&copy);
  200. return ret;
  201. }
  202. }
  203. ret = ff_filter_frame(ctx->outputs[0], copy);
  204. if (ret < 0) {
  205. av_frame_free(&copy);
  206. return ret;
  207. }
  208. if ((flags & AV_BUFFERSRC_FLAG_PUSH)) {
  209. ret = push_frame(ctx->graph);
  210. if (ret < 0)
  211. return ret;
  212. }
  213. return 0;
  214. }
  215. int av_buffersrc_close(AVFilterContext *ctx, int64_t pts, unsigned flags)
  216. {
  217. BufferSourceContext *s = ctx->priv;
  218. s->eof = 1;
  219. ff_avfilter_link_set_in_status(ctx->outputs[0], AVERROR_EOF, pts);
  220. return (flags & AV_BUFFERSRC_FLAG_PUSH) ? push_frame(ctx->graph) : 0;
  221. }
  222. static av_cold int init_video(AVFilterContext *ctx)
  223. {
  224. BufferSourceContext *c = ctx->priv;
  225. if (c->pix_fmt == AV_PIX_FMT_NONE || !c->w || !c->h ||
  226. av_q2d(c->time_base) <= 0) {
  227. av_log(ctx, AV_LOG_ERROR, "Invalid parameters provided.\n");
  228. return AVERROR(EINVAL);
  229. }
  230. av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d pixfmt:%s tb:%d/%d fr:%d/%d sar:%d/%d sws_param:%s\n",
  231. c->w, c->h, av_get_pix_fmt_name(c->pix_fmt),
  232. c->time_base.num, c->time_base.den, c->frame_rate.num, c->frame_rate.den,
  233. c->pixel_aspect.num, c->pixel_aspect.den, (char *)av_x_if_null(c->sws_param, ""));
  234. return 0;
  235. }
  236. unsigned av_buffersrc_get_nb_failed_requests(AVFilterContext *buffer_src)
  237. {
  238. return ((BufferSourceContext *)buffer_src->priv)->nb_failed_requests;
  239. }
  240. #define OFFSET(x) offsetof(BufferSourceContext, x)
  241. #define A AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_AUDIO_PARAM
  242. #define V AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  243. static const AVOption buffer_options[] = {
  244. { "width", NULL, OFFSET(w), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, V },
  245. { "video_size", NULL, OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, .flags = V },
  246. { "height", NULL, OFFSET(h), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, V },
  247. { "pix_fmt", NULL, OFFSET(pix_fmt), AV_OPT_TYPE_PIXEL_FMT, { .i64 = AV_PIX_FMT_NONE }, .min = AV_PIX_FMT_NONE, .max = INT_MAX, .flags = V },
  248. { "sar", "sample aspect ratio", OFFSET(pixel_aspect), AV_OPT_TYPE_RATIONAL, { .dbl = 0 }, 0, DBL_MAX, V },
  249. { "pixel_aspect", "sample aspect ratio", OFFSET(pixel_aspect), AV_OPT_TYPE_RATIONAL, { .dbl = 0 }, 0, DBL_MAX, V },
  250. { "time_base", NULL, OFFSET(time_base), AV_OPT_TYPE_RATIONAL, { .dbl = 0 }, 0, DBL_MAX, V },
  251. { "frame_rate", NULL, OFFSET(frame_rate), AV_OPT_TYPE_RATIONAL, { .dbl = 0 }, 0, DBL_MAX, V },
  252. { "sws_param", NULL, OFFSET(sws_param), AV_OPT_TYPE_STRING, .flags = V },
  253. { NULL },
  254. };
  255. AVFILTER_DEFINE_CLASS(buffer);
  256. static const AVOption abuffer_options[] = {
  257. { "time_base", NULL, OFFSET(time_base), AV_OPT_TYPE_RATIONAL, { .dbl = 0 }, 0, INT_MAX, A },
  258. { "sample_rate", NULL, OFFSET(sample_rate), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, A },
  259. { "sample_fmt", NULL, OFFSET(sample_fmt), AV_OPT_TYPE_SAMPLE_FMT, { .i64 = AV_SAMPLE_FMT_NONE }, .min = AV_SAMPLE_FMT_NONE, .max = INT_MAX, .flags = A },
  260. { "channel_layout", NULL, OFFSET(channel_layout_str), AV_OPT_TYPE_STRING, .flags = A },
  261. { "channels", NULL, OFFSET(channels), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, A },
  262. { NULL },
  263. };
  264. AVFILTER_DEFINE_CLASS(abuffer);
  265. static av_cold int init_audio(AVFilterContext *ctx)
  266. {
  267. BufferSourceContext *s = ctx->priv;
  268. int ret = 0;
  269. if (s->sample_fmt == AV_SAMPLE_FMT_NONE) {
  270. av_log(ctx, AV_LOG_ERROR, "Sample format was not set or was invalid\n");
  271. return AVERROR(EINVAL);
  272. }
  273. if (s->channel_layout_str || s->channel_layout) {
  274. int n;
  275. if (!s->channel_layout) {
  276. s->channel_layout = av_get_channel_layout(s->channel_layout_str);
  277. if (!s->channel_layout) {
  278. av_log(ctx, AV_LOG_ERROR, "Invalid channel layout %s.\n",
  279. s->channel_layout_str);
  280. return AVERROR(EINVAL);
  281. }
  282. }
  283. n = av_get_channel_layout_nb_channels(s->channel_layout);
  284. if (s->channels) {
  285. if (n != s->channels) {
  286. av_log(ctx, AV_LOG_ERROR,
  287. "Mismatching channel count %d and layout '%s' "
  288. "(%d channels)\n",
  289. s->channels, s->channel_layout_str, n);
  290. return AVERROR(EINVAL);
  291. }
  292. }
  293. s->channels = n;
  294. } else if (!s->channels) {
  295. av_log(ctx, AV_LOG_ERROR, "Neither number of channels nor "
  296. "channel layout specified\n");
  297. return AVERROR(EINVAL);
  298. }
  299. if (!s->time_base.num)
  300. s->time_base = (AVRational){1, s->sample_rate};
  301. av_log(ctx, AV_LOG_VERBOSE,
  302. "tb:%d/%d samplefmt:%s samplerate:%d chlayout:%s\n",
  303. s->time_base.num, s->time_base.den, av_get_sample_fmt_name(s->sample_fmt),
  304. s->sample_rate, s->channel_layout_str);
  305. return ret;
  306. }
  307. static av_cold void uninit(AVFilterContext *ctx)
  308. {
  309. BufferSourceContext *s = ctx->priv;
  310. av_buffer_unref(&s->hw_frames_ctx);
  311. }
  312. static int query_formats(AVFilterContext *ctx)
  313. {
  314. BufferSourceContext *c = ctx->priv;
  315. AVFilterChannelLayouts *channel_layouts = NULL;
  316. AVFilterFormats *formats = NULL;
  317. AVFilterFormats *samplerates = NULL;
  318. int ret;
  319. switch (ctx->outputs[0]->type) {
  320. case AVMEDIA_TYPE_VIDEO:
  321. if ((ret = ff_add_format (&formats, c->pix_fmt)) < 0 ||
  322. (ret = ff_set_common_formats (ctx , formats )) < 0)
  323. return ret;
  324. break;
  325. case AVMEDIA_TYPE_AUDIO:
  326. if ((ret = ff_add_format (&formats , c->sample_fmt )) < 0 ||
  327. (ret = ff_set_common_formats (ctx , formats )) < 0 ||
  328. (ret = ff_add_format (&samplerates, c->sample_rate)) < 0 ||
  329. (ret = ff_set_common_samplerates (ctx , samplerates )) < 0)
  330. return ret;
  331. if ((ret = ff_add_channel_layout(&channel_layouts,
  332. c->channel_layout ? c->channel_layout :
  333. FF_COUNT2LAYOUT(c->channels))) < 0)
  334. return ret;
  335. if ((ret = ff_set_common_channel_layouts(ctx, channel_layouts)) < 0)
  336. return ret;
  337. break;
  338. default:
  339. return AVERROR(EINVAL);
  340. }
  341. return 0;
  342. }
  343. static int config_props(AVFilterLink *link)
  344. {
  345. BufferSourceContext *c = link->src->priv;
  346. switch (link->type) {
  347. case AVMEDIA_TYPE_VIDEO:
  348. link->w = c->w;
  349. link->h = c->h;
  350. link->sample_aspect_ratio = c->pixel_aspect;
  351. if (c->hw_frames_ctx) {
  352. link->hw_frames_ctx = av_buffer_ref(c->hw_frames_ctx);
  353. if (!link->hw_frames_ctx)
  354. return AVERROR(ENOMEM);
  355. }
  356. break;
  357. case AVMEDIA_TYPE_AUDIO:
  358. if (!c->channel_layout)
  359. c->channel_layout = link->channel_layout;
  360. break;
  361. default:
  362. return AVERROR(EINVAL);
  363. }
  364. link->time_base = c->time_base;
  365. link->frame_rate = c->frame_rate;
  366. return 0;
  367. }
  368. static int request_frame(AVFilterLink *link)
  369. {
  370. BufferSourceContext *c = link->src->priv;
  371. if (c->eof)
  372. return AVERROR_EOF;
  373. c->nb_failed_requests++;
  374. return AVERROR(EAGAIN);
  375. }
  376. static const AVFilterPad avfilter_vsrc_buffer_outputs[] = {
  377. {
  378. .name = "default",
  379. .type = AVMEDIA_TYPE_VIDEO,
  380. .request_frame = request_frame,
  381. .config_props = config_props,
  382. },
  383. { NULL }
  384. };
  385. AVFilter ff_vsrc_buffer = {
  386. .name = "buffer",
  387. .description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them accessible to the filterchain."),
  388. .priv_size = sizeof(BufferSourceContext),
  389. .query_formats = query_formats,
  390. .init = init_video,
  391. .uninit = uninit,
  392. .inputs = NULL,
  393. .outputs = avfilter_vsrc_buffer_outputs,
  394. .priv_class = &buffer_class,
  395. };
  396. static const AVFilterPad avfilter_asrc_abuffer_outputs[] = {
  397. {
  398. .name = "default",
  399. .type = AVMEDIA_TYPE_AUDIO,
  400. .request_frame = request_frame,
  401. .config_props = config_props,
  402. },
  403. { NULL }
  404. };
  405. AVFilter ff_asrc_abuffer = {
  406. .name = "abuffer",
  407. .description = NULL_IF_CONFIG_SMALL("Buffer audio frames, and make them accessible to the filterchain."),
  408. .priv_size = sizeof(BufferSourceContext),
  409. .query_formats = query_formats,
  410. .init = init_audio,
  411. .uninit = uninit,
  412. .inputs = NULL,
  413. .outputs = avfilter_asrc_abuffer_outputs,
  414. .priv_class = &abuffer_class,
  415. };