]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_slicify.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavfilter / vf_slicify.c
1 /*
2  * Copyright (c) 2007 Bobby Bingham
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  * video slicing filter
24  */
25
26 #include "avfilter.h"
27 #include "internal.h"
28 #include "video.h"
29 #include "libavutil/common.h"
30 #include "libavutil/pixdesc.h"
31
32 typedef struct {
33     int h;          ///< output slice height
34     int vshift;     ///< vertical chroma subsampling shift
35     uint32_t lcg_state; ///< LCG state used to compute random slice height
36     int use_random_h;   ///< enable the use of random slice height values
37 } SliceContext;
38
39 static av_cold int init(AVFilterContext *ctx, const char *args)
40 {
41     SliceContext *slice = ctx->priv;
42
43     slice->h = 16;
44     if (args) {
45         if (!strcmp(args, "random")) {
46             slice->use_random_h = 1;
47         } else {
48             sscanf(args, "%d", &slice->h);
49         }
50     }
51     return 0;
52 }
53
54 static int config_props(AVFilterLink *link)
55 {
56     SliceContext *slice = link->dst->priv;
57
58     slice->vshift = av_pix_fmt_descriptors[link->format].log2_chroma_h;
59
60     return 0;
61 }
62
63 static int start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
64 {
65     SliceContext *slice = link->dst->priv;
66
67     if (slice->use_random_h) {
68         slice->lcg_state = slice->lcg_state * 1664525 + 1013904223;
69         slice->h = 8 + (uint64_t)slice->lcg_state * 25 / UINT32_MAX;
70     }
71
72     /* ensure that slices play nice with chroma subsampling, and enforce
73      * a reasonable minimum size for the slices */
74     slice->h = FFMAX(8, slice->h & (-1 << slice->vshift));
75
76     av_log(link->dst, AV_LOG_DEBUG, "h:%d\n", slice->h);
77     link->cur_buf = NULL;
78
79     return ff_start_frame(link->dst->outputs[0], picref);
80 }
81
82 static int draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
83 {
84     SliceContext *slice = link->dst->priv;
85     int y2, ret = 0;
86
87     if (slice_dir == 1) {
88         for (y2 = y; y2 + slice->h <= y + h; y2 += slice->h) {
89             ret = ff_draw_slice(link->dst->outputs[0], y2, slice->h, slice_dir);
90             if (ret < 0)
91                 return ret;
92         }
93
94         if (y2 < y + h)
95             return ff_draw_slice(link->dst->outputs[0], y2, y + h - y2, slice_dir);
96     } else if (slice_dir == -1) {
97         for (y2 = y + h; y2 - slice->h >= y; y2 -= slice->h) {
98             ret = ff_draw_slice(link->dst->outputs[0], y2 - slice->h, slice->h, slice_dir);
99             if (ret < 0)
100                 return ret;
101         }
102
103         if (y2 > y)
104             return ff_draw_slice(link->dst->outputs[0], y, y2 - y, slice_dir);
105     }
106     return 0;
107 }
108
109 AVFilter avfilter_vf_slicify = {
110     .name      = "slicify",
111     .description = NULL_IF_CONFIG_SMALL("Pass the images of input video on to next video filter as multiple slices."),
112
113     .init      = init,
114
115     .priv_size = sizeof(SliceContext),
116
117     .inputs    = (const AVFilterPad[]) {{ .name             = "default",
118                                           .type             = AVMEDIA_TYPE_VIDEO,
119                                           .get_video_buffer = ff_null_get_video_buffer,
120                                           .start_frame      = start_frame,
121                                           .draw_slice       = draw_slice,
122                                           .config_props     = config_props,
123                                           .end_frame        = ff_null_end_frame, },
124                                         { .name = NULL}},
125     .outputs   = (const AVFilterPad[]) {{ .name            = "default",
126                                           .type            = AVMEDIA_TYPE_VIDEO, },
127                                         { .name = NULL}},
128 };