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.

457 lines
15KB

  1. /*
  2. * Copyright (C) 2012 Mark Himsley
  3. *
  4. * get_scene_score() Copyright (c) 2011 Stefano Sabatini
  5. * taken from libavfilter/vf_select.c
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. /**
  24. * @file
  25. * filter for upsampling or downsampling a progressive source
  26. */
  27. #define DEBUG
  28. #include "libavutil/avassert.h"
  29. #include "libavutil/imgutils.h"
  30. #include "libavutil/internal.h"
  31. #include "libavutil/opt.h"
  32. #include "libavutil/pixdesc.h"
  33. #include "avfilter.h"
  34. #include "internal.h"
  35. #include "video.h"
  36. #include "filters.h"
  37. #include "framerate.h"
  38. #include "scene_sad.h"
  39. #define OFFSET(x) offsetof(FrameRateContext, x)
  40. #define V AV_OPT_FLAG_VIDEO_PARAM
  41. #define F AV_OPT_FLAG_FILTERING_PARAM
  42. #define FRAMERATE_FLAG_SCD 01
  43. static const AVOption framerate_options[] = {
  44. {"fps", "required output frames per second rate", OFFSET(dest_frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str="50"}, 0, INT_MAX, V|F },
  45. {"interp_start", "point to start linear interpolation", OFFSET(interp_start), AV_OPT_TYPE_INT, {.i64=15}, 0, 255, V|F },
  46. {"interp_end", "point to end linear interpolation", OFFSET(interp_end), AV_OPT_TYPE_INT, {.i64=240}, 0, 255, V|F },
  47. {"scene", "scene change level", OFFSET(scene_score), AV_OPT_TYPE_DOUBLE, {.dbl=8.2}, 0, 100., V|F },
  48. {"flags", "set flags", OFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64=1}, 0, INT_MAX, V|F, "flags" },
  49. {"scene_change_detect", "enable scene change detection", 0, AV_OPT_TYPE_CONST, {.i64=FRAMERATE_FLAG_SCD}, INT_MIN, INT_MAX, V|F, "flags" },
  50. {"scd", "enable scene change detection", 0, AV_OPT_TYPE_CONST, {.i64=FRAMERATE_FLAG_SCD}, INT_MIN, INT_MAX, V|F, "flags" },
  51. {NULL}
  52. };
  53. AVFILTER_DEFINE_CLASS(framerate);
  54. static double get_scene_score(AVFilterContext *ctx, AVFrame *crnt, AVFrame *next)
  55. {
  56. FrameRateContext *s = ctx->priv;
  57. double ret = 0;
  58. ff_dlog(ctx, "get_scene_score()\n");
  59. if (crnt->height == next->height &&
  60. crnt->width == next->width) {
  61. uint64_t sad;
  62. double mafd, diff;
  63. ff_dlog(ctx, "get_scene_score() process\n");
  64. s->sad(crnt->data[0], crnt->linesize[0], next->data[0], next->linesize[0], crnt->width, crnt->height, &sad);
  65. emms_c();
  66. mafd = (double)sad * 100.0 / (crnt->width * crnt->height) / (1 << s->bitdepth);
  67. diff = fabs(mafd - s->prev_mafd);
  68. ret = av_clipf(FFMIN(mafd, diff), 0, 100.0);
  69. s->prev_mafd = mafd;
  70. }
  71. ff_dlog(ctx, "get_scene_score() result is:%f\n", ret);
  72. return ret;
  73. }
  74. typedef struct ThreadData {
  75. AVFrame *copy_src1, *copy_src2;
  76. uint16_t src1_factor, src2_factor;
  77. } ThreadData;
  78. static int filter_slice(AVFilterContext *ctx, void *arg, int job, int nb_jobs)
  79. {
  80. FrameRateContext *s = ctx->priv;
  81. ThreadData *td = arg;
  82. AVFrame *work = s->work;
  83. AVFrame *src1 = td->copy_src1;
  84. AVFrame *src2 = td->copy_src2;
  85. uint16_t src1_factor = td->src1_factor;
  86. uint16_t src2_factor = td->src2_factor;
  87. int plane;
  88. for (plane = 0; plane < 4 && src1->data[plane] && src2->data[plane]; plane++) {
  89. const int start = (s->height[plane] * job ) / nb_jobs;
  90. const int end = (s->height[plane] * (job+1)) / nb_jobs;
  91. uint8_t *src1_data = src1->data[plane] + start * src1->linesize[plane];
  92. uint8_t *src2_data = src2->data[plane] + start * src2->linesize[plane];
  93. uint8_t *dst_data = work->data[plane] + start * work->linesize[plane];
  94. s->blend(src1_data, src1->linesize[plane], src2_data, src2->linesize[plane],
  95. dst_data, work->linesize[plane], s->line_size[plane], end - start,
  96. src1_factor, src2_factor, s->blend_factor_max >> 1);
  97. }
  98. return 0;
  99. }
  100. static int blend_frames(AVFilterContext *ctx, int interpolate)
  101. {
  102. FrameRateContext *s = ctx->priv;
  103. AVFilterLink *outlink = ctx->outputs[0];
  104. double interpolate_scene_score = 0;
  105. if ((s->flags & FRAMERATE_FLAG_SCD)) {
  106. if (s->score >= 0.0)
  107. interpolate_scene_score = s->score;
  108. else
  109. interpolate_scene_score = s->score = get_scene_score(ctx, s->f0, s->f1);
  110. ff_dlog(ctx, "blend_frames() interpolate scene score:%f\n", interpolate_scene_score);
  111. }
  112. // decide if the shot-change detection allows us to blend two frames
  113. if (interpolate_scene_score < s->scene_score) {
  114. ThreadData td;
  115. td.copy_src1 = s->f0;
  116. td.copy_src2 = s->f1;
  117. td.src2_factor = interpolate;
  118. td.src1_factor = s->blend_factor_max - td.src2_factor;
  119. // get work-space for output frame
  120. s->work = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  121. if (!s->work)
  122. return AVERROR(ENOMEM);
  123. av_frame_copy_props(s->work, s->f0);
  124. ff_dlog(ctx, "blend_frames() INTERPOLATE to create work frame\n");
  125. ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(FFMAX(1, outlink->h >> 2), ff_filter_get_nb_threads(ctx)));
  126. return 1;
  127. }
  128. return 0;
  129. }
  130. static int process_work_frame(AVFilterContext *ctx)
  131. {
  132. FrameRateContext *s = ctx->priv;
  133. int64_t work_pts;
  134. int64_t interpolate, interpolate8;
  135. int ret;
  136. if (!s->f1)
  137. return 0;
  138. if (!s->f0 && !s->flush)
  139. return 0;
  140. work_pts = s->start_pts + av_rescale_q(s->n, av_inv_q(s->dest_frame_rate), s->dest_time_base);
  141. if (work_pts >= s->pts1 && !s->flush)
  142. return 0;
  143. if (!s->f0) {
  144. av_assert1(s->flush);
  145. s->work = s->f1;
  146. s->f1 = NULL;
  147. } else {
  148. if (work_pts >= s->pts1 + s->delta && s->flush)
  149. return 0;
  150. interpolate = av_rescale(work_pts - s->pts0, s->blend_factor_max, s->delta);
  151. interpolate8 = av_rescale(work_pts - s->pts0, 256, s->delta);
  152. ff_dlog(ctx, "process_work_frame() interpolate: %"PRId64"/256\n", interpolate8);
  153. if (interpolate >= s->blend_factor_max || interpolate8 > s->interp_end) {
  154. s->work = av_frame_clone(s->f1);
  155. } else if (interpolate <= 0 || interpolate8 < s->interp_start) {
  156. s->work = av_frame_clone(s->f0);
  157. } else {
  158. ret = blend_frames(ctx, interpolate);
  159. if (ret < 0)
  160. return ret;
  161. if (ret == 0)
  162. s->work = av_frame_clone(interpolate > (s->blend_factor_max >> 1) ? s->f1 : s->f0);
  163. }
  164. }
  165. if (!s->work)
  166. return AVERROR(ENOMEM);
  167. s->work->pts = work_pts;
  168. s->n++;
  169. return 1;
  170. }
  171. static av_cold int init(AVFilterContext *ctx)
  172. {
  173. FrameRateContext *s = ctx->priv;
  174. s->start_pts = AV_NOPTS_VALUE;
  175. return 0;
  176. }
  177. static av_cold void uninit(AVFilterContext *ctx)
  178. {
  179. FrameRateContext *s = ctx->priv;
  180. av_frame_free(&s->f0);
  181. av_frame_free(&s->f1);
  182. }
  183. static int query_formats(AVFilterContext *ctx)
  184. {
  185. static const enum AVPixelFormat pix_fmts[] = {
  186. AV_PIX_FMT_YUV410P,
  187. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUVJ411P,
  188. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUVJ420P,
  189. AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVJ422P,
  190. AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUVJ440P,
  191. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUVJ444P,
  192. AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV420P12,
  193. AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV422P12,
  194. AV_PIX_FMT_YUV444P9, AV_PIX_FMT_YUV444P10, AV_PIX_FMT_YUV444P12,
  195. AV_PIX_FMT_NONE
  196. };
  197. AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
  198. if (!fmts_list)
  199. return AVERROR(ENOMEM);
  200. return ff_set_common_formats(ctx, fmts_list);
  201. }
  202. #define BLEND_FRAME_FUNC(nbits) \
  203. static void blend_frames##nbits##_c(BLEND_FUNC_PARAMS) \
  204. { \
  205. int line, pixel; \
  206. uint##nbits##_t *dstw = (uint##nbits##_t *)dst; \
  207. uint##nbits##_t *src1w = (uint##nbits##_t *)src1; \
  208. uint##nbits##_t *src2w = (uint##nbits##_t *)src2; \
  209. int bytes = nbits / 8; \
  210. width /= bytes; \
  211. src1_linesize /= bytes; \
  212. src2_linesize /= bytes; \
  213. dst_linesize /= bytes; \
  214. for (line = 0; line < height; line++) { \
  215. for (pixel = 0; pixel < width; pixel++) \
  216. dstw[pixel] = ((src1w[pixel] * factor1) + \
  217. (src2w[pixel] * factor2) + half) \
  218. >> BLEND_FACTOR_DEPTH(nbits); \
  219. src1w += src1_linesize; \
  220. src2w += src2_linesize; \
  221. dstw += dst_linesize; \
  222. } \
  223. }
  224. BLEND_FRAME_FUNC(8)
  225. BLEND_FRAME_FUNC(16)
  226. void ff_framerate_init(FrameRateContext *s)
  227. {
  228. if (s->bitdepth == 8) {
  229. s->blend_factor_max = 1 << BLEND_FACTOR_DEPTH(8);
  230. s->blend = blend_frames8_c;
  231. } else {
  232. s->blend_factor_max = 1 << BLEND_FACTOR_DEPTH(16);
  233. s->blend = blend_frames16_c;
  234. }
  235. if (ARCH_X86)
  236. ff_framerate_init_x86(s);
  237. }
  238. static int config_input(AVFilterLink *inlink)
  239. {
  240. AVFilterContext *ctx = inlink->dst;
  241. FrameRateContext *s = ctx->priv;
  242. const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(inlink->format);
  243. int plane;
  244. s->vsub = pix_desc->log2_chroma_h;
  245. for (plane = 0; plane < 4; plane++) {
  246. s->line_size[plane] = av_image_get_linesize(inlink->format, inlink->w, plane);
  247. s->height[plane] = inlink->h >> ((plane == 1 || plane == 2) ? s->vsub : 0);
  248. }
  249. s->bitdepth = pix_desc->comp[0].depth;
  250. s->sad = ff_scene_sad_get_fn(s->bitdepth == 8 ? 8 : 16);
  251. if (!s->sad)
  252. return AVERROR(EINVAL);
  253. s->srce_time_base = inlink->time_base;
  254. ff_framerate_init(s);
  255. return 0;
  256. }
  257. static int activate(AVFilterContext *ctx)
  258. {
  259. int ret, status;
  260. AVFilterLink *inlink = ctx->inputs[0];
  261. AVFilterLink *outlink = ctx->outputs[0];
  262. FrameRateContext *s = ctx->priv;
  263. AVFrame *inpicref;
  264. int64_t pts;
  265. FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink);
  266. retry:
  267. ret = process_work_frame(ctx);
  268. if (ret < 0)
  269. return ret;
  270. else if (ret == 1)
  271. return ff_filter_frame(outlink, s->work);
  272. ret = ff_inlink_consume_frame(inlink, &inpicref);
  273. if (ret < 0)
  274. return ret;
  275. if (inpicref) {
  276. if (inpicref->interlaced_frame)
  277. av_log(ctx, AV_LOG_WARNING, "Interlaced frame found - the output will not be correct.\n");
  278. if (inpicref->pts == AV_NOPTS_VALUE) {
  279. av_log(ctx, AV_LOG_WARNING, "Ignoring frame without PTS.\n");
  280. av_frame_free(&inpicref);
  281. }
  282. }
  283. if (inpicref) {
  284. pts = av_rescale_q(inpicref->pts, s->srce_time_base, s->dest_time_base);
  285. if (s->f1 && pts == s->pts1) {
  286. av_log(ctx, AV_LOG_WARNING, "Ignoring frame with same PTS.\n");
  287. av_frame_free(&inpicref);
  288. }
  289. }
  290. if (inpicref) {
  291. av_frame_free(&s->f0);
  292. s->f0 = s->f1;
  293. s->pts0 = s->pts1;
  294. s->f1 = inpicref;
  295. s->pts1 = pts;
  296. s->delta = s->pts1 - s->pts0;
  297. s->score = -1.0;
  298. if (s->delta < 0) {
  299. av_log(ctx, AV_LOG_WARNING, "PTS discontinuity.\n");
  300. s->start_pts = s->pts1;
  301. s->n = 0;
  302. av_frame_free(&s->f0);
  303. }
  304. if (s->start_pts == AV_NOPTS_VALUE)
  305. s->start_pts = s->pts1;
  306. goto retry;
  307. }
  308. if (ff_inlink_acknowledge_status(inlink, &status, &pts)) {
  309. if (!s->flush) {
  310. s->flush = 1;
  311. goto retry;
  312. }
  313. ff_outlink_set_status(outlink, status, pts);
  314. return 0;
  315. }
  316. FF_FILTER_FORWARD_WANTED(outlink, inlink);
  317. return FFERROR_NOT_READY;
  318. }
  319. static int config_output(AVFilterLink *outlink)
  320. {
  321. AVFilterContext *ctx = outlink->src;
  322. FrameRateContext *s = ctx->priv;
  323. int exact;
  324. ff_dlog(ctx, "config_output()\n");
  325. ff_dlog(ctx,
  326. "config_output() input time base:%u/%u (%f)\n",
  327. ctx->inputs[0]->time_base.num,ctx->inputs[0]->time_base.den,
  328. av_q2d(ctx->inputs[0]->time_base));
  329. // make sure timebase is small enough to hold the framerate
  330. exact = av_reduce(&s->dest_time_base.num, &s->dest_time_base.den,
  331. av_gcd((int64_t)s->srce_time_base.num * s->dest_frame_rate.num,
  332. (int64_t)s->srce_time_base.den * s->dest_frame_rate.den ),
  333. (int64_t)s->srce_time_base.den * s->dest_frame_rate.num, INT_MAX);
  334. av_log(ctx, AV_LOG_INFO,
  335. "time base:%u/%u -> %u/%u exact:%d\n",
  336. s->srce_time_base.num, s->srce_time_base.den,
  337. s->dest_time_base.num, s->dest_time_base.den, exact);
  338. if (!exact) {
  339. av_log(ctx, AV_LOG_WARNING, "Timebase conversion is not exact\n");
  340. }
  341. outlink->frame_rate = s->dest_frame_rate;
  342. outlink->time_base = s->dest_time_base;
  343. ff_dlog(ctx,
  344. "config_output() output time base:%u/%u (%f) w:%d h:%d\n",
  345. outlink->time_base.num, outlink->time_base.den,
  346. av_q2d(outlink->time_base),
  347. outlink->w, outlink->h);
  348. av_log(ctx, AV_LOG_INFO, "fps -> fps:%u/%u scene score:%f interpolate start:%d end:%d\n",
  349. s->dest_frame_rate.num, s->dest_frame_rate.den,
  350. s->scene_score, s->interp_start, s->interp_end);
  351. return 0;
  352. }
  353. static const AVFilterPad framerate_inputs[] = {
  354. {
  355. .name = "default",
  356. .type = AVMEDIA_TYPE_VIDEO,
  357. .config_props = config_input,
  358. },
  359. { NULL }
  360. };
  361. static const AVFilterPad framerate_outputs[] = {
  362. {
  363. .name = "default",
  364. .type = AVMEDIA_TYPE_VIDEO,
  365. .config_props = config_output,
  366. },
  367. { NULL }
  368. };
  369. AVFilter ff_vf_framerate = {
  370. .name = "framerate",
  371. .description = NULL_IF_CONFIG_SMALL("Upsamples or downsamples progressive source between specified frame rates."),
  372. .priv_size = sizeof(FrameRateContext),
  373. .priv_class = &framerate_class,
  374. .init = init,
  375. .uninit = uninit,
  376. .query_formats = query_formats,
  377. .inputs = framerate_inputs,
  378. .outputs = framerate_outputs,
  379. .flags = AVFILTER_FLAG_SLICE_THREADS,
  380. .activate = activate,
  381. };