Libav
vf_delogo.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002 Jindrich Makovicka <makovick@gmail.com>
3  * Copyright (c) 2011 Stefano Sabatini
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with Libav; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 
28 #include "libavutil/common.h"
29 #include "libavutil/imgutils.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/pixdesc.h"
32 #include "avfilter.h"
33 #include "formats.h"
34 #include "internal.h"
35 #include "video.h"
36 
55 static void apply_delogo(uint8_t *dst, int dst_linesize,
56  uint8_t *src, int src_linesize,
57  int w, int h,
58  int logo_x, int logo_y, int logo_w, int logo_h,
59  int band, int show, int direct)
60 {
61  int x, y;
62  int interp, dist;
63  uint8_t *xdst, *xsrc;
64 
65  uint8_t *topleft, *botleft, *topright;
66  int xclipl, xclipr, yclipt, yclipb;
67  int logo_x1, logo_x2, logo_y1, logo_y2;
68 
69  xclipl = FFMAX(-logo_x, 0);
70  xclipr = FFMAX(logo_x+logo_w-w, 0);
71  yclipt = FFMAX(-logo_y, 0);
72  yclipb = FFMAX(logo_y+logo_h-h, 0);
73 
74  logo_x1 = logo_x + xclipl;
75  logo_x2 = logo_x + logo_w - xclipr;
76  logo_y1 = logo_y + yclipt;
77  logo_y2 = logo_y + logo_h - yclipb;
78 
79  topleft = src+logo_y1 * src_linesize+logo_x1;
80  topright = src+logo_y1 * src_linesize+logo_x2-1;
81  botleft = src+(logo_y2-1) * src_linesize+logo_x1;
82 
83  if (!direct)
84  av_image_copy_plane(dst, dst_linesize, src, src_linesize, w, h);
85 
86  dst += (logo_y1 + 1) * dst_linesize;
87  src += (logo_y1 + 1) * src_linesize;
88 
89  for (y = logo_y1+1; y < logo_y2-1; y++) {
90  for (x = logo_x1+1,
91  xdst = dst+logo_x1+1,
92  xsrc = src+logo_x1+1; x < logo_x2-1; x++, xdst++, xsrc++) {
93  interp = (topleft[src_linesize*(y-logo_y -yclipt)] +
94  topleft[src_linesize*(y-logo_y-1-yclipt)] +
95  topleft[src_linesize*(y-logo_y+1-yclipt)]) * (logo_w-(x-logo_x))/logo_w
96  + (topright[src_linesize*(y-logo_y-yclipt)] +
97  topright[src_linesize*(y-logo_y-1-yclipt)] +
98  topright[src_linesize*(y-logo_y+1-yclipt)]) * (x-logo_x)/logo_w
99  + (topleft[x-logo_x-xclipl] +
100  topleft[x-logo_x-1-xclipl] +
101  topleft[x-logo_x+1-xclipl]) * (logo_h-(y-logo_y))/logo_h
102  + (botleft[x-logo_x-xclipl] +
103  botleft[x-logo_x-1-xclipl] +
104  botleft[x-logo_x+1-xclipl]) * (y-logo_y)/logo_h;
105  interp /= 6;
106 
107  if (y >= logo_y+band && y < logo_y+logo_h-band &&
108  x >= logo_x+band && x < logo_x+logo_w-band) {
109  *xdst = interp;
110  } else {
111  dist = 0;
112  if (x < logo_x+band)
113  dist = FFMAX(dist, logo_x-x+band);
114  else if (x >= logo_x+logo_w-band)
115  dist = FFMAX(dist, x-(logo_x+logo_w-1-band));
116 
117  if (y < logo_y+band)
118  dist = FFMAX(dist, logo_y-y+band);
119  else if (y >= logo_y+logo_h-band)
120  dist = FFMAX(dist, y-(logo_y+logo_h-1-band));
121 
122  *xdst = (*xsrc*dist + interp*(band-dist))/band;
123  if (show && (dist == band-1))
124  *xdst = 0;
125  }
126  }
127 
128  dst += dst_linesize;
129  src += src_linesize;
130  }
131 }
132 
133 typedef struct DelogoContext {
134  const AVClass *class;
135  int x, y, w, h, band, show;
136 } DelogoContext;
137 
138 #define OFFSET(x) offsetof(DelogoContext, x)
139 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM
140 
141 static const AVOption delogo_options[]= {
142  { "x", "set logo x position", OFFSET(x), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
143  { "y", "set logo y position", OFFSET(y), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
144  { "w", "set logo width", OFFSET(w), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
145  { "h", "set logo height", OFFSET(h), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
146  { "band", "set delogo area band size", OFFSET(band), AV_OPT_TYPE_INT, { .i64 = 4 }, -1, INT_MAX, FLAGS },
147  { "t", "set delogo area band size", OFFSET(band), AV_OPT_TYPE_INT, { .i64 = 4 }, -1, INT_MAX, FLAGS },
148  { "show", "show delogo area", OFFSET(show), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS },
149  { NULL },
150 };
151 
152 static const char *delogo_get_name(void *ctx)
153 {
154  return "delogo";
155 }
156 
157 static const AVClass delogo_class = {
158  .class_name = "DelogoContext",
159  .item_name = delogo_get_name,
160  .option = delogo_options,
161 };
162 
164 {
165  enum AVPixelFormat pix_fmts[] = {
170  };
171 
173  return 0;
174 }
175 
176 static av_cold int init(AVFilterContext *ctx)
177 {
178  DelogoContext *s = ctx->priv;
179 
180 #define CHECK_UNSET_OPT(opt) \
181  if (s->opt == -1) { \
182  av_log(s, AV_LOG_ERROR, "Option %s was not set.\n", #opt); \
183  return AVERROR(EINVAL); \
184  }
189 
190  if (s->show)
191  s->band = 4;
192 
193  av_log(ctx, AV_LOG_DEBUG, "x:%d y:%d, w:%d h:%d band:%d show:%d\n",
194  s->x, s->y, s->w, s->h, s->band, s->show);
195 
196  s->w += s->band*2;
197  s->h += s->band*2;
198  s->x -= s->band;
199  s->y -= s->band;
200 
201  return 0;
202 }
203 
204 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
205 {
206  DelogoContext *s = inlink->dst->priv;
207  AVFilterLink *outlink = inlink->dst->outputs[0];
208  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
209  AVFrame *out;
210  int hsub0 = desc->log2_chroma_w;
211  int vsub0 = desc->log2_chroma_h;
212  int direct = 0;
213  int plane;
214 
215  if (av_frame_is_writable(in)) {
216  direct = 1;
217  out = in;
218  } else {
219  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
220  if (!out) {
221  av_frame_free(&in);
222  return AVERROR(ENOMEM);
223  }
224 
225  av_frame_copy_props(out, in);
226  out->width = outlink->w;
227  out->height = outlink->h;
228  }
229 
230  for (plane = 0; plane < 4 && in->data[plane]; plane++) {
231  int hsub = plane == 1 || plane == 2 ? hsub0 : 0;
232  int vsub = plane == 1 || plane == 2 ? vsub0 : 0;
233 
234  apply_delogo(out->data[plane], out->linesize[plane],
235  in ->data[plane], in ->linesize[plane],
236  inlink->w>>hsub, inlink->h>>vsub,
237  s->x>>hsub, s->y>>vsub,
238  s->w>>hsub, s->h>>vsub,
239  s->band>>FFMIN(hsub, vsub),
240  s->show, direct);
241  }
242 
243  if (!direct)
244  av_frame_free(&in);
245 
246  return ff_filter_frame(outlink, out);
247 }
248 
250  {
251  .name = "default",
252  .type = AVMEDIA_TYPE_VIDEO,
253  .get_video_buffer = ff_null_get_video_buffer,
254  .filter_frame = filter_frame,
255  },
256  { NULL }
257 };
258 
260  {
261  .name = "default",
262  .type = AVMEDIA_TYPE_VIDEO,
263  },
264  { NULL }
265 };
266 
268  .name = "delogo",
269  .description = NULL_IF_CONFIG_SMALL("Remove logo from input video."),
270  .priv_size = sizeof(DelogoContext),
271  .priv_class = &delogo_class,
272  .init = init,
274 
277 };
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:1599
This structure describes decoded (raw) audio or video data.
Definition: frame.h:135
AVOption.
Definition: opt.h:234
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:70
misc image utilities
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:232
Main libavfilter public API header.
#define FLAGS
Definition: vf_delogo.c:139
static int query_formats(AVFilterContext *ctx)
Definition: vf_delogo.c:163
AVFrame * ff_null_get_video_buffer(AVFilterLink *link, int w, int h)
Definition: video.c:30
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_dlog(ac->avr, "%d samples - audio_convert: %s to %s (dithered)\", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> out
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:104
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:80
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:165
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:38
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:733
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:104
uint8_t
#define av_cold
Definition: attributes.h:66
AVOptions.
static const AVClass delogo_class
Definition: vf_delogo.c:157
void 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:379
AVFilter ff_vf_delogo
Definition: vf_delogo.c:267
int width
width and height of the video frame
Definition: frame.h:174
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:89
static const AVFilterPad avfilter_vf_delogo_outputs[]
Definition: vf_delogo.c:259
#define AVERROR(e)
Definition: error.h:43
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_dlog(ac->avr, "%d samples - audio_convert: %s to %s (dithered)\", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:69
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:145
void * priv
private data for use by the filter
Definition: avfilter.h:584
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:144
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:169
static av_cold int init(AVFilterContext *ctx)
Definition: vf_delogo.c:176
#define OFFSET(x)
Definition: vf_delogo.c:138
#define FFMAX(a, b)
Definition: common.h:55
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:69
#define FFMIN(a, b)
Definition: common.h:57
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_delogo.c:204
NULL
Definition: eval.c:55
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition: frame.c:309
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:153
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
static const char * delogo_get_name(void *ctx)
Definition: vf_delogo.c:152
static const AVOption delogo_options[]
Definition: vf_delogo.c:141
static void apply_delogo(uint8_t *dst, int dst_linesize, uint8_t *src, int src_linesize, int w, int h, int logo_x, int logo_y, int logo_w, int logo_h, int band, int show, int direct)
Apply a simple delogo algorithm to the image in dst and put the result in src.
Definition: vf_delogo.c:55
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:71
Describe the class of an AVClass context structure.
Definition: log.h:33
Filter definition.
Definition: avfilter.h:421
static const AVFilterPad inputs[]
Definition: af_ashowinfo.c:221
const char * name
Filter name.
Definition: avfilter.h:425
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:578
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:141
#define CHECK_UNSET_OPT(opt)
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:65
Y , 8bpp.
Definition: pixfmt.h:73
common internal and external API header
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:72
struct AVFilterPad AVFilterPad
Definition: avfilter.h:67
An instance of a filter.
Definition: avfilter.h:563
int height
Definition: frame.h:174
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:102
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:254
internal API functions
static const AVFilterPad avfilter_vf_delogo_inputs[]
Definition: vf_delogo.c:249
AVPixelFormat
Pixel format.
Definition: pixfmt.h:63
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:367