2012-04-03 13:56:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libavutil/cpu.h"
|
|
|
|
#include "libavutil/common.h"
|
|
|
|
#include "libavutil/pixdesc.h"
|
|
|
|
#include "avfilter.h"
|
2012-06-16 09:47:46 +00:00
|
|
|
#include "internal.h"
|
2012-04-03 13:56:04 +00:00
|
|
|
|
|
|
|
#undef NDEBUG
|
|
|
|
#include <assert.h>
|
|
|
|
|
2012-04-05 06:26:09 +00:00
|
|
|
#define HIST_SIZE 4
|
|
|
|
|
2012-04-05 04:23:53 +00:00
|
|
|
typedef enum {
|
|
|
|
TFF,
|
|
|
|
BFF,
|
|
|
|
PROGRSSIVE,
|
|
|
|
UNDETERMINED,
|
|
|
|
} Type;
|
|
|
|
|
2012-04-03 13:56:04 +00:00
|
|
|
typedef struct {
|
|
|
|
float interlace_threshold;
|
|
|
|
float progressive_threshold;
|
|
|
|
|
2012-04-05 04:33:40 +00:00
|
|
|
Type last_type;
|
2012-04-05 04:23:53 +00:00
|
|
|
Type prestat[4];
|
2012-04-05 05:03:39 +00:00
|
|
|
Type poststat[4];
|
2012-04-04 14:19:36 +00:00
|
|
|
|
2012-04-05 06:26:09 +00:00
|
|
|
uint8_t history[HIST_SIZE];
|
|
|
|
|
2012-04-03 13:56:04 +00:00
|
|
|
AVFilterBufferRef *cur;
|
|
|
|
AVFilterBufferRef *next;
|
|
|
|
AVFilterBufferRef *prev;
|
2012-05-10 18:06:24 +00:00
|
|
|
int (*filter_line)(const uint8_t *prev, const uint8_t *cur, const uint8_t *next, int w);
|
2012-04-03 13:56:04 +00:00
|
|
|
|
|
|
|
const AVPixFmtDescriptor *csp;
|
|
|
|
} IDETContext;
|
|
|
|
|
2012-04-05 04:38:48 +00:00
|
|
|
static const char *type2str(Type type)
|
|
|
|
{
|
|
|
|
switch(type) {
|
|
|
|
case TFF : return "Top Field First ";
|
|
|
|
case BFF : return "Bottom Field First";
|
|
|
|
case PROGRSSIVE : return "Progressive ";
|
|
|
|
case UNDETERMINED: return "Undetermined ";
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-04-03 13:56:04 +00:00
|
|
|
|
|
|
|
static int filter_line_c(const uint8_t *a, const uint8_t *b, const uint8_t *c, int w)
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
int ret=0;
|
|
|
|
|
|
|
|
for(x=0; x<w; x++){
|
|
|
|
ret += FFABS((*a++ + *c++) - 2 * *b++);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int filter_line_c_16bit(const uint16_t *a, const uint16_t *b, const uint16_t *c, int w)
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
int ret=0;
|
|
|
|
|
|
|
|
for(x=0; x<w; x++){
|
|
|
|
ret += FFABS((*a++ + *c++) - 2 * *b++);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void filter(AVFilterContext *ctx)
|
|
|
|
{
|
|
|
|
IDETContext *idet = ctx->priv;
|
|
|
|
int y, i;
|
|
|
|
int64_t alpha[2]={0};
|
|
|
|
int64_t delta=0;
|
2012-04-05 06:26:09 +00:00
|
|
|
Type type, best_type;
|
|
|
|
int match = 0;
|
2012-04-03 13:56:04 +00:00
|
|
|
|
|
|
|
for (i = 0; i < idet->csp->nb_components; i++) {
|
|
|
|
int w = idet->cur->video->w;
|
|
|
|
int h = idet->cur->video->h;
|
|
|
|
int refs = idet->cur->linesize[i];
|
|
|
|
|
|
|
|
if (i && i<3) {
|
|
|
|
w >>= idet->csp->log2_chroma_w;
|
|
|
|
h >>= idet->csp->log2_chroma_h;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (y = 2; y < h - 2; y++) {
|
|
|
|
uint8_t *prev = &idet->prev->data[i][y*refs];
|
|
|
|
uint8_t *cur = &idet->cur ->data[i][y*refs];
|
|
|
|
uint8_t *next = &idet->next->data[i][y*refs];
|
|
|
|
alpha[ y &1] += idet->filter_line(cur-refs, prev, cur+refs, w);
|
|
|
|
alpha[(y^1)&1] += idet->filter_line(cur-refs, next, cur+refs, w);
|
|
|
|
delta += idet->filter_line(cur-refs, cur, cur+refs, w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-19 17:35:31 +00:00
|
|
|
if (alpha[0] > idet->interlace_threshold * alpha[1]){
|
2012-04-05 04:23:53 +00:00
|
|
|
type = TFF;
|
2012-10-19 17:35:31 +00:00
|
|
|
}else if(alpha[1] > idet->interlace_threshold * alpha[0]){
|
2012-04-05 04:23:53 +00:00
|
|
|
type = BFF;
|
2012-10-19 17:35:31 +00:00
|
|
|
}else if(alpha[1] > idet->progressive_threshold * delta){
|
2012-04-05 04:23:53 +00:00
|
|
|
type = PROGRSSIVE;
|
|
|
|
}else{
|
|
|
|
type = UNDETERMINED;
|
|
|
|
}
|
|
|
|
|
2012-04-05 06:26:09 +00:00
|
|
|
memmove(idet->history+1, idet->history, HIST_SIZE-1);
|
|
|
|
idet->history[0] = type;
|
|
|
|
best_type = UNDETERMINED;
|
|
|
|
for(i=0; i<HIST_SIZE; i++){
|
|
|
|
if(idet->history[i] != UNDETERMINED){
|
|
|
|
if(best_type == UNDETERMINED)
|
|
|
|
best_type = idet->history[i];
|
|
|
|
|
|
|
|
if(idet->history[i] == best_type) {
|
|
|
|
match++;
|
|
|
|
}else{
|
|
|
|
match=0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(idet->last_type == UNDETERMINED){
|
|
|
|
if(match ) idet->last_type = best_type;
|
|
|
|
}else{
|
|
|
|
if(match>2) idet->last_type = best_type;
|
|
|
|
}
|
2012-04-05 04:33:40 +00:00
|
|
|
|
|
|
|
if (idet->last_type == TFF){
|
2012-04-04 14:27:24 +00:00
|
|
|
idet->cur->video->top_field_first = 1;
|
|
|
|
idet->cur->video->interlaced = 1;
|
2012-04-05 04:33:40 +00:00
|
|
|
}else if(idet->last_type == BFF){
|
2012-04-04 14:27:24 +00:00
|
|
|
idet->cur->video->top_field_first = 0;
|
|
|
|
idet->cur->video->interlaced = 1;
|
2012-04-05 04:33:40 +00:00
|
|
|
}else if(idet->last_type == PROGRSSIVE){
|
2012-04-04 14:27:24 +00:00
|
|
|
idet->cur->video->interlaced = 0;
|
2012-04-03 13:56:04 +00:00
|
|
|
}
|
2012-04-05 04:38:48 +00:00
|
|
|
|
2012-04-05 05:03:39 +00:00
|
|
|
idet->prestat [ type] ++;
|
|
|
|
idet->poststat[idet->last_type] ++;
|
2012-04-05 05:04:10 +00:00
|
|
|
av_log(ctx, AV_LOG_DEBUG, "Single frame:%s, Multi frame:%s\n", type2str(type), type2str(idet->last_type));
|
2012-04-03 13:56:04 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 20:09:17 +00:00
|
|
|
static int filter_frame(AVFilterLink *link, AVFilterBufferRef *picref)
|
2012-04-03 13:56:04 +00:00
|
|
|
{
|
|
|
|
AVFilterContext *ctx = link->dst;
|
|
|
|
IDETContext *idet = ctx->priv;
|
|
|
|
|
|
|
|
if (idet->prev)
|
|
|
|
avfilter_unref_buffer(idet->prev);
|
|
|
|
idet->prev = idet->cur;
|
|
|
|
idet->cur = idet->next;
|
|
|
|
idet->next = picref;
|
|
|
|
|
|
|
|
if (!idet->cur)
|
2012-07-22 20:57:02 +00:00
|
|
|
return 0;
|
2012-04-03 13:56:04 +00:00
|
|
|
|
|
|
|
if (!idet->prev)
|
2012-08-14 16:45:30 +00:00
|
|
|
idet->prev = avfilter_ref_buffer(idet->cur, ~0);
|
2012-04-03 13:56:04 +00:00
|
|
|
|
|
|
|
if (!idet->csp)
|
2012-10-20 04:43:48 +00:00
|
|
|
idet->csp = av_pix_fmt_desc_get(link->format);
|
2012-04-03 13:56:04 +00:00
|
|
|
if (idet->csp->comp[0].depth_minus1 / 8 == 1)
|
|
|
|
idet->filter_line = (void*)filter_line_c_16bit;
|
|
|
|
|
|
|
|
filter(ctx);
|
|
|
|
|
2012-12-06 20:09:17 +00:00
|
|
|
return ff_filter_frame(ctx->outputs[0], avfilter_ref_buffer(idet->cur, ~0));
|
2012-04-03 13:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int request_frame(AVFilterLink *link)
|
|
|
|
{
|
|
|
|
AVFilterContext *ctx = link->src;
|
|
|
|
IDETContext *idet = ctx->priv;
|
|
|
|
|
|
|
|
do {
|
|
|
|
int ret;
|
|
|
|
|
2012-06-24 00:09:53 +00:00
|
|
|
if ((ret = ff_request_frame(link->src->inputs[0])))
|
2012-04-03 13:56:04 +00:00
|
|
|
return ret;
|
|
|
|
} while (!idet->cur);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static av_cold void uninit(AVFilterContext *ctx)
|
|
|
|
{
|
|
|
|
IDETContext *idet = ctx->priv;
|
|
|
|
|
2012-04-05 05:03:39 +00:00
|
|
|
av_log(ctx, AV_LOG_INFO, "Single frame detection: TFF:%d BFF:%d Progressive:%d Undetermined:%d\n",
|
2012-04-05 04:23:53 +00:00
|
|
|
idet->prestat[TFF],
|
|
|
|
idet->prestat[BFF],
|
|
|
|
idet->prestat[PROGRSSIVE],
|
|
|
|
idet->prestat[UNDETERMINED]
|
2012-04-04 14:31:31 +00:00
|
|
|
);
|
2012-04-05 05:03:39 +00:00
|
|
|
av_log(ctx, AV_LOG_INFO, "Multi frame detection: TFF:%d BFF:%d Progressive:%d Undetermined:%d\n",
|
|
|
|
idet->poststat[TFF],
|
|
|
|
idet->poststat[BFF],
|
|
|
|
idet->poststat[PROGRSSIVE],
|
|
|
|
idet->poststat[UNDETERMINED]
|
|
|
|
);
|
2012-04-04 14:31:31 +00:00
|
|
|
|
2012-10-10 22:47:46 +00:00
|
|
|
avfilter_unref_bufferp(&idet->prev);
|
|
|
|
avfilter_unref_bufferp(&idet->cur );
|
|
|
|
avfilter_unref_bufferp(&idet->next);
|
2012-04-03 13:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int query_formats(AVFilterContext *ctx)
|
|
|
|
{
|
2012-10-08 18:54:00 +00:00
|
|
|
static const enum AVPixelFormat pix_fmts[] = {
|
|
|
|
AV_PIX_FMT_YUV420P,
|
|
|
|
AV_PIX_FMT_YUV422P,
|
|
|
|
AV_PIX_FMT_YUV444P,
|
|
|
|
AV_PIX_FMT_YUV410P,
|
|
|
|
AV_PIX_FMT_YUV411P,
|
|
|
|
AV_PIX_FMT_GRAY8,
|
|
|
|
AV_PIX_FMT_YUVJ420P,
|
|
|
|
AV_PIX_FMT_YUVJ422P,
|
|
|
|
AV_PIX_FMT_YUVJ444P,
|
|
|
|
AV_NE( AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_GRAY16LE ),
|
|
|
|
AV_PIX_FMT_YUV440P,
|
|
|
|
AV_PIX_FMT_YUVJ440P,
|
|
|
|
AV_NE( AV_PIX_FMT_YUV420P10BE, AV_PIX_FMT_YUV420P10LE ),
|
|
|
|
AV_NE( AV_PIX_FMT_YUV422P10BE, AV_PIX_FMT_YUV422P10LE ),
|
|
|
|
AV_NE( AV_PIX_FMT_YUV444P10BE, AV_PIX_FMT_YUV444P10LE ),
|
|
|
|
AV_NE( AV_PIX_FMT_YUV420P16BE, AV_PIX_FMT_YUV420P16LE ),
|
|
|
|
AV_NE( AV_PIX_FMT_YUV422P16BE, AV_PIX_FMT_YUV422P16LE ),
|
|
|
|
AV_NE( AV_PIX_FMT_YUV444P16BE, AV_PIX_FMT_YUV444P16LE ),
|
|
|
|
AV_PIX_FMT_YUVA420P,
|
|
|
|
AV_PIX_FMT_NONE
|
2012-04-03 13:56:04 +00:00
|
|
|
};
|
|
|
|
|
2012-06-16 09:47:46 +00:00
|
|
|
ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
|
2012-04-03 13:56:04 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-06-26 21:27:59 +00:00
|
|
|
static av_cold int init(AVFilterContext *ctx, const char *args)
|
2012-04-03 13:56:04 +00:00
|
|
|
{
|
|
|
|
IDETContext *idet = ctx->priv;
|
|
|
|
|
|
|
|
idet->csp = NULL;
|
|
|
|
|
|
|
|
idet->interlace_threshold = 1.01;
|
|
|
|
idet->progressive_threshold = 2.5;
|
|
|
|
|
|
|
|
if (args) sscanf(args, "%f:%f", &idet->interlace_threshold, &idet->progressive_threshold);
|
|
|
|
|
2012-04-05 04:33:40 +00:00
|
|
|
idet->last_type = UNDETERMINED;
|
2012-04-05 06:26:09 +00:00
|
|
|
memset(idet->history, UNDETERMINED, HIST_SIZE);
|
2012-04-05 04:33:40 +00:00
|
|
|
|
2012-04-03 13:56:04 +00:00
|
|
|
idet->filter_line = filter_line_c;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-28 19:01:59 +00:00
|
|
|
static const AVFilterPad idet_inputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-12-06 20:09:17 +00:00
|
|
|
.filter_frame = filter_frame,
|
2012-11-28 19:01:59 +00:00
|
|
|
.min_perms = AV_PERM_PRESERVE,
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVFilterPad idet_outputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.rej_perms = AV_PERM_WRITE,
|
|
|
|
.request_frame = request_frame,
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2012-04-03 13:56:04 +00:00
|
|
|
AVFilter avfilter_vf_idet = {
|
|
|
|
.name = "idet",
|
|
|
|
.description = NULL_IF_CONFIG_SMALL("Interlace detect Filter."),
|
|
|
|
|
|
|
|
.priv_size = sizeof(IDETContext),
|
|
|
|
.init = init,
|
|
|
|
.uninit = uninit,
|
|
|
|
.query_formats = query_formats,
|
2012-11-28 19:01:59 +00:00
|
|
|
.inputs = idet_inputs,
|
|
|
|
.outputs = idet_outputs,
|
2012-04-03 13:56:04 +00:00
|
|
|
};
|