vf_telecine.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. /*
  2. * Copyright (c) 2012 Rudolf Polzer
  3. * Copyright (c) 2013 Paul B Mahol
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file telecine filter, heavily based from mpv-player:TOOLS/vf_dlopen/telecine.c by
  23. * Rudolf Polzer.
  24. */
  25. #include "libavutil/avstring.h"
  26. #include "libavutil/imgutils.h"
  27. #include "libavutil/opt.h"
  28. #include "libavutil/pixdesc.h"
  29. #include "avfilter.h"
  30. #include "formats.h"
  31. #include "internal.h"
  32. #include "video.h"
  33. typedef struct {
  34. const AVClass *class;
  35. int first_field;
  36. char *pattern;
  37. unsigned int pattern_pos;
  38. AVRational pts;
  39. double ts_unit;
  40. int out_cnt;
  41. int occupied;
  42. int nb_planes;
  43. int planeheight[4];
  44. int stride[4];
  45. AVFrame *frame[5];
  46. AVFrame *temp;
  47. } TelecineContext;
  48. #define OFFSET(x) offsetof(TelecineContext, x)
  49. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  50. static const AVOption telecine_options[] = {
  51. {"first_field", "select first field", OFFSET(first_field), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS, "field"},
  52. {"top", "select top field first", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "field"},
  53. {"t", "select top field first", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "field"},
  54. {"bottom", "select bottom field first", 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "field"},
  55. {"b", "select bottom field first", 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "field"},
  56. {"pattern", "pattern that describe for how many fields a frame is to be displayed", OFFSET(pattern), AV_OPT_TYPE_STRING, {.str="23"}, 0, 0, FLAGS},
  57. {NULL}
  58. };
  59. AVFILTER_DEFINE_CLASS(telecine);
  60. static av_cold int init(AVFilterContext *ctx)
  61. {
  62. TelecineContext *s = ctx->priv;
  63. const char *p;
  64. int max = 0;
  65. if (!strlen(s->pattern)) {
  66. av_log(ctx, AV_LOG_ERROR, "No pattern provided.\n");
  67. return AVERROR_INVALIDDATA;
  68. }
  69. for (p = s->pattern; *p; p++) {
  70. if (!av_isdigit(*p)) {
  71. av_log(ctx, AV_LOG_ERROR, "Provided pattern includes non-numeric characters.\n");
  72. return AVERROR_INVALIDDATA;
  73. }
  74. max = FFMAX(*p - '0', max);
  75. s->pts.num += 2;
  76. s->pts.den += *p - '0';
  77. }
  78. s->out_cnt = (max + 1) / 2;
  79. av_log(ctx, AV_LOG_INFO, "Telecine pattern %s yields up to %d frames per frame, pts advance factor: %d/%d\n",
  80. s->pattern, s->out_cnt, s->pts.num, s->pts.den);
  81. return 0;
  82. }
  83. static int query_formats(AVFilterContext *ctx)
  84. {
  85. AVFilterFormats *pix_fmts = NULL;
  86. int fmt;
  87. for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
  88. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
  89. if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL ||
  90. desc->flags & AV_PIX_FMT_FLAG_PAL ||
  91. desc->flags & AV_PIX_FMT_FLAG_BITSTREAM))
  92. ff_add_format(&pix_fmts, fmt);
  93. }
  94. ff_set_common_formats(ctx, pix_fmts);
  95. return 0;
  96. }
  97. static int config_input(AVFilterLink *inlink)
  98. {
  99. TelecineContext *s = inlink->dst->priv;
  100. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  101. int i, ret;
  102. s->temp = ff_get_video_buffer(inlink, inlink->w, inlink->h);
  103. if (!s->temp)
  104. return AVERROR(ENOMEM);
  105. for (i = 0; i < s->out_cnt; i++) {
  106. s->frame[i] = ff_get_video_buffer(inlink, inlink->w, inlink->h);
  107. if (!s->frame[i])
  108. return AVERROR(ENOMEM);
  109. }
  110. if ((ret = av_image_fill_linesizes(s->stride, inlink->format, inlink->w)) < 0)
  111. return ret;
  112. s->planeheight[1] = s->planeheight[2] = FF_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
  113. s->planeheight[0] = s->planeheight[3] = inlink->h;
  114. s->nb_planes = av_pix_fmt_count_planes(inlink->format);
  115. return 0;
  116. }
  117. static int config_output(AVFilterLink *outlink)
  118. {
  119. AVFilterContext *ctx = outlink->src;
  120. TelecineContext *s = ctx->priv;
  121. const AVFilterLink *inlink = ctx->inputs[0];
  122. AVRational fps = inlink->frame_rate;
  123. if (!fps.num || !fps.den) {
  124. av_log(ctx, AV_LOG_ERROR, "The input needs a constant frame rate; "
  125. "current rate of %d/%d is invalid\n", fps.num, fps.den);
  126. return AVERROR(EINVAL);
  127. }
  128. fps = av_mul_q(fps, av_inv_q(s->pts));
  129. av_log(ctx, AV_LOG_VERBOSE, "FPS: %d/%d -> %d/%d\n",
  130. inlink->frame_rate.num, inlink->frame_rate.den, fps.num, fps.den);
  131. outlink->flags |= FF_LINK_FLAG_REQUEST_LOOP;
  132. outlink->frame_rate = fps;
  133. outlink->time_base = av_mul_q(inlink->time_base, s->pts);
  134. av_log(ctx, AV_LOG_VERBOSE, "TB: %d/%d -> %d/%d\n",
  135. inlink->time_base.num, inlink->time_base.den, outlink->time_base.num, outlink->time_base.den);
  136. s->ts_unit = av_q2d(av_inv_q(av_mul_q(fps, outlink->time_base)));
  137. return 0;
  138. }
  139. static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
  140. {
  141. AVFilterContext *ctx = inlink->dst;
  142. AVFilterLink *outlink = ctx->outputs[0];
  143. TelecineContext *s = ctx->priv;
  144. int i, len, ret = 0, nout = 0;
  145. len = s->pattern[s->pattern_pos] - '0';
  146. s->pattern_pos++;
  147. if (!s->pattern[s->pattern_pos])
  148. s->pattern_pos = 0;
  149. if (!len) { // do not output any field from this frame
  150. av_frame_free(&inpicref);
  151. return 0;
  152. }
  153. if (s->occupied) {
  154. for (i = 0; i < s->nb_planes; i++) {
  155. // fill in the EARLIER field from the buffered pic
  156. av_image_copy_plane(s->frame[nout]->data[i] + s->frame[nout]->linesize[i] * s->first_field,
  157. s->frame[nout]->linesize[i] * 2,
  158. s->temp->data[i] + s->temp->linesize[i] * s->first_field,
  159. s->temp->linesize[i] * 2,
  160. s->stride[i],
  161. (s->planeheight[i] - s->first_field + 1) / 2);
  162. // fill in the LATER field from the new pic
  163. av_image_copy_plane(s->frame[nout]->data[i] + s->frame[nout]->linesize[i] * !s->first_field,
  164. s->frame[nout]->linesize[i] * 2,
  165. inpicref->data[i] + inpicref->linesize[i] * !s->first_field,
  166. inpicref->linesize[i] * 2,
  167. s->stride[i],
  168. (s->planeheight[i] - !s->first_field + 1) / 2);
  169. }
  170. nout++;
  171. len--;
  172. s->occupied = 0;
  173. }
  174. while (len >= 2) {
  175. // output THIS image as-is
  176. for (i = 0; i < s->nb_planes; i++)
  177. av_image_copy_plane(s->frame[nout]->data[i], s->frame[nout]->linesize[i],
  178. inpicref->data[i], inpicref->linesize[i],
  179. s->stride[i],
  180. s->planeheight[i]);
  181. nout++;
  182. len -= 2;
  183. }
  184. if (len >= 1) {
  185. // copy THIS image to the buffer, we need it later
  186. for (i = 0; i < s->nb_planes; i++)
  187. av_image_copy_plane(s->temp->data[i], s->temp->linesize[i],
  188. inpicref->data[i], inpicref->linesize[i],
  189. s->stride[i],
  190. s->planeheight[i]);
  191. s->occupied = 1;
  192. }
  193. for (i = 0; i < nout; i++) {
  194. AVFrame *frame = av_frame_clone(s->frame[i]);
  195. if (!frame) {
  196. av_frame_free(&inpicref);
  197. return AVERROR(ENOMEM);
  198. }
  199. frame->pts = outlink->frame_count * s->ts_unit;
  200. ret = ff_filter_frame(outlink, frame);
  201. }
  202. av_frame_free(&inpicref);
  203. return ret;
  204. }
  205. static av_cold void uninit(AVFilterContext *ctx)
  206. {
  207. TelecineContext *s = ctx->priv;
  208. int i;
  209. av_frame_free(&s->temp);
  210. for (i = 0; i < s->out_cnt; i++)
  211. av_frame_free(&s->frame[i]);
  212. }
  213. static const AVFilterPad telecine_inputs[] = {
  214. {
  215. .name = "default",
  216. .type = AVMEDIA_TYPE_VIDEO,
  217. .filter_frame = filter_frame,
  218. .config_props = config_input,
  219. },
  220. { NULL }
  221. };
  222. static const AVFilterPad telecine_outputs[] = {
  223. {
  224. .name = "default",
  225. .type = AVMEDIA_TYPE_VIDEO,
  226. .config_props = config_output,
  227. },
  228. { NULL }
  229. };
  230. AVFilter ff_vf_telecine = {
  231. .name = "telecine",
  232. .description = NULL_IF_CONFIG_SMALL("Apply a telecine pattern."),
  233. .priv_size = sizeof(TelecineContext),
  234. .priv_class = &telecine_class,
  235. .init = init,
  236. .uninit = uninit,
  237. .query_formats = query_formats,
  238. .inputs = telecine_inputs,
  239. .outputs = telecine_outputs,
  240. };