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.

223 lines
8.1KB

  1. /*
  2. * Copyright (c) 2013 Georg Martius <georg dot martius at web dot de>
  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. #define DEFAULT_RESULT_NAME "transforms.trf"
  21. #include <vid.stab/libvidstab.h>
  22. #include "libavutil/common.h"
  23. #include "libavutil/opt.h"
  24. #include "libavutil/imgutils.h"
  25. #include "avfilter.h"
  26. #include "internal.h"
  27. #include "vidstabutils.h"
  28. typedef struct StabData {
  29. const AVClass *class;
  30. VSMotionDetect md;
  31. VSMotionDetectConfig conf;
  32. char *result;
  33. FILE *f;
  34. } StabData;
  35. #define OFFSET(x) offsetof(StabData, x)
  36. #define OFFSETC(x) (offsetof(StabData, conf)+offsetof(VSMotionDetectConfig, x))
  37. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  38. static const AVOption vidstabdetect_options[] = {
  39. {"result", "path to the file used to write the transforms", OFFSET(result), AV_OPT_TYPE_STRING, {.str = DEFAULT_RESULT_NAME}, .flags = FLAGS},
  40. {"shakiness", "how shaky is the video and how quick is the camera?"
  41. " 1: little (fast) 10: very strong/quick (slow)", OFFSETC(shakiness), AV_OPT_TYPE_INT, {.i64 = 5}, 1, 10, FLAGS},
  42. {"accuracy", "(>=shakiness) 1: low 15: high (slow)", OFFSETC(accuracy), AV_OPT_TYPE_INT, {.i64 = 15}, 1, 15, FLAGS},
  43. {"stepsize", "region around minimum is scanned with 1 pixel resolution", OFFSETC(stepSize), AV_OPT_TYPE_INT, {.i64 = 6}, 1, 32, FLAGS},
  44. {"mincontrast", "below this contrast a field is discarded (0-1)", OFFSETC(contrastThreshold), AV_OPT_TYPE_DOUBLE, {.dbl = 0.25}, 0.0, 1.0, FLAGS},
  45. {"show", "0: draw nothing; 1,2: show fields and transforms", OFFSETC(show), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 2, FLAGS},
  46. {"tripod", "virtual tripod mode (if >0): motion is compared to a reference"
  47. " reference frame (frame # is the value)", OFFSETC(virtualTripod), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, FLAGS},
  48. {NULL}
  49. };
  50. AVFILTER_DEFINE_CLASS(vidstabdetect);
  51. static av_cold int init(AVFilterContext *ctx)
  52. {
  53. StabData *s = ctx->priv;
  54. ff_vs_init();
  55. s->class = &vidstabdetect_class;
  56. av_log(ctx, AV_LOG_VERBOSE, "vidstabdetect filter: init %s\n", LIBVIDSTAB_VERSION);
  57. return 0;
  58. }
  59. static av_cold void uninit(AVFilterContext *ctx)
  60. {
  61. StabData *s = ctx->priv;
  62. VSMotionDetect *md = &(s->md);
  63. if (s->f) {
  64. fclose(s->f);
  65. s->f = NULL;
  66. }
  67. vsMotionDetectionCleanup(md);
  68. }
  69. static int query_formats(AVFilterContext *ctx)
  70. {
  71. // If you add something here also add it in vidstabutils.c
  72. static const enum AVPixelFormat pix_fmts[] = {
  73. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P,
  74. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUVA420P,
  75. AV_PIX_FMT_YUV440P, AV_PIX_FMT_GRAY8,
  76. AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24, AV_PIX_FMT_RGBA,
  77. AV_PIX_FMT_NONE
  78. };
  79. AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
  80. if (!fmts_list)
  81. return AVERROR(ENOMEM);
  82. return ff_set_common_formats(ctx, fmts_list);
  83. }
  84. static int config_input(AVFilterLink *inlink)
  85. {
  86. AVFilterContext *ctx = inlink->dst;
  87. StabData *s = ctx->priv;
  88. VSMotionDetect* md = &(s->md);
  89. VSFrameInfo fi;
  90. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  91. int is_planar = desc->flags & AV_PIX_FMT_FLAG_PLANAR;
  92. vsFrameInfoInit(&fi, inlink->w, inlink->h,
  93. ff_av2vs_pixfmt(ctx, inlink->format));
  94. if (!is_planar && fi.bytesPerPixel != av_get_bits_per_pixel(desc)/8) {
  95. av_log(ctx, AV_LOG_ERROR, "pixel-format error: wrong bits/per/pixel, please report a BUG");
  96. return AVERROR(EINVAL);
  97. }
  98. if (fi.log2ChromaW != desc->log2_chroma_w) {
  99. av_log(ctx, AV_LOG_ERROR, "pixel-format error: log2_chroma_w, please report a BUG");
  100. return AVERROR(EINVAL);
  101. }
  102. if (fi.log2ChromaH != desc->log2_chroma_h) {
  103. av_log(ctx, AV_LOG_ERROR, "pixel-format error: log2_chroma_h, please report a BUG");
  104. return AVERROR(EINVAL);
  105. }
  106. // set values that are not initialized by the options
  107. s->conf.algo = 1;
  108. s->conf.modName = "vidstabdetect";
  109. if (vsMotionDetectInit(md, &s->conf, &fi) != VS_OK) {
  110. av_log(ctx, AV_LOG_ERROR, "initialization of Motion Detection failed, please report a BUG");
  111. return AVERROR(EINVAL);
  112. }
  113. vsMotionDetectGetConfig(&s->conf, md);
  114. av_log(ctx, AV_LOG_INFO, "Video stabilization settings (pass 1/2):\n");
  115. av_log(ctx, AV_LOG_INFO, " shakiness = %d\n", s->conf.shakiness);
  116. av_log(ctx, AV_LOG_INFO, " accuracy = %d\n", s->conf.accuracy);
  117. av_log(ctx, AV_LOG_INFO, " stepsize = %d\n", s->conf.stepSize);
  118. av_log(ctx, AV_LOG_INFO, " mincontrast = %f\n", s->conf.contrastThreshold);
  119. av_log(ctx, AV_LOG_INFO, " tripod = %d\n", s->conf.virtualTripod);
  120. av_log(ctx, AV_LOG_INFO, " show = %d\n", s->conf.show);
  121. av_log(ctx, AV_LOG_INFO, " result = %s\n", s->result);
  122. s->f = fopen(s->result, "w");
  123. if (s->f == NULL) {
  124. av_log(ctx, AV_LOG_ERROR, "cannot open transform file %s\n", s->result);
  125. return AVERROR(EINVAL);
  126. } else {
  127. if (vsPrepareFile(md, s->f) != VS_OK) {
  128. av_log(ctx, AV_LOG_ERROR, "cannot write to transform file %s\n", s->result);
  129. return AVERROR(EINVAL);
  130. }
  131. }
  132. return 0;
  133. }
  134. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  135. {
  136. AVFilterContext *ctx = inlink->dst;
  137. StabData *s = ctx->priv;
  138. VSMotionDetect *md = &(s->md);
  139. LocalMotions localmotions;
  140. AVFilterLink *outlink = inlink->dst->outputs[0];
  141. VSFrame frame;
  142. int plane;
  143. if (s->conf.show > 0 && !av_frame_is_writable(in))
  144. av_frame_make_writable(in);
  145. for (plane = 0; plane < md->fi.planes; plane++) {
  146. frame.data[plane] = in->data[plane];
  147. frame.linesize[plane] = in->linesize[plane];
  148. }
  149. if (vsMotionDetection(md, &localmotions, &frame) != VS_OK) {
  150. av_log(ctx, AV_LOG_ERROR, "motion detection failed");
  151. return AVERROR(AVERROR_EXTERNAL);
  152. } else {
  153. if (vsWriteToFile(md, s->f, &localmotions) != VS_OK) {
  154. int ret = AVERROR(errno);
  155. av_log(ctx, AV_LOG_ERROR, "cannot write to transform file");
  156. return ret;
  157. }
  158. vs_vector_del(&localmotions);
  159. }
  160. return ff_filter_frame(outlink, in);
  161. }
  162. static const AVFilterPad avfilter_vf_vidstabdetect_inputs[] = {
  163. {
  164. .name = "default",
  165. .type = AVMEDIA_TYPE_VIDEO,
  166. .filter_frame = filter_frame,
  167. .config_props = config_input,
  168. },
  169. { NULL }
  170. };
  171. static const AVFilterPad avfilter_vf_vidstabdetect_outputs[] = {
  172. {
  173. .name = "default",
  174. .type = AVMEDIA_TYPE_VIDEO,
  175. },
  176. { NULL }
  177. };
  178. AVFilter ff_vf_vidstabdetect = {
  179. .name = "vidstabdetect",
  180. .description = NULL_IF_CONFIG_SMALL("Extract relative transformations, "
  181. "pass 1 of 2 for stabilization "
  182. "(see vidstabtransform for pass 2)."),
  183. .priv_size = sizeof(StabData),
  184. .init = init,
  185. .uninit = uninit,
  186. .query_formats = query_formats,
  187. .inputs = avfilter_vf_vidstabdetect_inputs,
  188. .outputs = avfilter_vf_vidstabdetect_outputs,
  189. .priv_class = &vidstabdetect_class,
  190. };