FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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  * Copyright (c) 2013 Jean Delvare <khali@linux-fr.org>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22 
23 /**
24  * @file
25  * A very simple tv station logo remover
26  * Originally imported from MPlayer libmpcodecs/vf_delogo.c,
27  * the algorithm was later improved.
28  */
29 
30 #include "libavutil/common.h"
31 #include "libavutil/imgutils.h"
32 #include "libavutil/opt.h"
33 #include "libavutil/pixdesc.h"
34 #include "avfilter.h"
35 #include "formats.h"
36 #include "internal.h"
37 #include "video.h"
38 
39 /**
40  * Apply a simple delogo algorithm to the image in src and put the
41  * result in dst.
42  *
43  * The algorithm is only applied to the region specified by the logo
44  * parameters.
45  *
46  * @param w width of the input image
47  * @param h height of the input image
48  * @param logo_x x coordinate of the top left corner of the logo region
49  * @param logo_y y coordinate of the top left corner of the logo region
50  * @param logo_w width of the logo
51  * @param logo_h height of the logo
52  * @param band the size of the band around the processed area
53  * @param show show a rectangle around the processed area, useful for
54  * parameters tweaking
55  * @param direct if non-zero perform in-place processing
56  */
57 static void apply_delogo(uint8_t *dst, int dst_linesize,
58  uint8_t *src, int src_linesize,
59  int w, int h, AVRational sar,
60  int logo_x, int logo_y, int logo_w, int logo_h,
61  unsigned int band, int show, int direct)
62 {
63  int x, y;
64  uint64_t interp, weightl, weightr, weightt, weightb;
65  uint8_t *xdst, *xsrc;
66 
67  uint8_t *topleft, *botleft, *topright;
68  unsigned int left_sample, right_sample;
69  int xclipl, xclipr, yclipt, yclipb;
70  int logo_x1, logo_x2, logo_y1, logo_y2;
71 
72  xclipl = FFMAX(-logo_x, 0);
73  xclipr = FFMAX(logo_x+logo_w-w, 0);
74  yclipt = FFMAX(-logo_y, 0);
75  yclipb = FFMAX(logo_y+logo_h-h, 0);
76 
77  logo_x1 = logo_x + xclipl;
78  logo_x2 = logo_x + logo_w - xclipr;
79  logo_y1 = logo_y + yclipt;
80  logo_y2 = logo_y + logo_h - yclipb;
81 
82  topleft = src+logo_y1 * src_linesize+logo_x1;
83  topright = src+logo_y1 * src_linesize+logo_x2-1;
84  botleft = src+(logo_y2-1) * src_linesize+logo_x1;
85 
86  if (!direct)
87  av_image_copy_plane(dst, dst_linesize, src, src_linesize, w, h);
88 
89  dst += (logo_y1 + 1) * dst_linesize;
90  src += (logo_y1 + 1) * src_linesize;
91 
92  for (y = logo_y1+1; y < logo_y2-1; y++) {
93  left_sample = topleft[src_linesize*(y-logo_y1)] +
94  topleft[src_linesize*(y-logo_y1-1)] +
95  topleft[src_linesize*(y-logo_y1+1)];
96  right_sample = topright[src_linesize*(y-logo_y1)] +
97  topright[src_linesize*(y-logo_y1-1)] +
98  topright[src_linesize*(y-logo_y1+1)];
99 
100  for (x = logo_x1+1,
101  xdst = dst+logo_x1+1,
102  xsrc = src+logo_x1+1; x < logo_x2-1; x++, xdst++, xsrc++) {
103 
104  /* Weighted interpolation based on relative distances, taking SAR into account */
105  weightl = (uint64_t) (logo_x2-1-x) * (y-logo_y1) * (logo_y2-1-y) * sar.den;
106  weightr = (uint64_t)(x-logo_x1) * (y-logo_y1) * (logo_y2-1-y) * sar.den;
107  weightt = (uint64_t)(x-logo_x1) * (logo_x2-1-x) * (logo_y2-1-y) * sar.num;
108  weightb = (uint64_t)(x-logo_x1) * (logo_x2-1-x) * (y-logo_y1) * sar.num;
109 
110  interp =
111  left_sample * weightl
112  +
113  right_sample * weightr
114  +
115  (topleft[x-logo_x1] +
116  topleft[x-logo_x1-1] +
117  topleft[x-logo_x1+1]) * weightt
118  +
119  (botleft[x-logo_x1] +
120  botleft[x-logo_x1-1] +
121  botleft[x-logo_x1+1]) * weightb;
122  interp /= (weightl + weightr + weightt + weightb) * 3U;
123 
124  if (y >= logo_y+band && y < logo_y+logo_h-band &&
125  x >= logo_x+band && x < logo_x+logo_w-band) {
126  *xdst = interp;
127  } else {
128  unsigned dist = 0;
129 
130  if (x < logo_x+band)
131  dist = FFMAX(dist, logo_x-x+band);
132  else if (x >= logo_x+logo_w-band)
133  dist = FFMAX(dist, x-(logo_x+logo_w-1-band));
134 
135  if (y < logo_y+band)
136  dist = FFMAX(dist, logo_y-y+band);
137  else if (y >= logo_y+logo_h-band)
138  dist = FFMAX(dist, y-(logo_y+logo_h-1-band));
139 
140  *xdst = (*xsrc*dist + interp*(band-dist))/band;
141  if (show && (dist == band-1))
142  *xdst = 0;
143  }
144  }
145 
146  dst += dst_linesize;
147  src += src_linesize;
148  }
149 }
150 
151 typedef struct DelogoContext {
152  const AVClass *class;
153  int x, y, w, h, band, show;
154 } DelogoContext;
155 
156 #define OFFSET(x) offsetof(DelogoContext, x)
157 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
158 
159 static const AVOption delogo_options[]= {
160  { "x", "set logo x position", OFFSET(x), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
161  { "y", "set logo y position", OFFSET(y), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
162  { "w", "set logo width", OFFSET(w), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
163  { "h", "set logo height", OFFSET(h), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
164  { "band", "set delogo area band size", OFFSET(band), AV_OPT_TYPE_INT, { .i64 = 4 }, 1, INT_MAX, FLAGS },
165  { "t", "set delogo area band size", OFFSET(band), AV_OPT_TYPE_INT, { .i64 = 4 }, 1, INT_MAX, FLAGS },
166  { "show", "show delogo area", OFFSET(show), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS },
167  { NULL }
168 };
169 
170 AVFILTER_DEFINE_CLASS(delogo);
171 
173 {
174  static const enum AVPixelFormat pix_fmts[] = {
179  };
180  AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
181  if (!fmts_list)
182  return AVERROR(ENOMEM);
183  return ff_set_common_formats(ctx, fmts_list);
184 }
185 
186 static av_cold int init(AVFilterContext *ctx)
187 {
188  DelogoContext *s = ctx->priv;
189 
190 #define CHECK_UNSET_OPT(opt) \
191  if (s->opt == -1) { \
192  av_log(s, AV_LOG_ERROR, "Option %s was not set.\n", #opt); \
193  return AVERROR(EINVAL); \
194  }
195  CHECK_UNSET_OPT(x);
197  CHECK_UNSET_OPT(w);
199 
200  av_log(ctx, AV_LOG_VERBOSE, "x:%d y:%d, w:%d h:%d band:%d show:%d\n",
201  s->x, s->y, s->w, s->h, s->band, s->show);
202 
203  s->w += s->band*2;
204  s->h += s->band*2;
205  s->x -= s->band;
206  s->y -= s->band;
207 
208  return 0;
209 }
210 
211 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
212 {
213  DelogoContext *s = inlink->dst->priv;
214  AVFilterLink *outlink = inlink->dst->outputs[0];
215  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
216  AVFrame *out;
217  int hsub0 = desc->log2_chroma_w;
218  int vsub0 = desc->log2_chroma_h;
219  int direct = 0;
220  int plane;
221  AVRational sar;
222 
223  if (av_frame_is_writable(in)) {
224  direct = 1;
225  out = in;
226  } else {
227  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
228  if (!out) {
229  av_frame_free(&in);
230  return AVERROR(ENOMEM);
231  }
232 
233  av_frame_copy_props(out, in);
234  }
235 
236  sar = in->sample_aspect_ratio;
237  /* Assume square pixels if SAR is unknown */
238  if (!sar.num)
239  sar.num = sar.den = 1;
240 
241  for (plane = 0; plane < 4 && in->data[plane] && in->linesize[plane]; plane++) {
242  int hsub = plane == 1 || plane == 2 ? hsub0 : 0;
243  int vsub = plane == 1 || plane == 2 ? vsub0 : 0;
244 
245  apply_delogo(out->data[plane], out->linesize[plane],
246  in ->data[plane], in ->linesize[plane],
247  FF_CEIL_RSHIFT(inlink->w, hsub),
248  FF_CEIL_RSHIFT(inlink->h, vsub),
249  sar, s->x>>hsub, s->y>>vsub,
250  /* Up and left borders were rounded down, inject lost bits
251  * into width and height to avoid error accumulation */
252  FF_CEIL_RSHIFT(s->w + (s->x & ((1<<hsub)-1)), hsub),
253  FF_CEIL_RSHIFT(s->h + (s->y & ((1<<vsub)-1)), vsub),
254  s->band>>FFMIN(hsub, vsub),
255  s->show, direct);
256  }
257 
258  if (!direct)
259  av_frame_free(&in);
260 
261  return ff_filter_frame(outlink, out);
262 }
263 
265  {
266  .name = "default",
267  .type = AVMEDIA_TYPE_VIDEO,
268  .filter_frame = filter_frame,
269  },
270  { NULL }
271 };
272 
274  {
275  .name = "default",
276  .type = AVMEDIA_TYPE_VIDEO,
277  },
278  { NULL }
279 };
280 
282  .name = "delogo",
283  .description = NULL_IF_CONFIG_SMALL("Remove logo from input video."),
284  .priv_size = sizeof(DelogoContext),
285  .priv_class = &delogo_class,
286  .init = init,
288  .inputs = avfilter_vf_delogo_inputs,
289  .outputs = avfilter_vf_delogo_outputs,
291 };
int plane
Definition: avisynth_c.h:291
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:631
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2129
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
AVOption.
Definition: opt.h:255
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:68
misc image utilities
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:248
Main libavfilter public API header.
static void apply_delogo(uint8_t *dst, int dst_linesize, uint8_t *src, int src_linesize, int w, int h, AVRational sar, int logo_x, int logo_y, int logo_w, int logo_h, unsigned int band, int show, int direct)
Apply a simple delogo algorithm to the image in src and put the result in dst.
Definition: vf_delogo.c:57
#define FLAGS
Definition: vf_delogo.c:157
int num
numerator
Definition: rational.h:44
static int query_formats(AVFilterContext *ctx)
Definition: vf_delogo.c:172
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:109
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:283
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition: avfilter.h:451
const char * name
Pad name.
Definition: internal.h:69
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1158
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:103
uint8_t
#define av_cold
Definition: attributes.h:74
AVOptions.
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:192
AVFilter ff_vf_delogo
Definition: vf_delogo.c:281
#define av_log(a,...)
A filter pad used for either input or output.
Definition: internal.h:63
#define U(x)
Definition: vp56_arith.h:37
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:542
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:273
#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:148
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
void * priv
private data for use by the filter
Definition: avfilter.h:654
static av_cold int init(AVFilterContext *ctx)
Definition: vf_delogo.c:186
#define OFFSET(x)
Definition: vf_delogo.c:156
#define FFMAX(a, b)
Definition: common.h:79
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:67
#define FFMIN(a, b)
Definition: common.h:81
float y
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_delogo.c:211
#define FF_CEIL_RSHIFT(a, b)
Definition: common.h:57
AVFILTER_DEFINE_CLASS(delogo)
AVS_Value src
Definition: avisynth_c.h:482
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition: frame.c:493
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
Definition: frame.h:252
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;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);returnNULL;}returnac;}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;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->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);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
static const AVOption delogo_options[]
Definition: vf_delogo.c:159
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:69
Describe the class of an AVClass context structure.
Definition: log.h:67
Filter definition.
Definition: avfilter.h:470
static const AVFilterPad inputs[]
Definition: af_ashowinfo.c:239
rational number numerator/denominator
Definition: rational.h:43
const char * name
Filter name.
Definition: avfilter.h:474
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:648
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:209
static int flags
Definition: cpu.c:47
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
#define CHECK_UNSET_OPT(opt)
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:63
Y , 8bpp.
Definition: pixfmt.h:71
common internal and external API header
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:70
int den
denominator
Definition: rational.h:45
A list of supported formats for one end of a filter link.
Definition: formats.h:64
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;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);returnNULL;}returnac;}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;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->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);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> out
An instance of a filter.
Definition: avfilter.h:633
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:101
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:273
internal API functions
static const AVFilterPad avfilter_vf_delogo_inputs[]
Definition: vf_delogo.c:264
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:553