]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_select.c
Merge commit 'd15c21e5fa3961f10026da1a3080a3aa3cf4cec9'
[ffmpeg] / libavfilter / vf_select.c
1 /*
2  * Copyright (c) 2011 Stefano Sabatini
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
21 /**
22  * @file
23  * filter for selecting which frame passes in the filterchain
24  */
25
26 #include "libavutil/eval.h"
27 #include "libavutil/fifo.h"
28 #include "libavutil/internal.h"
29 #include "avfilter.h"
30 #include "formats.h"
31 #include "internal.h"
32 #include "video.h"
33
34 #if CONFIG_AVCODEC
35 #include "libavcodec/dsputil.h"
36 #endif
37
38 static const char *const var_names[] = {
39     "TB",                ///< timebase
40
41     "pts",               ///< original pts in the file of the frame
42     "start_pts",         ///< first PTS in the stream, expressed in TB units
43     "prev_pts",          ///< previous frame PTS
44     "prev_selected_pts", ///< previous selected frame PTS
45
46     "t",                 ///< first PTS in seconds
47     "start_t",           ///< first PTS in the stream, expressed in seconds
48     "prev_t",            ///< previous frame time
49     "prev_selected_t",   ///< previously selected time
50
51     "pict_type",         ///< the type of picture in the movie
52     "I",
53     "P",
54     "B",
55     "S",
56     "SI",
57     "SP",
58     "BI",
59
60     "interlace_type",    ///< the frame interlace type
61     "PROGRESSIVE",
62     "TOPFIRST",
63     "BOTTOMFIRST",
64
65     "n",                 ///< frame number (starting from zero)
66     "selected_n",        ///< selected frame number (starting from zero)
67     "prev_selected_n",   ///< number of the last selected frame
68
69     "key",               ///< tell if the frame is a key frame
70     "pos",               ///< original position in the file of the frame
71
72     "scene",
73
74     NULL
75 };
76
77 enum var_name {
78     VAR_TB,
79
80     VAR_PTS,
81     VAR_START_PTS,
82     VAR_PREV_PTS,
83     VAR_PREV_SELECTED_PTS,
84
85     VAR_T,
86     VAR_START_T,
87     VAR_PREV_T,
88     VAR_PREV_SELECTED_T,
89
90     VAR_PICT_TYPE,
91     VAR_PICT_TYPE_I,
92     VAR_PICT_TYPE_P,
93     VAR_PICT_TYPE_B,
94     VAR_PICT_TYPE_S,
95     VAR_PICT_TYPE_SI,
96     VAR_PICT_TYPE_SP,
97     VAR_PICT_TYPE_BI,
98
99     VAR_INTERLACE_TYPE,
100     VAR_INTERLACE_TYPE_P,
101     VAR_INTERLACE_TYPE_T,
102     VAR_INTERLACE_TYPE_B,
103
104     VAR_N,
105     VAR_SELECTED_N,
106     VAR_PREV_SELECTED_N,
107
108     VAR_KEY,
109     VAR_POS,
110
111     VAR_SCENE,
112
113     VAR_VARS_NB
114 };
115
116 #define FIFO_SIZE 8
117
118 typedef struct {
119     AVExpr *expr;
120     double var_values[VAR_VARS_NB];
121     int do_scene_detect;            ///< 1 if the expression requires scene detection variables, 0 otherwise
122 #if CONFIG_AVCODEC
123     AVCodecContext *avctx;          ///< codec context required for the DSPContext (scene detect only)
124     DSPContext c;                   ///< context providing optimized SAD methods   (scene detect only)
125     double prev_mafd;               ///< previous MAFD                             (scene detect only)
126 #endif
127     AVFilterBufferRef *prev_picref; ///< previous frame                            (scene detect only)
128     double select;
129     int cache_frames;
130     AVFifoBuffer *pending_frames; ///< FIFO buffer of video frames
131 } SelectContext;
132
133 static av_cold int init(AVFilterContext *ctx, const char *args)
134 {
135     SelectContext *select = ctx->priv;
136     int ret;
137
138     if ((ret = av_expr_parse(&select->expr, args ? args : "1",
139                              var_names, NULL, NULL, NULL, NULL, 0, ctx)) < 0) {
140         av_log(ctx, AV_LOG_ERROR, "Error while parsing expression '%s'\n", args);
141         return ret;
142     }
143
144     select->pending_frames = av_fifo_alloc(FIFO_SIZE*sizeof(AVFilterBufferRef*));
145     if (!select->pending_frames) {
146         av_log(ctx, AV_LOG_ERROR, "Failed to allocate pending frames buffer.\n");
147         return AVERROR(ENOMEM);
148     }
149
150     select->do_scene_detect = args && strstr(args, "scene");
151     if (select->do_scene_detect && !CONFIG_AVCODEC) {
152         av_log(ctx, AV_LOG_ERROR, "Scene detection is not available without libavcodec.\n");
153         return AVERROR(EINVAL);
154     }
155     return 0;
156 }
157
158 #define INTERLACE_TYPE_P 0
159 #define INTERLACE_TYPE_T 1
160 #define INTERLACE_TYPE_B 2
161
162 static int config_input(AVFilterLink *inlink)
163 {
164     SelectContext *select = inlink->dst->priv;
165
166     select->var_values[VAR_N]          = 0.0;
167     select->var_values[VAR_SELECTED_N] = 0.0;
168
169     select->var_values[VAR_TB] = av_q2d(inlink->time_base);
170
171     select->var_values[VAR_PREV_PTS]          = NAN;
172     select->var_values[VAR_PREV_SELECTED_PTS] = NAN;
173     select->var_values[VAR_PREV_SELECTED_T]   = NAN;
174     select->var_values[VAR_START_PTS]         = NAN;
175     select->var_values[VAR_START_T]           = NAN;
176
177     select->var_values[VAR_PICT_TYPE_I]  = AV_PICTURE_TYPE_I;
178     select->var_values[VAR_PICT_TYPE_P]  = AV_PICTURE_TYPE_P;
179     select->var_values[VAR_PICT_TYPE_B]  = AV_PICTURE_TYPE_B;
180     select->var_values[VAR_PICT_TYPE_SI] = AV_PICTURE_TYPE_SI;
181     select->var_values[VAR_PICT_TYPE_SP] = AV_PICTURE_TYPE_SP;
182
183     select->var_values[VAR_INTERLACE_TYPE_P] = INTERLACE_TYPE_P;
184     select->var_values[VAR_INTERLACE_TYPE_T] = INTERLACE_TYPE_T;
185     select->var_values[VAR_INTERLACE_TYPE_B] = INTERLACE_TYPE_B;
186
187     if (CONFIG_AVCODEC && select->do_scene_detect) {
188         select->avctx = avcodec_alloc_context3(NULL);
189         if (!select->avctx)
190             return AVERROR(ENOMEM);
191         dsputil_init(&select->c, select->avctx);
192     }
193     return 0;
194 }
195
196 #if CONFIG_AVCODEC
197 static double get_scene_score(AVFilterContext *ctx, AVFilterBufferRef *picref)
198 {
199     double ret = 0;
200     SelectContext *select = ctx->priv;
201     AVFilterBufferRef *prev_picref = select->prev_picref;
202
203     if (prev_picref &&
204         picref->video->h    == prev_picref->video->h &&
205         picref->video->w    == prev_picref->video->w &&
206         picref->linesize[0] == prev_picref->linesize[0]) {
207         int x, y, nb_sad = 0;
208         int64_t sad = 0;
209         double mafd, diff;
210         uint8_t *p1 =      picref->data[0];
211         uint8_t *p2 = prev_picref->data[0];
212         const int linesize = picref->linesize[0];
213
214         for (y = 0; y < picref->video->h - 8; y += 8) {
215             for (x = 0; x < picref->video->w*3 - 8; x += 8) {
216                 sad += select->c.sad[1](select, p1 + x, p2 + x,
217                                         linesize, 8);
218                 nb_sad += 8 * 8;
219             }
220             p1 += 8 * linesize;
221             p2 += 8 * linesize;
222         }
223         emms_c();
224         mafd = nb_sad ? sad / nb_sad : 0;
225         diff = fabs(mafd - select->prev_mafd);
226         ret  = av_clipf(FFMIN(mafd, diff) / 100., 0, 1);
227         select->prev_mafd = mafd;
228         avfilter_unref_buffer(prev_picref);
229     }
230     select->prev_picref = avfilter_ref_buffer(picref, ~0);
231     return ret;
232 }
233 #endif
234
235 #define D2TS(d)  (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d))
236 #define TS2D(ts) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts))
237
238 static int select_frame(AVFilterContext *ctx, AVFilterBufferRef *picref)
239 {
240     SelectContext *select = ctx->priv;
241     AVFilterLink *inlink = ctx->inputs[0];
242     double res;
243
244     if (CONFIG_AVCODEC && select->do_scene_detect)
245         select->var_values[VAR_SCENE] = get_scene_score(ctx, picref);
246     if (isnan(select->var_values[VAR_START_PTS]))
247         select->var_values[VAR_START_PTS] = TS2D(picref->pts);
248     if (isnan(select->var_values[VAR_START_T]))
249         select->var_values[VAR_START_T] = TS2D(picref->pts) * av_q2d(inlink->time_base);
250
251     select->var_values[VAR_PTS] = TS2D(picref->pts);
252     select->var_values[VAR_T  ] = TS2D(picref->pts) * av_q2d(inlink->time_base);
253     select->var_values[VAR_POS] = picref->pos == -1 ? NAN : picref->pos;
254     select->var_values[VAR_PREV_PTS] = TS2D(picref ->pts);
255
256     select->var_values[VAR_INTERLACE_TYPE] =
257         !picref->video->interlaced     ? INTERLACE_TYPE_P :
258         picref->video->top_field_first ? INTERLACE_TYPE_T : INTERLACE_TYPE_B;
259     select->var_values[VAR_PICT_TYPE] = picref->video->pict_type;
260
261     res = av_expr_eval(select->expr, select->var_values, NULL);
262     av_log(inlink->dst, AV_LOG_DEBUG,
263            "n:%d pts:%d t:%f pos:%d interlace_type:%c key:%d pict_type:%c "
264            "-> select:%f\n",
265            (int)select->var_values[VAR_N],
266            (int)select->var_values[VAR_PTS],
267            select->var_values[VAR_T],
268            (int)select->var_values[VAR_POS],
269            select->var_values[VAR_INTERLACE_TYPE] == INTERLACE_TYPE_P ? 'P' :
270            select->var_values[VAR_INTERLACE_TYPE] == INTERLACE_TYPE_T ? 'T' :
271            select->var_values[VAR_INTERLACE_TYPE] == INTERLACE_TYPE_B ? 'B' : '?',
272            (int)select->var_values[VAR_KEY],
273            av_get_picture_type_char(select->var_values[VAR_PICT_TYPE]),
274            res);
275
276     select->var_values[VAR_N] += 1.0;
277
278     if (res) {
279         select->var_values[VAR_PREV_SELECTED_N]   = select->var_values[VAR_N];
280         select->var_values[VAR_PREV_SELECTED_PTS] = select->var_values[VAR_PTS];
281         select->var_values[VAR_PREV_SELECTED_T]   = select->var_values[VAR_T];
282         select->var_values[VAR_SELECTED_N] += 1.0;
283     }
284     return res;
285 }
286
287 static int start_frame(AVFilterLink *inlink, AVFilterBufferRef *picref)
288 {
289     SelectContext *select = inlink->dst->priv;
290
291     select->select = select_frame(inlink->dst, picref);
292     if (select->select) {
293         AVFilterBufferRef *buf_out;
294         /* frame was requested through poll_frame */
295         if (select->cache_frames) {
296             if (!av_fifo_space(select->pending_frames))
297                 av_log(inlink->dst, AV_LOG_ERROR,
298                        "Buffering limit reached, cannot cache more frames\n");
299             else
300                 av_fifo_generic_write(select->pending_frames, &picref,
301                                       sizeof(picref), NULL);
302             return 0;
303         }
304         buf_out = avfilter_ref_buffer(picref, ~0);
305         if (!buf_out)
306             return AVERROR(ENOMEM);
307         return ff_start_frame(inlink->dst->outputs[0], buf_out);
308     }
309
310     return 0;
311 }
312
313 static int draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
314 {
315     SelectContext *select = inlink->dst->priv;
316
317     if (select->select && !select->cache_frames)
318         return ff_draw_slice(inlink->dst->outputs[0], y, h, slice_dir);
319     return 0;
320 }
321
322 static int end_frame(AVFilterLink *inlink)
323 {
324     SelectContext *select = inlink->dst->priv;
325
326     if (select->select) {
327         if (select->cache_frames)
328             return 0;
329         return ff_end_frame(inlink->dst->outputs[0]);
330     }
331     return 0;
332 }
333
334 static int request_frame(AVFilterLink *outlink)
335 {
336     AVFilterContext *ctx = outlink->src;
337     SelectContext *select = ctx->priv;
338     AVFilterLink *inlink = outlink->src->inputs[0];
339     select->select = 0;
340
341     if (av_fifo_size(select->pending_frames)) {
342         AVFilterBufferRef *picref;
343         int ret;
344
345         av_fifo_generic_read(select->pending_frames, &picref, sizeof(picref), NULL);
346         if ((ret = ff_start_frame(outlink, picref)) < 0 ||
347             (ret = ff_draw_slice(outlink, 0, outlink->h, 1)) < 0 ||
348             (ret = ff_end_frame(outlink)) < 0);
349
350         return ret;
351     }
352
353     while (!select->select) {
354         int ret = ff_request_frame(inlink);
355         if (ret < 0)
356             return ret;
357     }
358
359     return 0;
360 }
361
362 static int poll_frame(AVFilterLink *outlink)
363 {
364     SelectContext *select = outlink->src->priv;
365     AVFilterLink *inlink = outlink->src->inputs[0];
366     int count, ret;
367
368     if (!av_fifo_size(select->pending_frames)) {
369         if ((count = ff_poll_frame(inlink)) <= 0)
370             return count;
371         /* request frame from input, and apply select condition to it */
372         select->cache_frames = 1;
373         while (count-- && av_fifo_space(select->pending_frames)) {
374             ret = ff_request_frame(inlink);
375             if (ret < 0)
376                 break;
377         }
378         select->cache_frames = 0;
379     }
380
381     return av_fifo_size(select->pending_frames)/sizeof(AVFilterBufferRef *);
382 }
383
384 static av_cold void uninit(AVFilterContext *ctx)
385 {
386     SelectContext *select = ctx->priv;
387     AVFilterBufferRef *picref;
388
389     av_expr_free(select->expr);
390     select->expr = NULL;
391
392     while (select->pending_frames &&
393            av_fifo_generic_read(select->pending_frames, &picref, sizeof(picref), NULL) == sizeof(picref))
394         avfilter_unref_buffer(picref);
395     av_fifo_free(select->pending_frames);
396     select->pending_frames = NULL;
397
398     if (select->do_scene_detect) {
399         avfilter_unref_bufferp(&select->prev_picref);
400         if (select->avctx) {
401             avcodec_close(select->avctx);
402             av_freep(&select->avctx);
403         }
404     }
405 }
406
407 static int query_formats(AVFilterContext *ctx)
408 {
409     SelectContext *select = ctx->priv;
410
411     if (!select->do_scene_detect) {
412         return ff_default_query_formats(ctx);
413     } else {
414         static const enum AVPixelFormat pix_fmts[] = {
415             AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24,
416             AV_PIX_FMT_NONE
417         };
418         ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
419     }
420     return 0;
421 }
422
423 static const AVFilterPad avfilter_vf_select_inputs[] = {
424     {
425         .name             = "default",
426         .type             = AVMEDIA_TYPE_VIDEO,
427         .get_video_buffer = ff_null_get_video_buffer,
428         .min_perms        = AV_PERM_PRESERVE,
429         .config_props     = config_input,
430         .start_frame      = start_frame,
431         .draw_slice       = draw_slice,
432         .end_frame        = end_frame
433     },
434     { NULL }
435 };
436
437 static const AVFilterPad avfilter_vf_select_outputs[] = {
438     {
439         .name          = "default",
440         .type          = AVMEDIA_TYPE_VIDEO,
441         .poll_frame    = poll_frame,
442         .request_frame = request_frame,
443     },
444     { NULL }
445 };
446
447 AVFilter avfilter_vf_select = {
448     .name      = "select",
449     .description = NULL_IF_CONFIG_SMALL("Select frames to pass in output."),
450     .init      = init,
451     .uninit    = uninit,
452     .query_formats = query_formats,
453
454     .priv_size = sizeof(SelectContext),
455
456     .inputs    = avfilter_vf_select_inputs,
457     .outputs   = avfilter_vf_select_outputs,
458 };