vf_pp.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002 A'rpi
3  * Copyright (C) 2012 Clément Bœsch
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg 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  * 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
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 FFmpeg; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 
22 /**
23  * @file
24  * libpostproc filter, ported from MPlayer.
25  */
26 
27 #include "libavutil/avassert.h"
28 #include "libavutil/opt.h"
29 #include "internal.h"
30 
32 
33 typedef struct {
34  const AVClass *class;
35  char *subfilters;
36  int mode_id;
38  void *pp_ctx;
40 
41 #define OFFSET(x) offsetof(PPFilterContext, x)
42 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
43 static const AVOption pp_options[] = {
44  { "subfilters", "set postprocess subfilters", OFFSET(subfilters), AV_OPT_TYPE_STRING, {.str="de"}, .flags = FLAGS },
45  { NULL }
46 };
47 
49 
51 {
52  int i;
53  PPFilterContext *pp = ctx->priv;
54 
55  for (i = 0; i <= PP_QUALITY_MAX; i++) {
57  if (!pp->modes[i])
58  return AVERROR_EXTERNAL;
59  }
60  pp->mode_id = PP_QUALITY_MAX;
61  return 0;
62 }
63 
64 static int pp_process_command(AVFilterContext *ctx, const char *cmd, const char *args,
65  char *res, int res_len, int flags)
66 {
67  PPFilterContext *pp = ctx->priv;
68 
69  if (!strcmp(cmd, "quality")) {
70  pp->mode_id = av_clip(strtol(args, NULL, 10), 0, PP_QUALITY_MAX);
71  return 0;
72  }
73  return AVERROR(ENOSYS);
74 }
75 
77 {
78  static const enum PixelFormat pix_fmts[] = {
84  };
86  return 0;
87 }
88 
89 static int pp_config_props(AVFilterLink *inlink)
90 {
91  int flags = PP_CPU_CAPS_AUTO;
92  PPFilterContext *pp = inlink->dst->priv;
93 
94  switch (inlink->format) {
96  case AV_PIX_FMT_YUV420P: flags |= PP_FORMAT_420; break;
98  case AV_PIX_FMT_YUV422P: flags |= PP_FORMAT_422; break;
99  case AV_PIX_FMT_YUV411P: flags |= PP_FORMAT_411; break;
100  case AV_PIX_FMT_YUVJ444P:
101  case AV_PIX_FMT_YUV444P: flags |= PP_FORMAT_444; break;
102  default: av_assert0(0);
103  }
104 
105  pp->pp_ctx = pp_get_context(inlink->w, inlink->h, flags);
106  if (!pp->pp_ctx)
107  return AVERROR(ENOMEM);
108  return 0;
109 }
110 
111 static int pp_filter_frame(AVFilterLink *inlink, AVFrame *inbuf)
112 {
113  AVFilterContext *ctx = inlink->dst;
114  PPFilterContext *pp = ctx->priv;
115  AVFilterLink *outlink = ctx->outputs[0];
116  const int aligned_w = FFALIGN(outlink->w, 8);
117  const int aligned_h = FFALIGN(outlink->h, 8);
118  AVFrame *outbuf;
119  int qstride, qp_type;
120  int8_t *qp_table ;
121 
122  outbuf = ff_get_video_buffer(outlink, aligned_w, aligned_h);
123  if (!outbuf) {
124  av_frame_free(&inbuf);
125  return AVERROR(ENOMEM);
126  }
127  av_frame_copy_props(outbuf, inbuf);
128  qp_table = av_frame_get_qp_table(inbuf, &qstride, &qp_type);
129 
130  pp_postprocess((const uint8_t **)inbuf->data, inbuf->linesize,
131  outbuf->data, outbuf->linesize,
132  aligned_w, outlink->h,
133  qp_table,
134  qstride,
135  pp->modes[pp->mode_id],
136  pp->pp_ctx,
137  outbuf->pict_type | (qp_type ? PP_PICT_TYPE_QP2 : 0));
138 
139  av_frame_free(&inbuf);
140  return ff_filter_frame(outlink, outbuf);
141 }
142 
144 {
145  int i;
146  PPFilterContext *pp = ctx->priv;
147 
148  for (i = 0; i <= PP_QUALITY_MAX; i++)
149  pp_free_mode(pp->modes[i]);
150  if (pp->pp_ctx)
151  pp_free_context(pp->pp_ctx);
152 }
153 
154 static const AVFilterPad pp_inputs[] = {
155  {
156  .name = "default",
157  .type = AVMEDIA_TYPE_VIDEO,
158  .config_props = pp_config_props,
159  .filter_frame = pp_filter_frame,
160  },
161  { NULL }
162 };
163 
164 static const AVFilterPad pp_outputs[] = {
165  {
166  .name = "default",
167  .type = AVMEDIA_TYPE_VIDEO,
168  },
169  { NULL }
170 };
171 
173  .name = "pp",
174  .description = NULL_IF_CONFIG_SMALL("Filter video using libpostproc."),
175  .priv_size = sizeof(PPFilterContext),
176  .init = pp_init,
177  .uninit = pp_uninit,
179  .inputs = pp_inputs,
180  .outputs = pp_outputs,
182  .priv_class = &pp_class,
183 
184 };
static av_cold void pp_uninit(AVFilterContext *ctx)
Definition: vf_pp.c:143
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:424
This structure describes decoded (raw) audio or video data.
Definition: frame.h:76
AVOption.
Definition: opt.h:251
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:73
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:117
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
void pp_free_context(void *vc)
Definition: postprocess.c:926
pp_mode * pp_get_mode_by_name_and_quality(const char *name, int quality)
Return a pp_mode or NULL if an error occurred.
Definition: postprocess.c:664
static int query_formats(AVFilterContext *ctx)
Definition: af_aconvert.c:73
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:143
pp_context * pp_get_context(int width, int height, int cpuCaps)
Definition: postprocess.c:895
#define FFALIGN(x, a)
Definition: common.h:63
#define PP_FORMAT_422
Definition: postprocess.h:96
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:308
const char * name
Pad name.
static const AVFilterPad pp_outputs[]
Definition: vf_pp.c:164
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
static const AVOption pp_options[]
Definition: vf_pp.c:43
uint8_t
it can be given away to ff_start_frame *A reference passed to ff_filter_frame(or the deprecated ff_start_frame) is given away and must no longer be used.*A reference created with avfilter_ref_buffer belongs to the code that created it.*A reference obtained with ff_get_video_buffer or ff_get_audio_buffer belongs to the code that requested it.*A reference given as return value by the get_video_buffer or get_audio_buffer method is given away and must no longer be used.Link reference fields---------------------The AVFilterLink structure has a few AVFilterBufferRef fields.The cur_buf and out_buf were used with the deprecated start_frame/draw_slice/end_frame API and should no longer be used.src_buf
#define av_cold
Definition: attributes.h:78
static av_cold int uninit(AVCodecContext *avctx)
Definition: crystalhd.c:334
AVOptions.
static av_cold int pp_init(AVFilterContext *ctx)
Definition: vf_pp.c:50
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV422P and setting color_...
Definition: pixfmt.h:81
int8_t * av_frame_get_qp_table(AVFrame *f, int *stride, int *type)
Definition: frame.c:64
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:545
A filter pad used for either input or output.
#define PP_QUALITY_MAX
Definition: postprocess.h:52
void pp_mode
Definition: postprocess.h:59
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
void * priv
private data for use by the filter
Definition: avfilter.h:545
simple assert() macros that are a bit more flexible than ISO C assert().
#define PP_FORMAT_411
Definition: postprocess.h:97
int mode_id
Definition: vf_pp.c:36
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:72
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:144
#define PP_PICT_TYPE_QP2
MPEG2 style QScale.
Definition: postprocess.h:100
AVFilter avfilter_vf_pp
Definition: vf_pp.c:172
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV420P and setting color_...
Definition: pixfmt.h:80
void pp_free_mode(pp_mode *mode)
Definition: postprocess.c:853
char * subfilters
Definition: vf_pp.c:35
static int process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Definition: af_atempo.c:1141
static const AVFilterPad pp_inputs[]
Definition: vf_pp.c:154
external API header
NULL
Definition: eval.c:55
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:101
Describe the class of an AVClass context structure.
Definition: log.h:50
Filter definition.
Definition: avfilter.h:436
static int pp_filter_frame(AVFilterLink *inlink, AVFrame *inbuf)
Definition: vf_pp.c:111
synthesis window for stochastic i
const char * name
filter name
Definition: avfilter.h:437
#define PP_FORMAT_444
Definition: postprocess.h:98
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later.That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another.Buffer references ownership and permissions
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:539
static int flags
Definition: cpu.c:23
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:87
#define PP_CPU_CAPS_AUTO
Definition: postprocess.h:92
void * pp_ctx
Definition: vf_pp.c:38
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:68
#define FLAGS
Definition: vf_pp.c:42
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:108
#define PP_FORMAT_420
Definition: postprocess.h:95
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV444P and setting color_...
Definition: pixfmt.h:82
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:75
static const SiprModeParam modes[MODE_COUNT]
Definition: sipr.c:69
static int pp_query_formats(AVFilterContext *ctx)
Definition: vf_pp.c:76
An instance of a filter.
Definition: avfilter.h:524
void pp_postprocess(const uint8_t *src[3], const int srcStride[3], uint8_t *dst[3], const int dstStride[3], int width, int height, const QP_STORE_T *QP_store, int QPStride, pp_mode *vm, void *vc, int pict_type)
Definition: postprocess.c:947
static int pp_process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition: vf_pp.c:64
internal API functions
pp_mode * modes[PP_QUALITY_MAX+1]
Definition: vf_pp.c:37
#define AVERROR_EXTERNAL
Generic error in an external library.
Definition: error.h:57
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several inputs
#define OFFSET(x)
Definition: vf_pp.c:41
static int pp_config_props(AVFilterLink *inlink)
Definition: vf_pp.c:89
AVFILTER_DEFINE_CLASS(pp)