libavfilter/vf_telecine.c
661e284b
 /*
  * Copyright (c) 2012 Rudolf Polzer
  * Copyright (c) 2013 Paul B Mahol
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
  * @file telecine filter, heavily based from mpv-player:TOOLS/vf_dlopen/telecine.c by
  * Rudolf Polzer.
  */
 
 #include "libavutil/avstring.h"
 #include "libavutil/imgutils.h"
 #include "libavutil/opt.h"
 #include "libavutil/pixdesc.h"
 #include "avfilter.h"
 #include "formats.h"
 #include "internal.h"
 #include "video.h"
 
ed93ed5e
 typedef struct TelecineContext {
661e284b
     const AVClass *class;
     int first_field;
     char *pattern;
     unsigned int pattern_pos;
1301aa55
     int64_t start_time;
661e284b
 
     AVRational pts;
dbce8cda
     AVRational ts_unit;
661e284b
     int out_cnt;
     int occupied;
 
     int nb_planes;
     int planeheight[4];
     int stride[4];
 
     AVFrame *frame[5];
     AVFrame *temp;
 } TelecineContext;
 
 #define OFFSET(x) offsetof(TelecineContext, x)
 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
 
 static const AVOption telecine_options[] = {
     {"first_field", "select first field", OFFSET(first_field), AV_OPT_TYPE_INT,   {.i64=0}, 0, 1, FLAGS, "field"},
         {"top",    "select top field first",                0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "field"},
         {"t",      "select top field first",                0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "field"},
         {"bottom", "select bottom field first",             0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "field"},
         {"b",      "select bottom field first",             0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "field"},
     {"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},
     {NULL}
 };
 
 AVFILTER_DEFINE_CLASS(telecine);
 
fd6228e6
 static av_cold int init(AVFilterContext *ctx)
661e284b
 {
87577f55
     TelecineContext *s = ctx->priv;
661e284b
     const char *p;
     int max = 0;
 
87577f55
     if (!strlen(s->pattern)) {
661e284b
         av_log(ctx, AV_LOG_ERROR, "No pattern provided.\n");
         return AVERROR_INVALIDDATA;
     }
 
87577f55
     for (p = s->pattern; *p; p++) {
661e284b
         if (!av_isdigit(*p)) {
             av_log(ctx, AV_LOG_ERROR, "Provided pattern includes non-numeric characters.\n");
             return AVERROR_INVALIDDATA;
         }
 
         max = FFMAX(*p - '0', max);
87577f55
         s->pts.num += 2;
         s->pts.den += *p - '0';
661e284b
     }
 
1301aa55
     s->start_time = AV_NOPTS_VALUE;
 
87577f55
     s->out_cnt = (max + 1) / 2;
661e284b
     av_log(ctx, AV_LOG_INFO, "Telecine pattern %s yields up to %d frames per frame, pts advance factor: %d/%d\n",
87577f55
            s->pattern, s->out_cnt, s->pts.num, s->pts.den);
661e284b
 
     return 0;
 }
 
 static int query_formats(AVFilterContext *ctx)
 {
     AVFilterFormats *pix_fmts = NULL;
6aaac24d
     int fmt, ret;
661e284b
 
ee0c91cc
     for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
661e284b
         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
50b90d5e
         if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL ||
               desc->flags & AV_PIX_FMT_FLAG_PAL     ||
6aaac24d
               desc->flags & AV_PIX_FMT_FLAG_BITSTREAM) &&
             (ret = ff_add_format(&pix_fmts, fmt)) < 0)
             return ret;
661e284b
     }
 
a0854c08
     return ff_set_common_formats(ctx, pix_fmts);
661e284b
 }
 
 static int config_input(AVFilterLink *inlink)
 {
87577f55
     TelecineContext *s = inlink->dst->priv;
661e284b
     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
     int i, ret;
 
87577f55
     s->temp = ff_get_video_buffer(inlink, inlink->w, inlink->h);
     if (!s->temp)
661e284b
         return AVERROR(ENOMEM);
87577f55
     for (i = 0; i < s->out_cnt; i++) {
         s->frame[i] = ff_get_video_buffer(inlink, inlink->w, inlink->h);
         if (!s->frame[i])
661e284b
             return AVERROR(ENOMEM);
     }
 
87577f55
     if ((ret = av_image_fill_linesizes(s->stride, inlink->format, inlink->w)) < 0)
661e284b
         return ret;
 
21f94684
     s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
87577f55
     s->planeheight[0] = s->planeheight[3] = inlink->h;
661e284b
 
87577f55
     s->nb_planes = av_pix_fmt_count_planes(inlink->format);
661e284b
 
     return 0;
 }
 
 static int config_output(AVFilterLink *outlink)
 {
     AVFilterContext *ctx = outlink->src;
87577f55
     TelecineContext *s = ctx->priv;
661e284b
     const AVFilterLink *inlink = ctx->inputs[0];
     AVRational fps = inlink->frame_rate;
 
     if (!fps.num || !fps.den) {
         av_log(ctx, AV_LOG_ERROR, "The input needs a constant frame rate; "
                "current rate of %d/%d is invalid\n", fps.num, fps.den);
         return AVERROR(EINVAL);
     }
87577f55
     fps = av_mul_q(fps, av_inv_q(s->pts));
661e284b
     av_log(ctx, AV_LOG_VERBOSE, "FPS: %d/%d -> %d/%d\n",
            inlink->frame_rate.num, inlink->frame_rate.den, fps.num, fps.den);
 
     outlink->frame_rate = fps;
87577f55
     outlink->time_base = av_mul_q(inlink->time_base, s->pts);
00acfdd9
     av_log(ctx, AV_LOG_VERBOSE, "TB: %d/%d -> %d/%d\n",
            inlink->time_base.num, inlink->time_base.den, outlink->time_base.num, outlink->time_base.den);
661e284b
 
dbce8cda
     s->ts_unit = av_inv_q(av_mul_q(fps, outlink->time_base));
661e284b
 
     return 0;
 }
 
 static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
 {
     AVFilterContext *ctx = inlink->dst;
     AVFilterLink *outlink = ctx->outputs[0];
87577f55
     TelecineContext *s = ctx->priv;
661e284b
     int i, len, ret = 0, nout = 0;
 
1301aa55
     if (s->start_time == AV_NOPTS_VALUE)
         s->start_time = inpicref->pts;
 
87577f55
     len = s->pattern[s->pattern_pos] - '0';
661e284b
 
87577f55
     s->pattern_pos++;
     if (!s->pattern[s->pattern_pos])
         s->pattern_pos = 0;
661e284b
 
     if (!len) { // do not output any field from this frame
         av_frame_free(&inpicref);
         return 0;
     }
 
87577f55
     if (s->occupied) {
fa0097e0
         av_frame_make_writable(s->frame[nout]);
87577f55
         for (i = 0; i < s->nb_planes; i++) {
661e284b
             // fill in the EARLIER field from the buffered pic
87577f55
             av_image_copy_plane(s->frame[nout]->data[i] + s->frame[nout]->linesize[i] * s->first_field,
                                 s->frame[nout]->linesize[i] * 2,
                                 s->temp->data[i] + s->temp->linesize[i] * s->first_field,
                                 s->temp->linesize[i] * 2,
                                 s->stride[i],
                                 (s->planeheight[i] - s->first_field + 1) / 2);
661e284b
             // fill in the LATER field from the new pic
87577f55
             av_image_copy_plane(s->frame[nout]->data[i] + s->frame[nout]->linesize[i] * !s->first_field,
                                 s->frame[nout]->linesize[i] * 2,
                                 inpicref->data[i] + inpicref->linesize[i] * !s->first_field,
661e284b
                                 inpicref->linesize[i] * 2,
87577f55
                                 s->stride[i],
                                 (s->planeheight[i] - !s->first_field + 1) / 2);
661e284b
         }
         nout++;
         len--;
87577f55
         s->occupied = 0;
661e284b
     }
 
     while (len >= 2) {
         // output THIS image as-is
fa0097e0
         av_frame_make_writable(s->frame[nout]);
87577f55
         for (i = 0; i < s->nb_planes; i++)
             av_image_copy_plane(s->frame[nout]->data[i], s->frame[nout]->linesize[i],
661e284b
                                 inpicref->data[i], inpicref->linesize[i],
87577f55
                                 s->stride[i],
                                 s->planeheight[i]);
661e284b
         nout++;
         len -= 2;
     }
 
     if (len >= 1) {
         // copy THIS image to the buffer, we need it later
87577f55
         for (i = 0; i < s->nb_planes; i++)
             av_image_copy_plane(s->temp->data[i], s->temp->linesize[i],
661e284b
                                 inpicref->data[i], inpicref->linesize[i],
87577f55
                                 s->stride[i],
                                 s->planeheight[i]);
         s->occupied = 1;
661e284b
     }
 
     for (i = 0; i < nout; i++) {
87577f55
         AVFrame *frame = av_frame_clone(s->frame[i]);
661e284b
 
         if (!frame) {
             av_frame_free(&inpicref);
             return AVERROR(ENOMEM);
         }
 
613483dc
         av_frame_copy_props(frame, inpicref);
1301aa55
         frame->pts = ((s->start_time == AV_NOPTS_VALUE) ? 0 : s->start_time) +
183ce55b
                      av_rescale(outlink->frame_count_in, s->ts_unit.num,
dbce8cda
                                 s->ts_unit.den);
661e284b
         ret = ff_filter_frame(outlink, frame);
     }
     av_frame_free(&inpicref);
 
     return ret;
 }
 
 static av_cold void uninit(AVFilterContext *ctx)
 {
87577f55
     TelecineContext *s = ctx->priv;
661e284b
     int i;
 
87577f55
     av_frame_free(&s->temp);
     for (i = 0; i < s->out_cnt; i++)
         av_frame_free(&s->frame[i]);
661e284b
 }
 
 static const AVFilterPad telecine_inputs[] = {
     {
         .name          = "default",
         .type          = AVMEDIA_TYPE_VIDEO,
         .filter_frame  = filter_frame,
         .config_props  = config_input,
     },
     { NULL }
 };
 
 static const AVFilterPad telecine_outputs[] = {
     {
         .name          = "default",
         .type          = AVMEDIA_TYPE_VIDEO,
         .config_props  = config_output,
     },
     { NULL }
 };
 
325f6e0a
 AVFilter ff_vf_telecine = {
661e284b
     .name          = "telecine",
     .description   = NULL_IF_CONFIG_SMALL("Apply a telecine pattern."),
     .priv_size     = sizeof(TelecineContext),
     .priv_class    = &telecine_class,
     .init          = init,
     .uninit        = uninit,
     .query_formats = query_formats,
     .inputs        = telecine_inputs,
     .outputs       = telecine_outputs,
 };