FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vf_interlace.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2003 Michael Zucchi <notzed@ximian.com>
3  * Copyright (c) 2010 Baptiste Coudurier
4  * Copyright (c) 2011 Stefano Sabatini
5  * Copyright (c) 2013 Vittorio Giovara <vittorio.giovara@gmail.com>
6  * Copyright (c) 2017 Thomas Mundt <tmundt75@gmail.com>
7  *
8  * This file is part of FFmpeg.
9  *
10  * FFmpeg is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * FFmpeg is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License along
21  * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
22  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  */
24 
25 /**
26  * @file
27  * progressive to interlaced content filter, inspired by heavy debugging of tinterlace filter
28  */
29 
30 #include "libavutil/common.h"
31 #include "libavutil/opt.h"
32 #include "libavutil/imgutils.h"
33 #include "libavutil/avassert.h"
34 
35 #include "formats.h"
36 #include "avfilter.h"
37 #include "interlace.h"
38 #include "internal.h"
39 #include "video.h"
40 
41 #define OFFSET(x) offsetof(InterlaceContext, x)
42 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
43 static const AVOption interlace_options[] = {
44  { "scan", "scanning mode", OFFSET(scan),
45  AV_OPT_TYPE_INT, {.i64 = MODE_TFF }, 0, 1, .flags = FLAGS, .unit = "scan" },
46  { "tff", "top field first", 0,
47  AV_OPT_TYPE_CONST, {.i64 = MODE_TFF }, INT_MIN, INT_MAX, .flags = FLAGS, .unit = "scan" },
48  { "bff", "bottom field first", 0,
49  AV_OPT_TYPE_CONST, {.i64 = MODE_BFF }, INT_MIN, INT_MAX, .flags = FLAGS, .unit = "scan" },
50  { "lowpass", "set vertical low-pass filter", OFFSET(lowpass),
51  AV_OPT_TYPE_INT, {.i64 = VLPF_LIN }, 0, 2, .flags = FLAGS, .unit = "lowpass" },
52  { "off", "disable vertical low-pass filter", 0,
53  AV_OPT_TYPE_CONST, {.i64 = VLPF_OFF }, INT_MIN, INT_MAX, .flags = FLAGS, .unit = "lowpass" },
54  { "linear", "linear vertical low-pass filter", 0,
55  AV_OPT_TYPE_CONST, {.i64 = VLPF_LIN }, INT_MIN, INT_MAX, .flags = FLAGS, .unit = "lowpass" },
56  { "complex", "complex vertical low-pass filter", 0,
57  AV_OPT_TYPE_CONST, {.i64 = VLPF_CMP }, INT_MIN, INT_MAX, .flags = FLAGS, .unit = "lowpass" },
58  { NULL }
59 };
60 
61 AVFILTER_DEFINE_CLASS(interlace);
62 
63 static void lowpass_line_c(uint8_t *dstp, ptrdiff_t linesize,
64  const uint8_t *srcp, ptrdiff_t mref,
65  ptrdiff_t pref, int clip_max)
66 {
67  const uint8_t *srcp_above = srcp + mref;
68  const uint8_t *srcp_below = srcp + pref;
69  int i;
70  for (i = 0; i < linesize; i++) {
71  // this calculation is an integer representation of
72  // '0.5 * current + 0.25 * above + 0.25 * below'
73  // '1 +' is for rounding.
74  dstp[i] = (1 + srcp[i] + srcp[i] + srcp_above[i] + srcp_below[i]) >> 2;
75  }
76 }
77 
78 static void lowpass_line_c_16(uint8_t *dst8, ptrdiff_t linesize,
79  const uint8_t *src8, ptrdiff_t mref,
80  ptrdiff_t pref, int clip_max)
81 {
82  uint16_t *dstp = (uint16_t *)dst8;
83  const uint16_t *srcp = (const uint16_t *)src8;
84  const uint16_t *srcp_above = srcp + mref / 2;
85  const uint16_t *srcp_below = srcp + pref / 2;
86  int i, src_x;
87  for (i = 0; i < linesize; i++) {
88  // this calculation is an integer representation of
89  // '0.5 * current + 0.25 * above + 0.25 * below'
90  // '1 +' is for rounding.
91  src_x = av_le2ne16(srcp[i]) << 1;
92  dstp[i] = av_le2ne16((1 + src_x + av_le2ne16(srcp_above[i])
93  + av_le2ne16(srcp_below[i])) >> 2);
94  }
95 }
96 
97 static void lowpass_line_complex_c(uint8_t *dstp, ptrdiff_t linesize,
98  const uint8_t *srcp, ptrdiff_t mref,
99  ptrdiff_t pref, int clip_max)
100 {
101  const uint8_t *srcp_above = srcp + mref;
102  const uint8_t *srcp_below = srcp + pref;
103  const uint8_t *srcp_above2 = srcp + mref * 2;
104  const uint8_t *srcp_below2 = srcp + pref * 2;
105  int i, src_x, src_ab;
106  for (i = 0; i < linesize; i++) {
107  // this calculation is an integer representation of
108  // '0.75 * current + 0.25 * above + 0.25 * below - 0.125 * above2 - 0.125 * below2'
109  // '4 +' is for rounding.
110  src_x = srcp[i] << 1;
111  src_ab = srcp_above[i] + srcp_below[i];
112  dstp[i] = av_clip_uint8((4 + ((srcp[i] + src_x + src_ab) << 1)
113  - srcp_above2[i] - srcp_below2[i]) >> 3);
114  // Prevent over-sharpening:
115  // dst must not exceed src when the average of above and below
116  // is less than src. And the other way around.
117  if (src_ab > src_x) {
118  if (dstp[i] < srcp[i])
119  dstp[i] = srcp[i];
120  } else if (dstp[i] > srcp[i])
121  dstp[i] = srcp[i];
122  }
123 }
124 
125 static void lowpass_line_complex_c_16(uint8_t *dst8, ptrdiff_t linesize,
126  const uint8_t *src8, ptrdiff_t mref,
127  ptrdiff_t pref, int clip_max)
128 {
129  uint16_t *dstp = (uint16_t *)dst8;
130  const uint16_t *srcp = (const uint16_t *)src8;
131  const uint16_t *srcp_above = srcp + mref / 2;
132  const uint16_t *srcp_below = srcp + pref / 2;
133  const uint16_t *srcp_above2 = srcp + mref;
134  const uint16_t *srcp_below2 = srcp + pref;
135  int i, dst_le, src_le, src_x, src_ab;
136  for (i = 0; i < linesize; i++) {
137  // this calculation is an integer representation of
138  // '0.75 * current + 0.25 * above + 0.25 * below - 0.125 * above2 - 0.125 * below2'
139  // '4 +' is for rounding.
140  src_le = av_le2ne16(srcp[i]);
141  src_x = src_le << 1;
142  src_ab = av_le2ne16(srcp_above[i]) + av_le2ne16(srcp_below[i]);
143  dst_le = av_clip((4 + ((src_le + src_x + src_ab) << 1)
144  - av_le2ne16(srcp_above2[i])
145  - av_le2ne16(srcp_below2[i])) >> 3, 0, clip_max);
146  // Prevent over-sharpening:
147  // dst must not exceed src when the average of above and below
148  // is less than src. And the other way around.
149  if (src_ab > src_x) {
150  if (dst_le < src_le)
151  dstp[i] = av_le2ne16(src_le);
152  else
153  dstp[i] = av_le2ne16(dst_le);
154  } else if (dst_le > src_le) {
155  dstp[i] = av_le2ne16(src_le);
156  } else
157  dstp[i] = av_le2ne16(dst_le);
158  }
159 }
160 
161 static const enum AVPixelFormat formats_supported[] = {
170 };
171 
173 {
175  if (!fmts_list)
176  return AVERROR(ENOMEM);
177  return ff_set_common_formats(ctx, fmts_list);
178 }
179 
181 {
182  InterlaceContext *s = ctx->priv;
183 
184  av_frame_free(&s->cur);
185  av_frame_free(&s->next);
186 }
187 
188 static int config_out_props(AVFilterLink *outlink)
189 {
190  AVFilterContext *ctx = outlink->src;
191  AVFilterLink *inlink = outlink->src->inputs[0];
192  InterlaceContext *s = ctx->priv;
193 
194  if (inlink->h < 2) {
195  av_log(ctx, AV_LOG_ERROR, "input video height is too small\n");
196  return AVERROR_INVALIDDATA;
197  }
198 
199  if (!s->lowpass)
200  av_log(ctx, AV_LOG_WARNING, "Lowpass filter is disabled, "
201  "the resulting video will be aliased rather than interlaced.\n");
202 
203  // same input size
204  outlink->w = inlink->w;
205  outlink->h = inlink->h;
206  outlink->time_base = inlink->time_base;
207  outlink->frame_rate = inlink->frame_rate;
208  // half framerate
209  outlink->time_base.num *= 2;
210  outlink->frame_rate.den *= 2;
211 
212  s->csp = av_pix_fmt_desc_get(outlink->format);
213  if (s->lowpass) {
214  if (s->lowpass == VLPF_LIN) {
215  if (s->csp->comp[0].depth > 8)
217  else
219  } else if (s->lowpass == VLPF_CMP) {
220  if (s->csp->comp[0].depth > 8)
222  else
224  }
225  if (ARCH_X86)
227  }
228 
229  av_log(ctx, AV_LOG_VERBOSE, "%s interlacing %s lowpass filter\n",
230  s->scan == MODE_TFF ? "tff" : "bff", (s->lowpass) ? "with" : "without");
231 
232  return 0;
233 }
234 
236  AVFrame *src_frame, AVFrame *dst_frame,
237  AVFilterLink *inlink, enum FieldType field_type,
238  int lowpass)
239 {
241  int hsub = desc->log2_chroma_w;
242  int vsub = desc->log2_chroma_h;
243  int plane, j;
244 
245  for (plane = 0; plane < desc->nb_components; plane++) {
246  int cols = (plane == 1 || plane == 2) ? -(-inlink->w) >> hsub : inlink->w;
247  int lines = (plane == 1 || plane == 2) ? AV_CEIL_RSHIFT(inlink->h, vsub) : inlink->h;
248  uint8_t *dstp = dst_frame->data[plane];
249  const uint8_t *srcp = src_frame->data[plane];
250  int srcp_linesize = src_frame->linesize[plane] * 2;
251  int dstp_linesize = dst_frame->linesize[plane] * 2;
252  int clip_max = (1 << s->csp->comp[plane].depth) - 1;
253 
254  av_assert0(cols >= 0 || lines >= 0);
255 
256  lines = (lines + (field_type == FIELD_UPPER)) / 2;
257  if (field_type == FIELD_LOWER) {
258  srcp += src_frame->linesize[plane];
259  dstp += dst_frame->linesize[plane];
260  }
261  if (lowpass) {
262  int x = 0;
263  if (lowpass == VLPF_CMP)
264  x = 1;
265  for (j = lines; j > 0; j--) {
266  ptrdiff_t pref = src_frame->linesize[plane];
267  ptrdiff_t mref = -pref;
268  if (j >= (lines - x))
269  mref = 0;
270  else if (j <= (1 + x))
271  pref = 0;
272  s->lowpass_line(dstp, cols, srcp, mref, pref, clip_max);
273  dstp += dstp_linesize;
274  srcp += srcp_linesize;
275  }
276  } else {
277  if (s->csp->comp[plane].depth > 8)
278  cols *= 2;
279  av_image_copy_plane(dstp, dstp_linesize, srcp, srcp_linesize, cols, lines);
280  }
281  }
282 }
283 
284 static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
285 {
286  AVFilterContext *ctx = inlink->dst;
287  AVFilterLink *outlink = ctx->outputs[0];
288  InterlaceContext *s = ctx->priv;
289  AVFrame *out;
290  int tff, ret;
291 
292  av_frame_free(&s->cur);
293  s->cur = s->next;
294  s->next = buf;
295 
296  /* we need at least two frames */
297  if (!s->cur || !s->next)
298  return 0;
299 
300  if (s->cur->interlaced_frame) {
301  av_log(ctx, AV_LOG_WARNING,
302  "video is already interlaced, adjusting framerate only\n");
303  out = av_frame_clone(s->cur);
304  if (!out)
305  return AVERROR(ENOMEM);
306  out->pts /= 2; // adjust pts to new framerate
307  ret = ff_filter_frame(outlink, out);
308  return ret;
309  }
310 
311  tff = (s->scan == MODE_TFF);
312  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
313  if (!out)
314  return AVERROR(ENOMEM);
315 
316  av_frame_copy_props(out, s->cur);
317  out->interlaced_frame = 1;
318  out->top_field_first = tff;
319  out->pts /= 2; // adjust pts to new framerate
320 
321  /* copy upper/lower field from cur */
322  copy_picture_field(s, s->cur, out, inlink, tff ? FIELD_UPPER : FIELD_LOWER, s->lowpass);
323  av_frame_free(&s->cur);
324 
325  /* copy lower/upper field from next */
326  copy_picture_field(s, s->next, out, inlink, tff ? FIELD_LOWER : FIELD_UPPER, s->lowpass);
327  av_frame_free(&s->next);
328 
329  ret = ff_filter_frame(outlink, out);
330 
331  return ret;
332 }
333 
334 static const AVFilterPad inputs[] = {
335  {
336  .name = "default",
337  .type = AVMEDIA_TYPE_VIDEO,
338  .filter_frame = filter_frame,
339  },
340  { NULL }
341 };
342 
343 static const AVFilterPad outputs[] = {
344  {
345  .name = "default",
346  .type = AVMEDIA_TYPE_VIDEO,
347  .config_props = config_out_props,
348  },
349  { NULL }
350 };
351 
353  .name = "interlace",
354  .description = NULL_IF_CONFIG_SMALL("Convert progressive video into interlaced."),
355  .uninit = uninit,
356  .priv_class = &interlace_class,
357  .priv_size = sizeof(InterlaceContext),
359  .inputs = inputs,
360  .outputs = outputs,
361 };
int plane
Definition: avisynth_c.h:422
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:768
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
void(* lowpass_line)(uint8_t *dstp, ptrdiff_t linesize, const uint8_t *srcp, ptrdiff_t mref, ptrdiff_t pref, int clip_max)
Definition: interlace.h:61
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2419
This structure describes decoded (raw) audio or video data.
Definition: frame.h:201
AVOption.
Definition: opt.h:246
planar YUV 4:2:0, 15bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:170
static const AVFilterPad inputs[]
Definition: vf_interlace.c:334
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:67
misc image utilities
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
Main libavfilter public API header.
const char * desc
Definition: nvenc.c:60
int num
Numerator.
Definition: rational.h:59
planar YUV 4:4:4 40bpp, (1 Cr & Cb sample per 1x1 Y & A samples, little-endian)
Definition: pixfmt.h:201
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:92
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:92
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
static enum AVPixelFormat formats_supported[]
Definition: vf_interlace.c:161
static int query_formats(AVFilterContext *ctx)
Definition: vf_interlace.c:172
BYTE int const BYTE * srcp
Definition: avisynth_c.h:813
const char * name
Pad name.
Definition: internal.h:60
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:346
static int config_out_props(AVFilterLink *outlink)
Definition: vf_interlace.c:188
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1151
static const AVFilterPad outputs[]
Definition: vf_interlace.c:343
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:102
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
Definition: pixdesc.h:117
uint8_t
#define av_cold
Definition: attributes.h:82
AVOptions.
planar YUV 4:4:4,36bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:265
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:294
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range...
Definition: pixfmt.h:101
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition: pixfmt.h:75
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:192
int interlaced_frame
The content of the picture is interlaced.
Definition: frame.h:348
#define av_log(a,...)
A filter pad used for either input or output.
Definition: internal.h:54
planar YUV 4:4:4, 30bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:176
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:188
FieldType
Definition: interlace.h:44
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: formats.c:568
void ff_interlace_init_x86(InterlaceContext *interlace)
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:101
BYTE * dstp
Definition: avisynth_c.h:813
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:163
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:179
void * priv
private data for use by the filter
Definition: avfilter.h:353
planar YUV 4:2:2, 20bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:172
AVFilter ff_vf_interlace
Definition: vf_interlace.c:352
simple assert() macros that are a bit more flexible than ISO C assert().
AVFrame * next
Definition: interlace.h:59
#define OFFSET(x)
Definition: vf_interlace.c:41
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:66
uint8_t nb_components
The number of components each pixel has, (1-4)
Definition: pixdesc.h:83
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition: pixfmt.h:74
#define FLAGS
Definition: vf_interlace.c:42
AVFormatContext * ctx
Definition: movenc.c:48
progressive to interlaced content filter, inspired by heavy debugging of tinterlace filter...
planar YUV 4:2:0,18bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:257
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
Definition: frame.c:492
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_interlace.c:180
#define av_le2ne16(x)
Definition: bswap.h:95
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:232
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition: pixfmt.h:189
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
AVFILTER_DEFINE_CLASS(interlace)
void * buf
Definition: avisynth_c.h:690
static void copy_picture_field(InterlaceContext *s, AVFrame *src_frame, AVFrame *dst_frame, AVFilterLink *inlink, enum FieldType field_type, int lowpass)
Definition: vf_interlace.c:235
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:68
static void lowpass_line_c(uint8_t *dstp, ptrdiff_t linesize, const uint8_t *srcp, ptrdiff_t mref, ptrdiff_t pref, int clip_max)
Definition: vf_interlace.c:63
Filter definition.
Definition: avfilter.h:144
const char * name
Filter name.
Definition: avfilter.h:148
static void lowpass_line_complex_c(uint8_t *dstp, ptrdiff_t linesize, const uint8_t *srcp, ptrdiff_t mref, ptrdiff_t pref, int clip_max)
Definition: vf_interlace.c:97
AVFrame * cur
Definition: interlace.h:59
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:350
planar YUV 4:2:2 30bpp, (1 Cr & Cb sample per 2x1 Y & A samples, little-endian)
Definition: pixfmt.h:199
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:215
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:62
planar YUV 4:2:2,24bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:261
Y , 8bpp.
Definition: pixfmt.h:70
static const AVOption interlace_options[]
Definition: vf_interlace.c:43
common internal and external API header
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition: pixfmt.h:76
enum ScanMode scan
Definition: interlace.h:57
static void lowpass_line_c_16(uint8_t *dst8, ptrdiff_t linesize, const uint8_t *src8, ptrdiff_t mref, ptrdiff_t pref, int clip_max)
Definition: vf_interlace.c:78
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:69
int den
Denominator.
Definition: rational.h:60
planar YUV 4:2:0 25bpp, (1 Cr & Cb sample per 2x2 Y & A samples, little-endian)
Definition: pixfmt.h:197
int top_field_first
If the content is interlaced, is top field displayed first.
Definition: frame.h:353
static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
Definition: vf_interlace.c:284
A list of supported formats for one end of a filter link.
Definition: formats.h:64
An instance of a filter.
Definition: avfilter.h:338
static void lowpass_line_complex_c_16(uint8_t *dst8, ptrdiff_t linesize, const uint8_t *src8, ptrdiff_t mref, ptrdiff_t pref, int clip_max)
Definition: vf_interlace.c:125
FILE * out
Definition: movenc.c:54
void av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height)
Copy image plane from src to dst.
Definition: imgutils.c:337
internal API functions
int depth
Number of bits in the component.
Definition: pixdesc.h:58
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
const AVPixFmtDescriptor * csp
Definition: interlace.h:60
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:603
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58