Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * Copyright (c) 2013 Paul B Mahol | ||
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 | #include "libavutil/pixdesc.h" | ||
22 | #include "avfilter.h" | ||
23 | #include "filters.h" | ||
24 | #include "video.h" | ||
25 | |||
26 | typedef struct SeparateFieldsContext { | ||
27 | int nb_planes; | ||
28 | AVFrame *second; | ||
29 | } SeparateFieldsContext; | ||
30 | |||
31 | 1 | static int config_props_output(AVFilterLink *outlink) | |
32 | { | ||
33 | 1 | AVFilterContext *ctx = outlink->src; | |
34 | 1 | SeparateFieldsContext *s = ctx->priv; | |
35 | 1 | AVFilterLink *inlink = ctx->inputs[0]; | |
36 | 1 | FilterLink *il = ff_filter_link(inlink); | |
37 | 1 | FilterLink *ol = ff_filter_link(outlink); | |
38 | |||
39 | 1 | s->nb_planes = av_pix_fmt_count_planes(inlink->format); | |
40 | |||
41 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (inlink->h & 1) { |
42 | ✗ | av_log(ctx, AV_LOG_ERROR, "height must be even\n"); | |
43 | ✗ | return AVERROR_INVALIDDATA; | |
44 | } | ||
45 | |||
46 | 1 | outlink->time_base.num = inlink->time_base.num; | |
47 | 1 | outlink->time_base.den = inlink->time_base.den * 2; | |
48 | 1 | ol->frame_rate.num = il->frame_rate.num * 2; | |
49 | 1 | ol->frame_rate.den = il->frame_rate.den; | |
50 | 1 | outlink->w = inlink->w; | |
51 | 1 | outlink->h = inlink->h / 2; | |
52 | |||
53 | 1 | return 0; | |
54 | } | ||
55 | |||
56 | 100 | static void extract_field(AVFrame *frame, int nb_planes, int type) | |
57 | { | ||
58 | int i; | ||
59 | |||
60 |
2/2✓ Branch 0 taken 300 times.
✓ Branch 1 taken 100 times.
|
400 | for (i = 0; i < nb_planes; i++) { |
61 |
2/2✓ Branch 0 taken 150 times.
✓ Branch 1 taken 150 times.
|
300 | if (type) |
62 | 150 | frame->data[i] = frame->data[i] + frame->linesize[i]; | |
63 | 300 | frame->linesize[i] *= 2; | |
64 | } | ||
65 | 100 | } | |
66 | |||
67 | 50 | static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref) | |
68 | { | ||
69 | 50 | AVFilterContext *ctx = inlink->dst; | |
70 | 50 | SeparateFieldsContext *s = ctx->priv; | |
71 | 50 | AVFilterLink *outlink = ctx->outputs[0]; | |
72 | int ret; | ||
73 | |||
74 | 50 | inpicref->height = outlink->h; | |
75 | #if FF_API_INTERLACED_FRAME | ||
76 | FF_DISABLE_DEPRECATION_WARNINGS | ||
77 | 50 | inpicref->interlaced_frame = 0; | |
78 | FF_ENABLE_DEPRECATION_WARNINGS | ||
79 | #endif | ||
80 | 50 | inpicref->flags &= ~AV_FRAME_FLAG_INTERLACED; | |
81 | |||
82 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 49 times.
|
50 | if (!s->second) { |
83 | 1 | goto clone; | |
84 | } else { | ||
85 | 49 | AVFrame *second = s->second; | |
86 | |||
87 | 49 | extract_field(second, s->nb_planes, !!(second->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST)); | |
88 | |||
89 |
1/2✓ Branch 0 taken 49 times.
✗ Branch 1 not taken.
|
49 | if (second->pts != AV_NOPTS_VALUE && |
90 |
1/2✓ Branch 0 taken 49 times.
✗ Branch 1 not taken.
|
49 | inpicref->pts != AV_NOPTS_VALUE) |
91 | 49 | second->pts += inpicref->pts; | |
92 | else | ||
93 | ✗ | second->pts = AV_NOPTS_VALUE; | |
94 | |||
95 | 49 | ret = ff_filter_frame(outlink, second); | |
96 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 49 times.
|
49 | if (ret < 0) |
97 | ✗ | return ret; | |
98 | 49 | clone: | |
99 | 50 | s->second = av_frame_clone(inpicref); | |
100 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 50 times.
|
50 | if (!s->second) |
101 | ✗ | return AVERROR(ENOMEM); | |
102 | } | ||
103 | |||
104 | 50 | extract_field(inpicref, s->nb_planes, !(inpicref->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST)); | |
105 | |||
106 |
1/2✓ Branch 0 taken 50 times.
✗ Branch 1 not taken.
|
50 | if (inpicref->pts != AV_NOPTS_VALUE) |
107 | 50 | inpicref->pts *= 2; | |
108 | |||
109 | 50 | return ff_filter_frame(outlink, inpicref); | |
110 | } | ||
111 | |||
112 | 1 | static int flush_frame(AVFilterLink *outlink, int64_t pts, int64_t *out_pts) | |
113 | { | ||
114 | 1 | AVFilterContext *ctx = outlink->src; | |
115 | 1 | SeparateFieldsContext *s = ctx->priv; | |
116 | 1 | int ret = 0; | |
117 | |||
118 |
1/2✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
|
1 | if (s->second) { |
119 | 1 | *out_pts = s->second->pts += pts; | |
120 | 1 | extract_field(s->second, s->nb_planes, !!(s->second->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST)); | |
121 | 1 | ret = ff_filter_frame(outlink, s->second); | |
122 | 1 | s->second = NULL; | |
123 | } | ||
124 | |||
125 | 1 | return ret; | |
126 | } | ||
127 | |||
128 | 101 | static int activate(AVFilterContext *ctx) | |
129 | { | ||
130 | 101 | AVFilterLink *inlink = ctx->inputs[0]; | |
131 | 101 | AVFilterLink *outlink = ctx->outputs[0]; | |
132 | AVFrame *in; | ||
133 | int64_t pts; | ||
134 | int ret, status; | ||
135 | |||
136 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 101 times.
|
101 | FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink); |
137 | |||
138 | 101 | ret = ff_inlink_consume_frame(inlink, &in); | |
139 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 101 times.
|
101 | if (ret < 0) |
140 | ✗ | return ret; | |
141 |
2/2✓ Branch 0 taken 50 times.
✓ Branch 1 taken 51 times.
|
101 | if (ret > 0) |
142 | 50 | return filter_frame(inlink, in); | |
143 | |||
144 |
2/2✓ Branch 1 taken 1 times.
✓ Branch 2 taken 50 times.
|
51 | if (ff_inlink_acknowledge_status(inlink, &status, &pts)) { |
145 |
1/2✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
|
1 | if (status == AVERROR_EOF) { |
146 | 1 | int64_t out_pts = pts; | |
147 | |||
148 | 1 | ret = flush_frame(outlink, pts, &out_pts); | |
149 | 1 | ff_outlink_set_status(outlink, status, out_pts); | |
150 | 1 | return ret; | |
151 | } | ||
152 | } | ||
153 | |||
154 |
1/2✓ Branch 1 taken 50 times.
✗ Branch 2 not taken.
|
50 | FF_FILTER_FORWARD_WANTED(outlink, inlink); |
155 | |||
156 | ✗ | return FFERROR_NOT_READY; | |
157 | } | ||
158 | |||
159 | 2 | static av_cold void uninit(AVFilterContext *ctx) | |
160 | { | ||
161 | 2 | SeparateFieldsContext *s = ctx->priv; | |
162 | |||
163 | 2 | av_frame_free(&s->second); | |
164 | 2 | } | |
165 | |||
166 | static const AVFilterPad separatefields_outputs[] = { | ||
167 | { | ||
168 | .name = "default", | ||
169 | .type = AVMEDIA_TYPE_VIDEO, | ||
170 | .config_props = config_props_output, | ||
171 | }, | ||
172 | }; | ||
173 | |||
174 | const AVFilter ff_vf_separatefields = { | ||
175 | .name = "separatefields", | ||
176 | .description = NULL_IF_CONFIG_SMALL("Split input video frames into fields."), | ||
177 | .priv_size = sizeof(SeparateFieldsContext), | ||
178 | .activate = activate, | ||
179 | .uninit = uninit, | ||
180 | FILTER_INPUTS(ff_video_default_filterpad), | ||
181 | FILTER_OUTPUTS(separatefields_outputs), | ||
182 | }; | ||
183 |