FFmpeg  2.8.15
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
vf_transpose.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010 Stefano Sabatini
3  * Copyright (c) 2008 Vitor Sessak
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg 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 GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * transposition filter
25  * Based on MPlayer libmpcodecs/vf_rotate.c.
26  */
27 
28 #include <stdio.h>
29 
30 #include "libavutil/avassert.h"
31 #include "libavutil/imgutils.h"
32 #include "libavutil/internal.h"
33 #include "libavutil/intreadwrite.h"
34 #include "libavutil/opt.h"
35 #include "libavutil/pixdesc.h"
36 
37 #include "avfilter.h"
38 #include "formats.h"
39 #include "internal.h"
40 #include "video.h"
41 
42 typedef enum {
47 
53 };
54 
55 typedef struct TransContext {
56  const AVClass *class;
57  int hsub, vsub;
58  int planes;
59  int pixsteps[4];
60 
61  int passthrough; ///< PassthroughType, landscape passthrough mode enabled
62  int dir; ///< TransposeDir
63 } TransContext;
64 
66 {
68  int fmt;
69 
70  for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
71  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
72  if (!(desc->flags & AV_PIX_FMT_FLAG_PAL ||
75  desc->log2_chroma_w != desc->log2_chroma_h))
76  ff_add_format(&pix_fmts, fmt);
77  }
78 
79 
80  return ff_set_common_formats(ctx, pix_fmts);
81 }
82 
83 static int config_props_output(AVFilterLink *outlink)
84 {
85  AVFilterContext *ctx = outlink->src;
86  TransContext *trans = ctx->priv;
87  AVFilterLink *inlink = ctx->inputs[0];
88  const AVPixFmtDescriptor *desc_out = av_pix_fmt_desc_get(outlink->format);
89  const AVPixFmtDescriptor *desc_in = av_pix_fmt_desc_get(inlink->format);
90 
91  if (trans->dir&4) {
93  "dir values greater than 3 are deprecated, use the passthrough option instead\n");
94  trans->dir &= 3;
96  }
97 
98  if ((inlink->w >= inlink->h && trans->passthrough == TRANSPOSE_PT_TYPE_LANDSCAPE) ||
99  (inlink->w <= inlink->h && trans->passthrough == TRANSPOSE_PT_TYPE_PORTRAIT)) {
100  av_log(ctx, AV_LOG_VERBOSE,
101  "w:%d h:%d -> w:%d h:%d (passthrough mode)\n",
102  inlink->w, inlink->h, inlink->w, inlink->h);
103  return 0;
104  } else {
106  }
107 
108  trans->hsub = desc_in->log2_chroma_w;
109  trans->vsub = desc_in->log2_chroma_h;
110  trans->planes = av_pix_fmt_count_planes(outlink->format);
111 
112  av_assert0(desc_in->nb_components == desc_out->nb_components);
113 
114 
115  av_image_fill_max_pixsteps(trans->pixsteps, NULL, desc_out);
116 
117  outlink->w = inlink->h;
118  outlink->h = inlink->w;
119 
120  if (inlink->sample_aspect_ratio.num)
121  outlink->sample_aspect_ratio = av_div_q((AVRational) { 1, 1 },
122  inlink->sample_aspect_ratio);
123  else
124  outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
125 
126  av_log(ctx, AV_LOG_VERBOSE,
127  "w:%d h:%d dir:%d -> w:%d h:%d rotation:%s vflip:%d\n",
128  inlink->w, inlink->h, trans->dir, outlink->w, outlink->h,
129  trans->dir == 1 || trans->dir == 3 ? "clockwise" : "counterclockwise",
130  trans->dir == 0 || trans->dir == 3);
131  return 0;
132 }
133 
134 static AVFrame *get_video_buffer(AVFilterLink *inlink, int w, int h)
135 {
136  TransContext *trans = inlink->dst->priv;
137 
138  return trans->passthrough ?
139  ff_null_get_video_buffer (inlink, w, h) :
140  ff_default_get_video_buffer(inlink, w, h);
141 }
142 
143 typedef struct ThreadData {
144  AVFrame *in, *out;
145 } ThreadData;
146 
147 static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr,
148  int nb_jobs)
149 {
150  TransContext *trans = ctx->priv;
151  ThreadData *td = arg;
152  AVFrame *out = td->out;
153  AVFrame *in = td->in;
154  int plane;
155 
156  for (plane = 0; plane < trans->planes; plane++) {
157  int hsub = plane == 1 || plane == 2 ? trans->hsub : 0;
158  int vsub = plane == 1 || plane == 2 ? trans->vsub : 0;
159  int pixstep = trans->pixsteps[plane];
160  int inh = FF_CEIL_RSHIFT(in->height, vsub);
161  int outw = FF_CEIL_RSHIFT(out->width, hsub);
162  int outh = FF_CEIL_RSHIFT(out->height, vsub);
163  int start = (outh * jobnr ) / nb_jobs;
164  int end = (outh * (jobnr+1)) / nb_jobs;
165  uint8_t *dst, *src;
166  int dstlinesize, srclinesize;
167  int x, y;
168 
169  dstlinesize = out->linesize[plane];
170  dst = out->data[plane] + start * dstlinesize;
171  src = in->data[plane];
172  srclinesize = in->linesize[plane];
173 
174  if (trans->dir & 1) {
175  src += in->linesize[plane] * (inh - 1);
176  srclinesize *= -1;
177  }
178 
179  if (trans->dir & 2) {
180  dst = out->data[plane] + dstlinesize * (outh - start - 1);
181  dstlinesize *= -1;
182  }
183 
184  switch (pixstep) {
185  case 1:
186  for (y = start; y < end; y++, dst += dstlinesize)
187  for (x = 0; x < outw; x++)
188  dst[x] = src[x * srclinesize + y];
189  break;
190  case 2:
191  for (y = start; y < end; y++, dst += dstlinesize) {
192  for (x = 0; x < outw; x++)
193  *((uint16_t *)(dst + 2 * x)) =
194  *((uint16_t *)(src + x * srclinesize + y * 2));
195  }
196  break;
197  case 3:
198  for (y = start; y < end; y++, dst += dstlinesize) {
199  for (x = 0; x < outw; x++) {
200  int32_t v = AV_RB24(src + x * srclinesize + y * 3);
201  AV_WB24(dst + 3 * x, v);
202  }
203  }
204  break;
205  case 4:
206  for (y = start; y < end; y++, dst += dstlinesize) {
207  for (x = 0; x < outw; x++)
208  *((uint32_t *)(dst + 4 * x)) =
209  *((uint32_t *)(src + x * srclinesize + y * 4));
210  }
211  break;
212  case 6:
213  for (y = start; y < end; y++, dst += dstlinesize) {
214  for (x = 0; x < outw; x++) {
215  int64_t v = AV_RB48(src + x * srclinesize + y*6);
216  AV_WB48(dst + 6*x, v);
217  }
218  }
219  break;
220  case 8:
221  for (y = start; y < end; y++, dst += dstlinesize) {
222  for (x = 0; x < outw; x++)
223  *((uint64_t *)(dst + 8*x)) = *((uint64_t *)(src + x * srclinesize + y*8));
224  }
225  break;
226  }
227  }
228 
229  return 0;
230 }
231 
232 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
233 {
234  AVFilterContext *ctx = inlink->dst;
235  TransContext *trans = ctx->priv;
236  AVFilterLink *outlink = ctx->outputs[0];
237  ThreadData td;
238  AVFrame *out;
239 
240  if (trans->passthrough)
241  return ff_filter_frame(outlink, in);
242 
243  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
244  if (!out) {
245  av_frame_free(&in);
246  return AVERROR(ENOMEM);
247  }
248  av_frame_copy_props(out, in);
249 
250  if (in->sample_aspect_ratio.num == 0) {
252  } else {
255  }
256 
257  td.in = in, td.out = out;
258  ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(outlink->h, ctx->graph->nb_threads));
259  av_frame_free(&in);
260  return ff_filter_frame(outlink, out);
261 }
262 
263 #define OFFSET(x) offsetof(TransContext, x)
264 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
265 
266 static const AVOption transpose_options[] = {
267  { "dir", "set transpose direction", OFFSET(dir), AV_OPT_TYPE_INT, { .i64 = TRANSPOSE_CCLOCK_FLIP }, 0, 7, FLAGS, "dir" },
268  { "cclock_flip", "rotate counter-clockwise with vertical flip", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CCLOCK_FLIP }, .unit = "dir" },
269  { "clock", "rotate clockwise", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CLOCK }, .unit = "dir" },
270  { "cclock", "rotate counter-clockwise", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CCLOCK }, .unit = "dir" },
271  { "clock_flip", "rotate clockwise with vertical flip", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CLOCK_FLIP }, .unit = "dir" },
272 
273  { "passthrough", "do not apply transposition if the input matches the specified geometry",
274  OFFSET(passthrough), AV_OPT_TYPE_INT, {.i64=TRANSPOSE_PT_TYPE_NONE}, 0, INT_MAX, FLAGS, "passthrough" },
275  { "none", "always apply transposition", 0, AV_OPT_TYPE_CONST, {.i64=TRANSPOSE_PT_TYPE_NONE}, INT_MIN, INT_MAX, FLAGS, "passthrough" },
276  { "portrait", "preserve portrait geometry", 0, AV_OPT_TYPE_CONST, {.i64=TRANSPOSE_PT_TYPE_PORTRAIT}, INT_MIN, INT_MAX, FLAGS, "passthrough" },
277  { "landscape", "preserve landscape geometry", 0, AV_OPT_TYPE_CONST, {.i64=TRANSPOSE_PT_TYPE_LANDSCAPE}, INT_MIN, INT_MAX, FLAGS, "passthrough" },
278 
279  { NULL }
280 };
281 
283 
285  {
286  .name = "default",
287  .type = AVMEDIA_TYPE_VIDEO,
288  .get_video_buffer = get_video_buffer,
289  .filter_frame = filter_frame,
290  },
291  { NULL }
292 };
293 
295  {
296  .name = "default",
297  .config_props = config_props_output,
298  .type = AVMEDIA_TYPE_VIDEO,
299  },
300  { NULL }
301 };
302 
304  .name = "transpose",
305  .description = NULL_IF_CONFIG_SMALL("Transpose input video."),
306  .priv_size = sizeof(TransContext),
307  .priv_class = &transpose_class,
309  .inputs = avfilter_vf_transpose_inputs,
310  .outputs = avfilter_vf_transpose_outputs,
312 };
#define AV_PIX_FMT_FLAG_PAL
Pixel format has a palette in data[1], values are indexes in this palette.
Definition: pixdesc.h:115
int plane
Definition: avisynth_c.h:291
#define NULL
Definition: coverity.c:32
float v
#define AV_RB48(x)
Definition: intreadwrite.h:472
AVFILTER_DEFINE_CLASS(transpose)
AVFrame * out
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
const char * fmt
Definition: avisynth_c.h:632
misc image utilities
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:248
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2169
Main libavfilter public API header.
TransposeDir
Definition: vf_transpose.c:48
int num
numerator
Definition: rational.h:44
#define AV_RB24
Definition: intreadwrite.h:64
AVFrame * ff_null_get_video_buffer(AVFilterLink *link, int w, int h)
Definition: video.c:35
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
AVFilter ff_vf_transpose
Definition: vf_transpose.c:303
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:80
static const AVFilterPad avfilter_vf_transpose_outputs[]
Definition: vf_transpose.c:294
struct AVFilterGraph * graph
filtergraph this filter belongs to
Definition: avfilter.h:656
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:34
const char * name
Pad name.
Definition: internal.h:69
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:641
#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:1158
AVFrame * in
uint8_t
AVOptions.
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
#define AV_WB48(p, darg)
Definition: intreadwrite.h:481
int nb_threads
Maximum number of threads used by filters in this graph.
Definition: avfilter.h:1207
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:192
#define av_log(a,...)
A filter pad used for either input or output.
Definition: internal.h:63
int width
width and height of the video frame
Definition: frame.h:220
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
#define td
Definition: regdef.h:70
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:89
#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:178
AVRational av_div_q(AVRational b, AVRational c)
Divide one rational by another.
Definition: rational.c:88
void * priv
private data for use by the filter
Definition: avfilter.h:654
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition: avfilter.h:442
const char * arg
Definition: jacosubdec.c:66
#define AV_PIX_FMT_FLAG_HWACCEL
Pixel format is an HW accelerated format.
Definition: pixdesc.h:123
simple assert() macros that are a bit more flexible than ISO C assert().
int ff_add_format(AVFilterFormats **avff, int64_t fmt)
Add fmt to the list of media formats contained in *avff.
Definition: formats.c:323
int pixsteps[4]
Definition: vf_transpose.c:59
common internal API header
uint8_t nb_components
The number of components each pixel has, (1-4)
Definition: pixdesc.h:71
#define FFMIN(a, b)
Definition: common.h:92
float y
#define FF_CEIL_RSHIFT(a, b)
Definition: common.h:57
int32_t
#define AV_WB24(p, d)
Definition: intreadwrite.h:450
static int query_formats(AVFilterContext *ctx)
Definition: vf_transpose.c:65
#define FLAGS
Definition: vf_transpose.c:264
PassthroughType
Definition: vf_transpose.c:42
static const AVOption transpose_options[]
Definition: vf_transpose.c:266
int passthrough
PassthroughType, landscape passthrough mode enabled.
Definition: vf_transpose.c:61
AVS_Value src
Definition: avisynth_c.h:482
static AVFrame * get_video_buffer(AVFilterLink *inlink, int w, int h)
Definition: vf_transpose.c:134
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
uint8_t flags
Definition: pixdesc.h:90
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
int dir
TransposeDir.
Definition: vf_transpose.c:62
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
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
GLsizei GLboolean transpose
Definition: opengl_enc.c:109
#define AV_PIX_FMT_FLAG_BITSTREAM
All values of a component are bit-wise packed end to end.
Definition: pixdesc.h:119
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:648
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:245
AVFilterInternal * internal
An opaque struct for libavfilter internal use.
Definition: avfilter.h:679
static int flags
Definition: cpu.c:47
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
AVFrame * ff_default_get_video_buffer(AVFilterLink *link, int w, int h)
Definition: video.c:43
int den
denominator
Definition: rational.h:45
avfilter_execute_func * execute
Definition: internal.h:164
#define OFFSET(x)
Definition: vf_transpose.c:263
static const AVFilterPad avfilter_vf_transpose_inputs[]
Definition: vf_transpose.c:284
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
static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition: vf_transpose.c:147
int height
Definition: frame.h:220
void INT64 start
Definition: avisynth_c.h:553
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_transpose.c:232
internal API functions
static int config_props_output(AVFilterLink *outlink)
Definition: vf_transpose.c:83
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:554