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.

449 lines
14KB

  1. /*
  2. * Copyright (C) 2006-2011 Michael Niedermayer <michaelni@gmx.at>
  3. * 2010 James Darnley <james.darnley@gmail.com>
  4. *
  5. * FFmpeg is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * FFmpeg is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18. */
  19. #include "libavutil/avassert.h"
  20. #include "libavutil/cpu.h"
  21. #include "libavutil/common.h"
  22. #include "libavutil/opt.h"
  23. #include "libavutil/pixdesc.h"
  24. #include "avfilter.h"
  25. #include "formats.h"
  26. #include "internal.h"
  27. #include "video.h"
  28. #include "yadif.h"
  29. #undef NDEBUG
  30. #include <assert.h>
  31. #define PERM_RWP AV_PERM_WRITE | AV_PERM_PRESERVE | AV_PERM_REUSE
  32. #define CHECK(j)\
  33. { int score = FFABS(cur[mrefs-1+(j)] - cur[prefs-1-(j)])\
  34. + FFABS(cur[mrefs +(j)] - cur[prefs -(j)])\
  35. + FFABS(cur[mrefs+1+(j)] - cur[prefs+1-(j)]);\
  36. if (score < spatial_score) {\
  37. spatial_score= score;\
  38. spatial_pred= (cur[mrefs +(j)] + cur[prefs -(j)])>>1;\
  39. #define FILTER \
  40. for (x = 0; x < w; x++) { \
  41. int c = cur[mrefs]; \
  42. int d = (prev2[0] + next2[0])>>1; \
  43. int e = cur[prefs]; \
  44. int temporal_diff0 = FFABS(prev2[0] - next2[0]); \
  45. int temporal_diff1 =(FFABS(prev[mrefs] - c) + FFABS(prev[prefs] - e) )>>1; \
  46. int temporal_diff2 =(FFABS(next[mrefs] - c) + FFABS(next[prefs] - e) )>>1; \
  47. int diff = FFMAX3(temporal_diff0 >> 1, temporal_diff1, temporal_diff2); \
  48. int spatial_pred = (c+e) >> 1; \
  49. int spatial_score = FFABS(cur[mrefs - 1] - cur[prefs - 1]) + FFABS(c-e) \
  50. + FFABS(cur[mrefs + 1] - cur[prefs + 1]) - 1; \
  51. \
  52. CHECK(-1) CHECK(-2) }} }} \
  53. CHECK( 1) CHECK( 2) }} }} \
  54. \
  55. if (mode < 2) { \
  56. int b = (prev2[2 * mrefs] + next2[2 * mrefs])>>1; \
  57. int f = (prev2[2 * prefs] + next2[2 * prefs])>>1; \
  58. int max = FFMAX3(d - e, d - c, FFMIN(b - c, f - e)); \
  59. int min = FFMIN3(d - e, d - c, FFMAX(b - c, f - e)); \
  60. \
  61. diff = FFMAX3(diff, min, -max); \
  62. } \
  63. \
  64. if (spatial_pred > d + diff) \
  65. spatial_pred = d + diff; \
  66. else if (spatial_pred < d - diff) \
  67. spatial_pred = d - diff; \
  68. \
  69. dst[0] = spatial_pred; \
  70. \
  71. dst++; \
  72. cur++; \
  73. prev++; \
  74. next++; \
  75. prev2++; \
  76. next2++; \
  77. }
  78. static void filter_line_c(uint8_t *dst,
  79. uint8_t *prev, uint8_t *cur, uint8_t *next,
  80. int w, int prefs, int mrefs, int parity, int mode)
  81. {
  82. int x;
  83. uint8_t *prev2 = parity ? prev : cur ;
  84. uint8_t *next2 = parity ? cur : next;
  85. FILTER
  86. }
  87. static void filter_line_c_16bit(uint16_t *dst,
  88. uint16_t *prev, uint16_t *cur, uint16_t *next,
  89. int w, int prefs, int mrefs, int parity,
  90. int mode)
  91. {
  92. int x;
  93. uint16_t *prev2 = parity ? prev : cur ;
  94. uint16_t *next2 = parity ? cur : next;
  95. mrefs /= 2;
  96. prefs /= 2;
  97. FILTER
  98. }
  99. static void filter(AVFilterContext *ctx, AVFilterBufferRef *dstpic,
  100. int parity, int tff)
  101. {
  102. YADIFContext *yadif = ctx->priv;
  103. int y, i;
  104. for (i = 0; i < yadif->csp->nb_components; i++) {
  105. int w = dstpic->video->w;
  106. int h = dstpic->video->h;
  107. int refs = yadif->cur->linesize[i];
  108. int absrefs = FFABS(refs);
  109. int df = (yadif->csp->comp[i].depth_minus1 + 8) / 8;
  110. if (i == 1 || i == 2) {
  111. /* Why is this not part of the per-plane description thing? */
  112. w >>= yadif->csp->log2_chroma_w;
  113. h >>= yadif->csp->log2_chroma_h;
  114. }
  115. if(yadif->temp_line_size < absrefs) {
  116. av_free(yadif->temp_line);
  117. yadif->temp_line = av_mallocz(2*64 + 5*absrefs);
  118. yadif->temp_line_size = absrefs;
  119. }
  120. for (y = 0; y < h; y++) {
  121. if ((y ^ parity) & 1) {
  122. uint8_t *prev = &yadif->prev->data[i][y * refs];
  123. uint8_t *cur = &yadif->cur ->data[i][y * refs];
  124. uint8_t *next = &yadif->next->data[i][y * refs];
  125. uint8_t *dst = &dstpic->data[i][y * dstpic->linesize[i]];
  126. int mode = y == 1 || y + 2 == h ? 2 : yadif->mode;
  127. int prefs = y+1<h ? refs : -refs;
  128. int mrefs = y ?-refs : refs;
  129. if(y<=1 || y+2>=h) {
  130. uint8_t *tmp = yadif->temp_line + 64 + 2*absrefs;
  131. if(mode<2)
  132. memcpy(tmp+2*mrefs, cur+2*mrefs, w*df);
  133. memcpy(tmp+mrefs, cur+mrefs, w*df);
  134. memcpy(tmp , cur , w*df);
  135. if(prefs != mrefs) {
  136. memcpy(tmp+prefs, cur+prefs, w*df);
  137. if(mode<2)
  138. memcpy(tmp+2*prefs, cur+2*prefs, w*df);
  139. }
  140. cur = tmp;
  141. }
  142. yadif->filter_line(dst, prev, cur, next, w,
  143. prefs, mrefs,
  144. parity ^ tff, mode);
  145. } else {
  146. memcpy(&dstpic->data[i][y * dstpic->linesize[i]],
  147. &yadif->cur->data[i][y * refs], w * df);
  148. }
  149. }
  150. }
  151. emms_c();
  152. }
  153. static int return_frame(AVFilterContext *ctx, int is_second)
  154. {
  155. YADIFContext *yadif = ctx->priv;
  156. AVFilterLink *link = ctx->outputs[0];
  157. int tff, ret;
  158. if (yadif->parity == -1) {
  159. tff = yadif->cur->video->interlaced ?
  160. yadif->cur->video->top_field_first : 1;
  161. } else {
  162. tff = yadif->parity ^ 1;
  163. }
  164. if (is_second) {
  165. yadif->out = ff_get_video_buffer(link, PERM_RWP, link->w, link->h);
  166. if (!yadif->out)
  167. return AVERROR(ENOMEM);
  168. avfilter_copy_buffer_ref_props(yadif->out, yadif->cur);
  169. yadif->out->video->interlaced = 0;
  170. }
  171. if (!yadif->csp)
  172. yadif->csp = av_pix_fmt_desc_get(link->format);
  173. if (yadif->csp->comp[0].depth_minus1 / 8 == 1)
  174. yadif->filter_line = (void*)filter_line_c_16bit;
  175. filter(ctx, yadif->out, tff ^ !is_second, tff);
  176. if (is_second) {
  177. int64_t cur_pts = yadif->cur->pts;
  178. int64_t next_pts = yadif->next->pts;
  179. if (next_pts != AV_NOPTS_VALUE && cur_pts != AV_NOPTS_VALUE) {
  180. yadif->out->pts = cur_pts + next_pts;
  181. } else {
  182. yadif->out->pts = AV_NOPTS_VALUE;
  183. }
  184. }
  185. ret = ff_filter_frame(ctx->outputs[0], yadif->out);
  186. yadif->frame_pending = (yadif->mode&1) && !is_second;
  187. return ret;
  188. }
  189. static int filter_frame(AVFilterLink *link, AVFilterBufferRef *picref)
  190. {
  191. AVFilterContext *ctx = link->dst;
  192. YADIFContext *yadif = ctx->priv;
  193. av_assert0(picref);
  194. if (yadif->frame_pending)
  195. return_frame(ctx, 1);
  196. if (yadif->prev)
  197. avfilter_unref_buffer(yadif->prev);
  198. yadif->prev = yadif->cur;
  199. yadif->cur = yadif->next;
  200. yadif->next = picref;
  201. if (!yadif->cur)
  202. return 0;
  203. if (yadif->deint && !yadif->cur->video->interlaced) {
  204. yadif->out = avfilter_ref_buffer(yadif->cur, ~AV_PERM_WRITE);
  205. if (!yadif->out)
  206. return AVERROR(ENOMEM);
  207. avfilter_unref_bufferp(&yadif->prev);
  208. if (yadif->out->pts != AV_NOPTS_VALUE)
  209. yadif->out->pts *= 2;
  210. return ff_filter_frame(ctx->outputs[0], yadif->out);
  211. }
  212. if (!yadif->prev &&
  213. !(yadif->prev = avfilter_ref_buffer(yadif->cur, ~AV_PERM_WRITE)))
  214. return AVERROR(ENOMEM);
  215. yadif->out = ff_get_video_buffer(ctx->outputs[0], PERM_RWP,
  216. link->w, link->h);
  217. if (!yadif->out)
  218. return AVERROR(ENOMEM);
  219. avfilter_copy_buffer_ref_props(yadif->out, yadif->cur);
  220. yadif->out->video->interlaced = 0;
  221. if (yadif->out->pts != AV_NOPTS_VALUE)
  222. yadif->out->pts *= 2;
  223. return return_frame(ctx, 0);
  224. }
  225. static int request_frame(AVFilterLink *link)
  226. {
  227. AVFilterContext *ctx = link->src;
  228. YADIFContext *yadif = ctx->priv;
  229. if (yadif->frame_pending) {
  230. return_frame(ctx, 1);
  231. return 0;
  232. }
  233. do {
  234. int ret;
  235. if (yadif->eof)
  236. return AVERROR_EOF;
  237. ret = ff_request_frame(link->src->inputs[0]);
  238. if (ret == AVERROR_EOF && yadif->cur) {
  239. AVFilterBufferRef *next = avfilter_ref_buffer(yadif->next, ~AV_PERM_WRITE);
  240. if (!next)
  241. return AVERROR(ENOMEM);
  242. next->pts = yadif->next->pts * 2 - yadif->cur->pts;
  243. filter_frame(link->src->inputs[0], next);
  244. yadif->eof = 1;
  245. } else if (ret < 0) {
  246. return ret;
  247. }
  248. } while (!yadif->cur);
  249. return 0;
  250. }
  251. #define OFFSET(x) offsetof(YADIFContext, x)
  252. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  253. #define CONST(name, help, val, unit) { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, INT_MIN, INT_MAX, FLAGS, unit }
  254. static const AVOption yadif_options[] = {
  255. { "mode", "specify the interlacing mode", OFFSET(mode), AV_OPT_TYPE_INT, {.i64=YADIF_MODE_SEND_FRAME}, 0, 3, FLAGS, "mode"},
  256. CONST("send_frame", "send one frame for each frame", YADIF_MODE_SEND_FRAME, "mode"),
  257. CONST("send_field", "send one frame for each field", YADIF_MODE_SEND_FIELD, "mode"),
  258. CONST("send_frame_nospatial", "send one frame for each frame, but skip spatial interlacing check", YADIF_MODE_SEND_FRAME_NOSPATIAL, "mode"),
  259. CONST("send_field_nospatial", "send one frame for each field, but skip spatial interlacing check", YADIF_MODE_SEND_FIELD_NOSPATIAL, "mode"),
  260. { "parity", "specify the assumed picture field parity", OFFSET(parity), AV_OPT_TYPE_INT, {.i64=YADIF_PARITY_AUTO}, -1, 1, FLAGS, "parity" },
  261. CONST("tff", "assume top field first", YADIF_PARITY_TFF, "parity"),
  262. CONST("bff", "assume bottom field first", YADIF_PARITY_BFF, "parity"),
  263. CONST("auto", "auto detect parity", YADIF_PARITY_AUTO, "parity"),
  264. { "deint", "specify which frames to deinterlace", OFFSET(deint), AV_OPT_TYPE_INT, {.i64=YADIF_DEINT_ALL}, 0, 1, FLAGS, "deint" },
  265. CONST("all", "deinterlace all frames", YADIF_DEINT_ALL, "deint"),
  266. CONST("interlaced", "only deinterlace frames marked as interlaced", YADIF_DEINT_INTERLACED, "deint"),
  267. {NULL},
  268. };
  269. AVFILTER_DEFINE_CLASS(yadif);
  270. static av_cold void uninit(AVFilterContext *ctx)
  271. {
  272. YADIFContext *yadif = ctx->priv;
  273. avfilter_unref_bufferp(&yadif->prev);
  274. avfilter_unref_bufferp(&yadif->cur );
  275. avfilter_unref_bufferp(&yadif->next);
  276. av_freep(&yadif->temp_line); yadif->temp_line_size = 0;
  277. av_opt_free(yadif);
  278. }
  279. static int query_formats(AVFilterContext *ctx)
  280. {
  281. static const enum AVPixelFormat pix_fmts[] = {
  282. AV_PIX_FMT_YUV420P,
  283. AV_PIX_FMT_YUV422P,
  284. AV_PIX_FMT_YUV444P,
  285. AV_PIX_FMT_YUV410P,
  286. AV_PIX_FMT_YUV411P,
  287. AV_PIX_FMT_GRAY8,
  288. AV_PIX_FMT_YUVJ420P,
  289. AV_PIX_FMT_YUVJ422P,
  290. AV_PIX_FMT_YUVJ444P,
  291. AV_NE( AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_GRAY16LE ),
  292. AV_PIX_FMT_YUV440P,
  293. AV_PIX_FMT_YUVJ440P,
  294. AV_NE( AV_PIX_FMT_YUV420P10BE, AV_PIX_FMT_YUV420P10LE ),
  295. AV_NE( AV_PIX_FMT_YUV422P10BE, AV_PIX_FMT_YUV422P10LE ),
  296. AV_NE( AV_PIX_FMT_YUV444P10BE, AV_PIX_FMT_YUV444P10LE ),
  297. AV_NE( AV_PIX_FMT_YUV420P16BE, AV_PIX_FMT_YUV420P16LE ),
  298. AV_NE( AV_PIX_FMT_YUV422P16BE, AV_PIX_FMT_YUV422P16LE ),
  299. AV_NE( AV_PIX_FMT_YUV444P16BE, AV_PIX_FMT_YUV444P16LE ),
  300. AV_PIX_FMT_YUVA420P,
  301. AV_PIX_FMT_YUVA422P,
  302. AV_PIX_FMT_YUVA444P,
  303. AV_PIX_FMT_NONE
  304. };
  305. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  306. return 0;
  307. }
  308. static av_cold int init(AVFilterContext *ctx, const char *args)
  309. {
  310. YADIFContext *yadif = ctx->priv;
  311. static const char *shorthand[] = { "mode", "parity", "enable", NULL };
  312. int ret;
  313. yadif->csp = NULL;
  314. yadif->class = &yadif_class;
  315. av_opt_set_defaults(yadif);
  316. if ((ret = av_opt_set_from_string(yadif, args, shorthand, "=", ":")) < 0)
  317. return ret;
  318. yadif->filter_line = filter_line_c;
  319. if (ARCH_X86)
  320. ff_yadif_init_x86(yadif);
  321. av_log(ctx, AV_LOG_VERBOSE, "mode:%d parity:%d deint:%d\n",
  322. yadif->mode, yadif->parity, yadif->deint);
  323. return 0;
  324. }
  325. static int config_props(AVFilterLink *link)
  326. {
  327. AVFilterContext *ctx = link->src;
  328. YADIFContext *yadif = ctx->priv;
  329. link->time_base.num = link->src->inputs[0]->time_base.num;
  330. link->time_base.den = link->src->inputs[0]->time_base.den * 2;
  331. link->w = link->src->inputs[0]->w;
  332. link->h = link->src->inputs[0]->h;
  333. if(yadif->mode&1)
  334. link->frame_rate = av_mul_q(link->src->inputs[0]->frame_rate, (AVRational){2,1});
  335. if (link->w < 3 || link->h < 3) {
  336. av_log(ctx, AV_LOG_ERROR, "Video of less than 3 columns or lines is not supported\n");
  337. return AVERROR(EINVAL);
  338. }
  339. return 0;
  340. }
  341. static const AVFilterPad avfilter_vf_yadif_inputs[] = {
  342. {
  343. .name = "default",
  344. .type = AVMEDIA_TYPE_VIDEO,
  345. .filter_frame = filter_frame,
  346. .min_perms = AV_PERM_PRESERVE,
  347. },
  348. { NULL }
  349. };
  350. static const AVFilterPad avfilter_vf_yadif_outputs[] = {
  351. {
  352. .name = "default",
  353. .type = AVMEDIA_TYPE_VIDEO,
  354. .request_frame = request_frame,
  355. .config_props = config_props,
  356. },
  357. { NULL }
  358. };
  359. AVFilter avfilter_vf_yadif = {
  360. .name = "yadif",
  361. .description = NULL_IF_CONFIG_SMALL("Deinterlace the input image."),
  362. .priv_size = sizeof(YADIFContext),
  363. .init = init,
  364. .uninit = uninit,
  365. .query_formats = query_formats,
  366. .inputs = avfilter_vf_yadif_inputs,
  367. .outputs = avfilter_vf_yadif_outputs,
  368. .priv_class = &yadif_class,
  369. };