vf_vidstabdetect.c 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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 {
  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. vsFrameInfoInit(&fi, inlink->w, inlink->h,
  92. ff_av2vs_pixfmt(ctx, inlink->format));
  93. if (fi.bytesPerPixel != av_get_bits_per_pixel(desc)/8) {
  94. av_log(ctx, AV_LOG_ERROR, "pixel-format error: wrong bits/per/pixel, please report a BUG");
  95. return AVERROR(EINVAL);
  96. }
  97. if (fi.log2ChromaW != desc->log2_chroma_w) {
  98. av_log(ctx, AV_LOG_ERROR, "pixel-format error: log2_chroma_w, please report a BUG");
  99. return AVERROR(EINVAL);
  100. }
  101. if (fi.log2ChromaH != desc->log2_chroma_h) {
  102. av_log(ctx, AV_LOG_ERROR, "pixel-format error: log2_chroma_h, please report a BUG");
  103. return AVERROR(EINVAL);
  104. }
  105. // set values that are not initialized by the options
  106. s->conf.algo = 1;
  107. s->conf.modName = "vidstabdetect";
  108. if (vsMotionDetectInit(md, &s->conf, &fi) != VS_OK) {
  109. av_log(ctx, AV_LOG_ERROR, "initialization of Motion Detection failed, please report a BUG");
  110. return AVERROR(EINVAL);
  111. }
  112. vsMotionDetectGetConfig(&s->conf, md);
  113. av_log(ctx, AV_LOG_INFO, "Video stabilization settings (pass 1/2):\n");
  114. av_log(ctx, AV_LOG_INFO, " shakiness = %d\n", s->conf.shakiness);
  115. av_log(ctx, AV_LOG_INFO, " accuracy = %d\n", s->conf.accuracy);
  116. av_log(ctx, AV_LOG_INFO, " stepsize = %d\n", s->conf.stepSize);
  117. av_log(ctx, AV_LOG_INFO, " mincontrast = %f\n", s->conf.contrastThreshold);
  118. av_log(ctx, AV_LOG_INFO, " tripod = %d\n", s->conf.virtualTripod);
  119. av_log(ctx, AV_LOG_INFO, " show = %d\n", s->conf.show);
  120. av_log(ctx, AV_LOG_INFO, " result = %s\n", s->result);
  121. s->f = fopen(s->result, "w");
  122. if (s->f == NULL) {
  123. av_log(ctx, AV_LOG_ERROR, "cannot open transform file %s\n", s->result);
  124. return AVERROR(EINVAL);
  125. } else {
  126. if (vsPrepareFile(md, s->f) != VS_OK) {
  127. av_log(ctx, AV_LOG_ERROR, "cannot write to transform file %s\n", s->result);
  128. return AVERROR(EINVAL);
  129. }
  130. }
  131. return 0;
  132. }
  133. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  134. {
  135. AVFilterContext *ctx = inlink->dst;
  136. StabData *s = ctx->priv;
  137. VSMotionDetect *md = &(s->md);
  138. LocalMotions localmotions;
  139. AVFilterLink *outlink = inlink->dst->outputs[0];
  140. VSFrame frame;
  141. int plane;
  142. if (s->conf.show > 0 && !av_frame_is_writable(in))
  143. av_frame_make_writable(in);
  144. for (plane = 0; plane < md->fi.planes; plane++) {
  145. frame.data[plane] = in->data[plane];
  146. frame.linesize[plane] = in->linesize[plane];
  147. }
  148. if (vsMotionDetection(md, &localmotions, &frame) != VS_OK) {
  149. av_log(ctx, AV_LOG_ERROR, "motion detection failed");
  150. return AVERROR(AVERROR_EXTERNAL);
  151. } else {
  152. if (vsWriteToFile(md, s->f, &localmotions) != VS_OK) {
  153. int ret = AVERROR(errno);
  154. av_log(ctx, AV_LOG_ERROR, "cannot write to transform file");
  155. return ret;
  156. }
  157. vs_vector_del(&localmotions);
  158. }
  159. return ff_filter_frame(outlink, in);
  160. }
  161. static const AVFilterPad avfilter_vf_vidstabdetect_inputs[] = {
  162. {
  163. .name = "default",
  164. .type = AVMEDIA_TYPE_VIDEO,
  165. .filter_frame = filter_frame,
  166. .config_props = config_input,
  167. },
  168. { NULL }
  169. };
  170. static const AVFilterPad avfilter_vf_vidstabdetect_outputs[] = {
  171. {
  172. .name = "default",
  173. .type = AVMEDIA_TYPE_VIDEO,
  174. },
  175. { NULL }
  176. };
  177. AVFilter ff_vf_vidstabdetect = {
  178. .name = "vidstabdetect",
  179. .description = NULL_IF_CONFIG_SMALL("Extract relative transformations, "
  180. "pass 1 of 2 for stabilization "
  181. "(see vidstabtransform for pass 2)."),
  182. .priv_size = sizeof(StabData),
  183. .init = init,
  184. .uninit = uninit,
  185. .query_formats = query_formats,
  186. .inputs = avfilter_vf_vidstabdetect_inputs,
  187. .outputs = avfilter_vf_vidstabdetect_outputs,
  188. .priv_class = &vidstabdetect_class,
  189. };