FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vf_alphamerge.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012 Steven Robertson
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg 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  * FFmpeg 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 FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 /**
22  * @file
23  * copy an alpha component from another video's luma
24  */
25 
26 #include <string.h>
27 
28 #include "libavutil/pixfmt.h"
29 #include "avfilter.h"
30 #include "bufferqueue.h"
31 #include "drawutils.h"
32 #include "formats.h"
33 #include "internal.h"
34 #include "video.h"
35 
36 enum { Y, U, V, A };
37 
38 typedef struct {
40  uint8_t rgba_map[4];
41  struct FFBufQueue queue_main;
42  struct FFBufQueue queue_alpha;
44 
46 {
50 }
51 
53 {
54  static const enum AVPixelFormat main_fmts[] = {
58  };
59  static const enum AVPixelFormat alpha_fmts[] = { AV_PIX_FMT_GRAY8, AV_PIX_FMT_NONE };
60  AVFilterFormats *main_formats = NULL, *alpha_formats = NULL;
61  int ret;
62 
63  if (!(main_formats = ff_make_format_list(main_fmts)) ||
64  !(alpha_formats = ff_make_format_list(alpha_fmts))) {
65  ret = AVERROR(ENOMEM);
66  goto fail;
67  }
68  if ((ret = ff_formats_ref(main_formats , &ctx->inputs[0]->out_formats)) < 0 ||
69  (ret = ff_formats_ref(alpha_formats, &ctx->inputs[1]->out_formats)) < 0 ||
70  (ret = ff_formats_ref(main_formats , &ctx->outputs[0]->in_formats)) < 0)
71  goto fail;
72  return 0;
73 fail:
74  if (main_formats)
75  av_freep(&main_formats->formats);
76  av_freep(&main_formats);
77  if (alpha_formats)
78  av_freep(&alpha_formats->formats);
79  av_freep(&alpha_formats);
80  return ret;
81 }
82 
83 static int config_input_main(AVFilterLink *inlink)
84 {
85  AlphaMergeContext *merge = inlink->dst->priv;
86  merge->is_packed_rgb =
87  ff_fill_rgba_map(merge->rgba_map, inlink->format) >= 0;
88  return 0;
89 }
90 
91 static int config_output(AVFilterLink *outlink)
92 {
93  AVFilterContext *ctx = outlink->src;
94  AVFilterLink *mainlink = ctx->inputs[0];
95  AVFilterLink *alphalink = ctx->inputs[1];
96  if (mainlink->w != alphalink->w || mainlink->h != alphalink->h) {
97  av_log(ctx, AV_LOG_ERROR,
98  "Input frame sizes do not match (%dx%d vs %dx%d).\n",
99  mainlink->w, mainlink->h,
100  alphalink->w, alphalink->h);
101  return AVERROR(EINVAL);
102  }
103 
104  outlink->w = mainlink->w;
105  outlink->h = mainlink->h;
106  outlink->time_base = mainlink->time_base;
107  outlink->sample_aspect_ratio = mainlink->sample_aspect_ratio;
108  outlink->frame_rate = mainlink->frame_rate;
109  return 0;
110 }
111 
113  AVFrame *main_buf,
114  AVFrame *alpha_buf)
115 {
116  AlphaMergeContext *merge = ctx->priv;
117  int h = main_buf->height;
118 
119  if (merge->is_packed_rgb) {
120  int x, y;
121  uint8_t *pin, *pout;
122  for (y = 0; y < h; y++) {
123  pin = alpha_buf->data[0] + y * alpha_buf->linesize[0];
124  pout = main_buf->data[0] + y * main_buf->linesize[0] + merge->rgba_map[A];
125  for (x = 0; x < main_buf->width; x++) {
126  *pout = *pin;
127  pin += 1;
128  pout += 4;
129  }
130  }
131  } else {
132  int y;
133  const int main_linesize = main_buf->linesize[A];
134  const int alpha_linesize = alpha_buf->linesize[Y];
135  for (y = 0; y < h && y < alpha_buf->height; y++) {
136  memcpy(main_buf->data[A] + y * main_linesize,
137  alpha_buf->data[Y] + y * alpha_linesize,
138  FFMIN(main_linesize, alpha_linesize));
139  }
140  }
141 }
142 
143 static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
144 {
145  AVFilterContext *ctx = inlink->dst;
146  AlphaMergeContext *merge = ctx->priv;
147 
148  int ret = 0;
149  int is_alpha = (inlink == ctx->inputs[1]);
150  struct FFBufQueue *queue =
151  (is_alpha ? &merge->queue_alpha : &merge->queue_main);
152  ff_bufqueue_add(ctx, queue, buf);
153 
154  do {
155  AVFrame *main_buf, *alpha_buf;
156 
157  if (!ff_bufqueue_peek(&merge->queue_main, 0) ||
158  !ff_bufqueue_peek(&merge->queue_alpha, 0)) break;
159 
160  main_buf = ff_bufqueue_get(&merge->queue_main);
161  alpha_buf = ff_bufqueue_get(&merge->queue_alpha);
162 
163  draw_frame(ctx, main_buf, alpha_buf);
164  ret = ff_filter_frame(ctx->outputs[0], main_buf);
165  av_frame_free(&alpha_buf);
166  } while (ret >= 0);
167  return ret;
168 }
169 
170 static int request_frame(AVFilterLink *outlink)
171 {
172  AVFilterContext *ctx = outlink->src;
173  AlphaMergeContext *merge = ctx->priv;
174  int in, ret;
175 
176  in = ff_bufqueue_peek(&merge->queue_main, 0) ? 1 : 0;
177  ret = ff_request_frame(ctx->inputs[in]);
178  if (ret < 0)
179  return ret;
180  return 0;
181 }
182 
183 static const AVFilterPad alphamerge_inputs[] = {
184  {
185  .name = "main",
186  .type = AVMEDIA_TYPE_VIDEO,
187  .config_props = config_input_main,
188  .filter_frame = filter_frame,
189  .needs_writable = 1,
190  },{
191  .name = "alpha",
192  .type = AVMEDIA_TYPE_VIDEO,
193  .filter_frame = filter_frame,
194  },
195  { NULL }
196 };
197 
198 static const AVFilterPad alphamerge_outputs[] = {
199  {
200  .name = "default",
201  .type = AVMEDIA_TYPE_VIDEO,
202  .config_props = config_output,
203  .request_frame = request_frame,
204  },
205  { NULL }
206 };
207 
209  .name = "alphamerge",
210  .description = NULL_IF_CONFIG_SMALL("Copy the luma value of the second "
211  "input into the alpha channel of the first input."),
212  .uninit = uninit,
213  .priv_size = sizeof(AlphaMergeContext),
215  .inputs = alphamerge_inputs,
216  .outputs = alphamerge_outputs,
217 };
static AVFrame * ff_bufqueue_get(struct FFBufQueue *queue)
Get the first buffer from the queue and remove it.
Definition: bufferqueue.h:98
#define NULL
Definition: coverity.c:32
This structure describes decoded (raw) audio or video data.
Definition: frame.h:184
struct FFBufQueue queue_alpha
Definition: vf_alphamerge.c:42
struct FFBufQueue queue_main
Definition: vf_alphamerge.c:41
Main libavfilter public API header.
static const AVFilterPad alphamerge_inputs[]
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
Structure holding the queue.
Definition: bufferqueue.h:49
const char * name
Pad name.
Definition: internal.h:59
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:315
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1189
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:102
uint8_t
#define av_cold
Definition: attributes.h:82
packed ABGR 8:8:8:8, 32bpp, ABGRABGR...
Definition: pixfmt.h:95
#define av_log(a,...)
A filter pad used for either input or output.
Definition: internal.h:53
static int config_input_main(AVFilterLink *inlink)
Definition: vf_alphamerge.c:83
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:188
int width
width and height of the video frame
Definition: frame.h:236
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
static void draw_frame(AVFilterContext *ctx, AVFrame *main_buf, AVFrame *alpha_buf)
#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:158
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition: pixfmt.h:96
void * priv
private data for use by the filter
Definition: avfilter.h:322
static int query_formats(AVFilterContext *ctx)
Definition: vf_alphamerge.c:52
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
Definition: pixfmt.h:93
#define fail()
Definition: checkasm.h:83
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition: pixfmt.h:94
AVFrame * queue[FF_BUFQUEUE_SIZE]
Definition: bufferqueue.h:50
#define FFMIN(a, b)
Definition: common.h:96
int ff_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
Add *ref as a new reference to formats.
Definition: formats.c:440
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_alphamerge.c:45
static const AVFilterPad alphamerge_outputs[]
AVFormatContext * ctx
Definition: movenc.c:48
static const AVFilterPad outputs[]
Definition: af_afftfilt.c:386
static void ff_bufqueue_discard_all(struct FFBufQueue *queue)
Unref and remove all buffers from the queue.
Definition: bufferqueue.h:111
int ff_fill_rgba_map(uint8_t *rgba_map, enum AVPixelFormat pix_fmt)
Definition: drawutils.c:35
static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
static const AVFilterPad inputs[]
Definition: af_afftfilt.c:376
misc drawing utilities
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:215
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition: pixfmt.h:189
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
void * buf
Definition: avisynth_c.h:690
Filter definition.
Definition: avfilter.h:144
const char * name
Filter name.
Definition: avfilter.h:148
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:319
static void merge(GetBitContext *gb, uint8_t *dst, uint8_t *src, int size)
Merge two consequent lists of equal size depending on bits read.
Definition: bink.c:217
static int config_output(AVFilterLink *outlink)
Definition: vf_alphamerge.c:91
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:198
Y , 8bpp.
Definition: pixfmt.h:70
AVFilter ff_vf_alphamerge
pixel format definitions
A list of supported formats for one end of a filter link.
Definition: formats.h:64
An instance of a filter.
Definition: avfilter.h:307
int height
Definition: frame.h:236
#define av_freep(p)
static int request_frame(AVFilterLink *outlink)
uint8_t rgba_map[4]
Definition: vf_alphamerge.c:40
static void ff_bufqueue_add(void *log, struct FFBufQueue *queue, AVFrame *buf)
Add a buffer to the queue.
Definition: bufferqueue.h:71
int ff_request_frame(AVFilterLink *link)
Request an input frame from the filter at the other end of the link.
Definition: avfilter.c:369
internal API functions
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
int * formats
list of media formats
Definition: formats.h:66
static AVFrame * ff_bufqueue_peek(struct FFBufQueue *queue, unsigned index)
Get a buffer from the queue without altering it.
Definition: bufferqueue.h:87