vf_crop.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007 Bobby Bingham
3  *
4  * This file is part of Libav.
5  *
6  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
26 /* #define DEBUG */
27 
28 #include "avfilter.h"
29 #include "libavutil/eval.h"
30 #include "libavutil/avstring.h"
31 #include "libavutil/libm.h"
32 #include "libavutil/imgutils.h"
33 #include "libavutil/mathematics.h"
34 
35 static const char *var_names[] = {
36  "E",
37  "PHI",
38  "PI",
39  "in_w", "iw",
40  "in_h", "ih",
41  "out_w", "ow",
42  "out_h", "oh",
43  "x",
44  "y",
45  "n",
46  "pos",
47  "t",
48  NULL
49 };
50 
51 enum var_name {
65 };
66 
67 typedef struct {
68  int x;
69  int y;
70  int w;
71  int h;
72 
73  int max_step[4];
74  int hsub, vsub;
75  char x_expr[256], y_expr[256], ow_expr[256], oh_expr[256];
76  AVExpr *x_pexpr, *y_pexpr; /* parsed expressions for x and y */
77  double var_values[VAR_VARS_NB];
78 } CropContext;
79 
81 {
82  static const enum PixelFormat pix_fmts[] = {
106  };
107 
109 
110  return 0;
111 }
112 
113 static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
114 {
115  CropContext *crop = ctx->priv;
116 
117  av_strlcpy(crop->ow_expr, "iw", sizeof(crop->ow_expr));
118  av_strlcpy(crop->oh_expr, "ih", sizeof(crop->oh_expr));
119  av_strlcpy(crop->x_expr, "(in_w-out_w)/2", sizeof(crop->x_expr));
120  av_strlcpy(crop->y_expr, "(in_h-out_h)/2", sizeof(crop->y_expr));
121 
122  if (args)
123  sscanf(args, "%255[^:]:%255[^:]:%255[^:]:%255[^:]", crop->ow_expr, crop->oh_expr, crop->x_expr, crop->y_expr);
124 
125  return 0;
126 }
127 
128 static av_cold void uninit(AVFilterContext *ctx)
129 {
130  CropContext *crop = ctx->priv;
131 
132  av_expr_free(crop->x_pexpr); crop->x_pexpr = NULL;
133  av_expr_free(crop->y_pexpr); crop->y_pexpr = NULL;
134 }
135 
136 static inline int normalize_double(int *n, double d)
137 {
138  int ret = 0;
139 
140  if (isnan(d)) {
141  ret = AVERROR(EINVAL);
142  } else if (d > INT_MAX || d < INT_MIN) {
143  *n = d > INT_MAX ? INT_MAX : INT_MIN;
144  ret = AVERROR(EINVAL);
145  } else
146  *n = round(d);
147 
148  return ret;
149 }
150 
151 static int config_input(AVFilterLink *link)
152 {
153  AVFilterContext *ctx = link->dst;
154  CropContext *crop = ctx->priv;
155  const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[link->format];
156  int ret;
157  const char *expr;
158  double res;
159 
160  crop->var_values[VAR_E] = M_E;
161  crop->var_values[VAR_PHI] = M_PHI;
162  crop->var_values[VAR_PI] = M_PI;
163  crop->var_values[VAR_IN_W] = crop->var_values[VAR_IW] = ctx->inputs[0]->w;
164  crop->var_values[VAR_IN_H] = crop->var_values[VAR_IH] = ctx->inputs[0]->h;
165  crop->var_values[VAR_X] = NAN;
166  crop->var_values[VAR_Y] = NAN;
167  crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = NAN;
168  crop->var_values[VAR_OUT_H] = crop->var_values[VAR_OH] = NAN;
169  crop->var_values[VAR_N] = 0;
170  crop->var_values[VAR_T] = NAN;
171  crop->var_values[VAR_POS] = NAN;
172 
173  av_image_fill_max_pixsteps(crop->max_step, NULL, pix_desc);
176 
177  if ((ret = av_expr_parse_and_eval(&res, (expr = crop->ow_expr),
178  var_names, crop->var_values,
179  NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
180  crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = res;
181  if ((ret = av_expr_parse_and_eval(&res, (expr = crop->oh_expr),
182  var_names, crop->var_values,
183  NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
184  crop->var_values[VAR_OUT_H] = crop->var_values[VAR_OH] = res;
185  /* evaluate again ow as it may depend on oh */
186  if ((ret = av_expr_parse_and_eval(&res, (expr = crop->ow_expr),
187  var_names, crop->var_values,
188  NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
189  crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = res;
190  if (normalize_double(&crop->w, crop->var_values[VAR_OUT_W]) < 0 ||
191  normalize_double(&crop->h, crop->var_values[VAR_OUT_H]) < 0) {
192  av_log(ctx, AV_LOG_ERROR,
193  "Too big value or invalid expression for out_w/ow or out_h/oh. "
194  "Maybe the expression for out_w:'%s' or for out_h:'%s' is self-referencing.\n",
195  crop->ow_expr, crop->oh_expr);
196  return AVERROR(EINVAL);
197  }
198  crop->w &= ~((1 << crop->hsub) - 1);
199  crop->h &= ~((1 << crop->vsub) - 1);
200 
201  if ((ret = av_expr_parse(&crop->x_pexpr, crop->x_expr, var_names,
202  NULL, NULL, NULL, NULL, 0, ctx)) < 0 ||
203  (ret = av_expr_parse(&crop->y_pexpr, crop->y_expr, var_names,
204  NULL, NULL, NULL, NULL, 0, ctx)) < 0)
205  return AVERROR(EINVAL);
206 
207  av_log(ctx, AV_LOG_INFO, "w:%d h:%d -> w:%d h:%d\n",
208  link->w, link->h, crop->w, crop->h);
209 
210  if (crop->w <= 0 || crop->h <= 0 ||
211  crop->w > link->w || crop->h > link->h) {
212  av_log(ctx, AV_LOG_ERROR,
213  "Invalid too big or non positive size for width '%d' or height '%d'\n",
214  crop->w, crop->h);
215  return AVERROR(EINVAL);
216  }
217 
218  /* set default, required in the case the first computed value for x/y is NAN */
219  crop->x = (link->w - crop->w) / 2;
220  crop->y = (link->h - crop->h) / 2;
221  crop->x &= ~((1 << crop->hsub) - 1);
222  crop->y &= ~((1 << crop->vsub) - 1);
223  return 0;
224 
225 fail_expr:
226  av_log(NULL, AV_LOG_ERROR, "Error when evaluating the expression '%s'\n", expr);
227  return ret;
228 }
229 
230 static int config_output(AVFilterLink *link)
231 {
232  CropContext *crop = link->src->priv;
233 
234  link->w = crop->w;
235  link->h = crop->h;
236 
237  return 0;
238 }
239 
240 static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
241 {
242  AVFilterContext *ctx = link->dst;
243  CropContext *crop = ctx->priv;
244  AVFilterBufferRef *ref2;
245  int i;
246 
247  ref2 = avfilter_ref_buffer(picref, ~0);
248  ref2->video->w = crop->w;
249  ref2->video->h = crop->h;
250 
251  crop->var_values[VAR_T] = picref->pts == AV_NOPTS_VALUE ?
252  NAN : picref->pts * av_q2d(link->time_base);
253  crop->var_values[VAR_POS] = picref->pos == -1 ? NAN : picref->pos;
254  crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
255  crop->var_values[VAR_Y] = av_expr_eval(crop->y_pexpr, crop->var_values, NULL);
256  crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
257 
258  normalize_double(&crop->x, crop->var_values[VAR_X]);
259  normalize_double(&crop->y, crop->var_values[VAR_Y]);
260 
261  if (crop->x < 0) crop->x = 0;
262  if (crop->y < 0) crop->y = 0;
263  if ((unsigned)crop->x + (unsigned)crop->w > link->w) crop->x = link->w - crop->w;
264  if ((unsigned)crop->y + (unsigned)crop->h > link->h) crop->y = link->h - crop->h;
265  crop->x &= ~((1 << crop->hsub) - 1);
266  crop->y &= ~((1 << crop->vsub) - 1);
267 
268  av_dlog(ctx, "n:%d t:%f x:%d y:%d x+w:%d y+h:%d\n",
269  (int)crop->var_values[VAR_N], crop->var_values[VAR_T], crop->x,
270  crop->y, crop->x+crop->w, crop->y+crop->h);
271 
272  ref2->data[0] += crop->y * ref2->linesize[0];
273  ref2->data[0] += crop->x * crop->max_step[0];
274 
276  for (i = 1; i < 3; i ++) {
277  if (ref2->data[i]) {
278  ref2->data[i] += (crop->y >> crop->vsub) * ref2->linesize[i];
279  ref2->data[i] += (crop->x * crop->max_step[i]) >> crop->hsub;
280  }
281  }
282  }
283 
284  /* alpha plane */
285  if (ref2->data[3]) {
286  ref2->data[3] += crop->y * ref2->linesize[3];
287  ref2->data[3] += crop->x * crop->max_step[3];
288  }
289 
290  avfilter_start_frame(link->dst->outputs[0], ref2);
291 }
292 
293 static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
294 {
295  AVFilterContext *ctx = link->dst;
296  CropContext *crop = ctx->priv;
297 
298  if (y >= crop->y + crop->h || y + h <= crop->y)
299  return;
300 
301  if (y < crop->y) {
302  h -= crop->y - y;
303  y = crop->y;
304  }
305  if (y + h > crop->y + crop->h)
306  h = crop->y + crop->h - y;
307 
308  avfilter_draw_slice(ctx->outputs[0], y - crop->y, h, slice_dir);
309 }
310 
311 static void end_frame(AVFilterLink *link)
312 {
313  CropContext *crop = link->dst->priv;
314 
315  crop->var_values[VAR_N] += 1.0;
317  avfilter_end_frame(link->dst->outputs[0]);
318 }
319 
321  .name = "crop",
322  .description = NULL_IF_CONFIG_SMALL("Crop the input video to width:height:x:y."),
323 
324  .priv_size = sizeof(CropContext),
325 
327  .init = init,
328  .uninit = uninit,
329 
330  .inputs = (AVFilterPad[]) {{ .name = "default",
331  .type = AVMEDIA_TYPE_VIDEO,
332  .start_frame = start_frame,
333  .draw_slice = draw_slice,
334  .end_frame = end_frame,
335  .get_video_buffer = avfilter_null_get_video_buffer,
336  .config_props = config_input, },
337  { .name = NULL}},
338  .outputs = (AVFilterPad[]) {{ .name = "default",
339  .type = AVMEDIA_TYPE_VIDEO,
340  .config_props = config_output, },
341  { .name = NULL}},
342 };
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:68
AVExpr * x_pexpr
Definition: vf_crop.c:76
AVFilterBufferRefVideoProps * video
video buffer specific properties
Definition: avfilter.h:141
int linesize[8]
number of bytes per line
Definition: avfilter.h:127
static int config_input(AVFilterLink *link)
Definition: vf_crop.c:151
misc image utilities
Y , 16bpp, big-endian.
Definition: pixfmt.h:97
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV422P and setting color_...
Definition: pixfmt.h:77
planar YUV 4:2:0, 24bpp, (1 Cr & Cb sample per 2x2 Y samples), big-endian
Definition: pixfmt.h:125
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:71
static const char * var_names[]
Definition: vf_crop.c:35
int av_expr_parse(AVExpr **expr, const char *s, const char *const *const_names, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), int log_offset, void *log_ctx)
Parse an expression.
Definition: eval.c:465
Definition: vf_crop.c:54
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:66
Definition: vf_crop.c:57
void av_image_fill_max_pixsteps(int max_pixsteps[4], int max_pixstep_comps[4], const AVPixFmtDescriptor *pixdesc)
Compute the max pixel step for each plane of an image with a format described by pixdesc.
Definition: imgutils.c:29
planar YUV 4:2:2, 32bpp, (1 Cr & Cb sample per 2x1 Y samples), big-endian
Definition: pixfmt.h:127
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV444P and setting color_...
Definition: pixfmt.h:78
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:547
planar YUV 4:2:0, 24bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
Definition: pixfmt.h:124
packed RGB 3:3:2, 8bpp, (msb)2R 3G 3B(lsb)
Definition: pixfmt.h:86
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:99
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:64
#define av_cold
Definition: attributes.h:71
#define round(bias)
Definition: idct_mmx.c:31
packed BGR 5:5:5, 16bpp, (msb)1A 5B 5G 5R(lsb), little-endian, most significant bit to 1 ...
Definition: pixfmt.h:118
int x
x offset of the non-cropped area with respect to the input area
Definition: vf_crop.c:68
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:70
char oh_expr[256]
Definition: vf_crop.c:75
int y
y offset of the non-cropped area with respect to the input area
Definition: vf_crop.c:69
Definition: vf_crop.c:52
static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
Definition: vf_crop.c:240
int max_step[4]
max pixel step for each plane, expressed as a number of bytes
Definition: vf_crop.c:73
void avfilter_end_frame(AVFilterLink *link)
Notifie the next filter that the current frame has finished.
Definition: avfilter.c:430
Definition: eval.c:119
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition: pixfmt.h:95
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV420P and setting color_...
Definition: pixfmt.h:76
static double av_q2d(AVRational a)
Convert rational to double.
Definition: rational.h:69
AVFilter avfilter_vf_crop
Definition: vf_crop.c:320
Definition: vf_crop.c:56
packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as lit...
Definition: pixfmt.h:108
var_name
Definition: vf_boxblur.c:43
packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), big-endian
Definition: pixfmt.h:110
packed BGR 5:6:5, 16bpp, (msb) 5B 6G 5R(lsb), little-endian
Definition: pixfmt.h:116
int64_t pts
presentation timestamp.
Definition: avfilter.h:135
A filter pad used for either input or output.
Definition: avfilter.h:312
Y , 16bpp, little-endian.
Definition: pixfmt.h:98
int hsub
Definition: vf_crop.c:74
int av_expr_parse_and_eval(double *d, const char *s, const char *const *const_names, const double *const_values, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), void *opaque, int log_offset, void *log_ctx)
Parse and evaluate an expression.
Definition: eval.c:524
packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), little-endian
Definition: pixfmt.h:111
void avfilter_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: defaults.c:234
int h
image height
Definition: avfilter.h:108
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:75
Definition: vf_crop.c:61
double var_values[VAR_VARS_NB]
Definition: vf_crop.c:77
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:191
void * priv
private data for use by the filter
Definition: avfilter.h:553
packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as big...
Definition: pixfmt.h:107
packed BGR 5:6:5, 16bpp, (msb) 5B 6G 5R(lsb), big-endian
Definition: pixfmt.h:115
#define PIX_FMT_PAL
Pixel format has a palette in data[1], values are indexes in this palette.
Definition: pixdesc.h:87
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:140
AVFilterFormats * avfilter_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:90
static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
Definition: vf_crop.c:113
const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB]
The array of all the pixel format descriptors.
Definition: pixdesc.c:119
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
Definition: avstring.c:64
char y_expr[256]
Definition: vf_crop.c:75
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:69
static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
Definition: vf_crop.c:293
packed RGB 1:2:1, 8bpp, (msb)1B 2G 1R(lsb)
Definition: pixfmt.h:85
char x_expr[256]
Definition: vf_crop.c:75
#define NAN
Definition: mathematics.h:54
packed RGB 1:2:1, 8bpp, (msb)1R 2G 1B(lsb)
Definition: pixfmt.h:88
packed RGB 16:16:16, 48bpp, 16B, 16G, 16R, the 2-byte value for each R/G/B component is stored as big...
Definition: pixfmt.h:138
#define M_E
Definition: ratecontrol.c:39
planar YUV 4:2:2, 32bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
Definition: pixfmt.h:126
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of PIX_FMT_YUV440P and setting color_range ...
Definition: pixfmt.h:100
char ow_expr[256]
Definition: vf_crop.c:75
AVExpr * y_pexpr
Definition: vf_crop.c:76
void avfilter_draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
Send a slice to the next filter.
Definition: avfilter.c:447
static int query_formats(AVFilterContext *ctx)
Definition: vf_crop.c:80
#define av_dlog(pctx,...)
av_dlog macros Useful to print debug messages that shouldn't get compiled in normally.
Definition: log.h:158
planar YUV 4:4:4, 48bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
Definition: pixfmt.h:128
int h
height of the cropped area
Definition: vf_crop.c:71
void avfilter_unref_buffer(AVFilterBufferRef *ref)
Remove a reference to a buffer.
Definition: avfilter.c:73
int vsub
chroma subsampling
Definition: vf_crop.c:74
A reference to an AVFilterBuffer.
Definition: avfilter.h:124
NULL
Definition: eval.c:50
Definition: vf_crop.c:59
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
Definition: eval.c:185
uint8_t flags
Definition: pixdesc.h:76
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:55
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_crop.c:128
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
Definition: pixfmt.h:92
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:111
packed RGB 5:5:5, 16bpp, (msb)1A 5R 5G 5B(lsb), big-endian, most significant bit to 0 ...
Definition: pixfmt.h:112
Definition: vf_crop.c:55
Replacements for frequently missing libm functions.
Filter definition.
Definition: avfilter.h:497
AVFilterBufferRef * avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask)
Add a new reference to a buffer.
Definition: avfilter.c:47
packed RGB 5:5:5, 16bpp, (msb)1A 5R 5G 5B(lsb), little-endian, most significant bit to 0 ...
Definition: pixfmt.h:113
packed BGR 5:5:5, 16bpp, (msb)1A 5B 5G 5R(lsb), big-endian, most significant bit to 1 ...
Definition: pixfmt.h:117
void avfilter_start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
Notify the next filter of the start of a frame.
Definition: avfilter.c:400
packed RGB 3:3:2, 8bpp, (msb)2B 3G 3R(lsb)
Definition: pixfmt.h:83
#define M_PHI
Definition: mathematics.h:42
const char * name
filter name
Definition: avfilter.h:498
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:67
AVFilterBufferRef * avfilter_null_get_video_buffer(AVFilterLink *link, int perms, int w, int h)
get_video_buffer() handler for filters which simply pass video along
Definition: defaults.c:288
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:551
Definition: vf_crop.c:58
packed RGB 16:16:16, 48bpp, 16B, 16G, 16R, the 2-byte value for each R/G/B component is stored as lit...
Definition: pixfmt.h:139
PixelFormat
Pixel format.
Definition: pixfmt.h:62
static int normalize_double(int *n, double d)
Definition: vf_crop.c:136
static int config_output(AVFilterLink *link)
Definition: vf_crop.c:230
Definition: vf_crop.c:60
8 bit with PIX_FMT_RGB32 palette
Definition: pixfmt.h:75
Definition: vf_crop.c:63
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:66
int64_t pos
byte position in stream, -1 if unknown
Definition: avfilter.h:136
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
Definition: eval.c:515
uint8_t * data[8]
picture/audio data for each plane
Definition: avfilter.h:126
An instance of a filter.
Definition: avfilter.h:538
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition: pixfmt.h:93
#define AV_LOG_INFO
Definition: log.h:119
static void end_frame(AVFilterLink *link)
Definition: vf_crop.c:311
packed ABGR 8:8:8:8, 32bpp, ABGRABGR...
Definition: pixfmt.h:94
Y , 8bpp.
Definition: pixfmt.h:72
int w
width of the cropped area
Definition: vf_crop.c:70
#define M_PI
Definition: cos_tablegen.c:28
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:271
planar YUV 4:4:4, 48bpp, (1 Cr & Cb sample per 1x1 Y samples), big-endian
Definition: pixfmt.h:129
simple arithmetic expression evaluator
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:101