annotate libmpcodecs/vf_pp.c @ 7960:0a4ab841ae29

better deblocking filter
author michael
date Tue, 29 Oct 2002 18:35:15 +0000
parents 0aedfdc5d6ef
children 78e0f2776da7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
1 #include <stdio.h>
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
2 #include <stdlib.h>
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
3 #include <string.h>
7946
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
4 #include <inttypes.h>
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
5
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
6 #include "../config.h"
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
7 #include "../mp_msg.h"
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
8
5607
1972c3475d93 mp_image.h and img_format.h moved to libmpcodecs
arpi
parents: 5565
diff changeset
9 #include "img_format.h"
1972c3475d93 mp_image.h and img_format.h moved to libmpcodecs
arpi
parents: 5565
diff changeset
10 #include "mp_image.h"
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
11 #include "vf.h"
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
12
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
13 #include "../postproc/postprocess.h"
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
14
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
15 struct vf_priv_s {
7946
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
16 int pp;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
17 PPMode ppMode[GET_PP_QUALITY_MAX+1];
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
18 void *context;
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
19 mp_image_t *dmpi;
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
20 unsigned int outfmt;
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
21 };
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
22
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
23 //===========================================================================//
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
24
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
25 static int config(struct vf_instance_s* vf,
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
26 int width, int height, int d_width, int d_height,
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
27 unsigned int voflags, unsigned int outfmt){
7946
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
28 vf->priv->context= getPPContext(width, height);
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
29
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
30 return vf_next_config(vf,width,height,d_width,d_height,voflags,vf->priv->outfmt);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
31 }
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
32
7949
0aedfdc5d6ef fixing segfault
michael
parents: 7946
diff changeset
33 static void uninit(struct vf_instance_s* vf){
0aedfdc5d6ef fixing segfault
michael
parents: 7946
diff changeset
34 if(vf->priv->context) freePPContext(vf->priv->context);
0aedfdc5d6ef fixing segfault
michael
parents: 7946
diff changeset
35 }
0aedfdc5d6ef fixing segfault
michael
parents: 7946
diff changeset
36
5518
04a40454bdbb accept only 4:2:0 planar yuv formats
arpi
parents: 5514
diff changeset
37 static int query_format(struct vf_instance_s* vf, unsigned int fmt){
04a40454bdbb accept only 4:2:0 planar yuv formats
arpi
parents: 5514
diff changeset
38 switch(fmt){
04a40454bdbb accept only 4:2:0 planar yuv formats
arpi
parents: 5514
diff changeset
39 case IMGFMT_YV12:
04a40454bdbb accept only 4:2:0 planar yuv formats
arpi
parents: 5514
diff changeset
40 case IMGFMT_I420:
04a40454bdbb accept only 4:2:0 planar yuv formats
arpi
parents: 5514
diff changeset
41 case IMGFMT_IYUV:
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
42 return vf_next_query_format(vf,vf->priv->outfmt);
5518
04a40454bdbb accept only 4:2:0 planar yuv formats
arpi
parents: 5514
diff changeset
43 }
04a40454bdbb accept only 4:2:0 planar yuv formats
arpi
parents: 5514
diff changeset
44 return 0;
04a40454bdbb accept only 4:2:0 planar yuv formats
arpi
parents: 5514
diff changeset
45 }
04a40454bdbb accept only 4:2:0 planar yuv formats
arpi
parents: 5514
diff changeset
46
5519
868c13f78f08 vf control codes added, autoq support
arpi
parents: 5518
diff changeset
47 static int control(struct vf_instance_s* vf, int request, void* data){
868c13f78f08 vf control codes added, autoq support
arpi
parents: 5518
diff changeset
48 switch(request){
868c13f78f08 vf control codes added, autoq support
arpi
parents: 5518
diff changeset
49 case VFCTRL_QUERY_MAX_PP_LEVEL:
868c13f78f08 vf control codes added, autoq support
arpi
parents: 5518
diff changeset
50 return GET_PP_QUALITY_MAX;
868c13f78f08 vf control codes added, autoq support
arpi
parents: 5518
diff changeset
51 case VFCTRL_SET_PP_LEVEL:
7946
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
52 vf->priv->pp= *((unsigned int*)data);
5519
868c13f78f08 vf control codes added, autoq support
arpi
parents: 5518
diff changeset
53 return CONTROL_TRUE;
868c13f78f08 vf control codes added, autoq support
arpi
parents: 5518
diff changeset
54 }
868c13f78f08 vf control codes added, autoq support
arpi
parents: 5518
diff changeset
55 return vf_next_control(vf,request,data);
868c13f78f08 vf control codes added, autoq support
arpi
parents: 5518
diff changeset
56 }
868c13f78f08 vf control codes added, autoq support
arpi
parents: 5518
diff changeset
57
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
58 static void get_image(struct vf_instance_s* vf, mp_image_t *mpi){
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
59 if(vf->priv->pp&0xFFFF) return; // non-local filters enabled
5513
73696051e3ce mpeg+pp0 fixed
arpi
parents: 5512
diff changeset
60 if((mpi->type==MP_IMGTYPE_IPB || vf->priv->pp) &&
73696051e3ce mpeg+pp0 fixed
arpi
parents: 5512
diff changeset
61 mpi->flags&MP_IMGFLAG_PRESERVE) return; // don't change
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
62 if(!(mpi->flags&MP_IMGFLAG_ACCEPT_STRIDE) && mpi->imgfmt!=vf->priv->outfmt)
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
63 return; // colorspace differ
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
64 // ok, we can do pp in-place (or pp disabled):
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
65 vf->priv->dmpi=vf_get_image(vf->next,mpi->imgfmt,
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
66 mpi->type, mpi->flags, mpi->w, mpi->h);
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
67 mpi->planes[0]=vf->priv->dmpi->planes[0];
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
68 mpi->stride[0]=vf->priv->dmpi->stride[0];
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
69 mpi->width=vf->priv->dmpi->width;
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
70 if(mpi->flags&MP_IMGFLAG_PLANAR){
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
71 mpi->planes[1]=vf->priv->dmpi->planes[1];
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
72 mpi->planes[2]=vf->priv->dmpi->planes[2];
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
73 mpi->stride[1]=vf->priv->dmpi->stride[1];
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
74 mpi->stride[2]=vf->priv->dmpi->stride[2];
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
75 }
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
76 mpi->flags|=MP_IMGFLAG_DIRECT;
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
77 }
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
78
7368
a894e99c1e51 changing return type of put_image void->int
arpi
parents: 7127
diff changeset
79 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
80 if(!(mpi->flags&MP_IMGFLAG_DIRECT)){
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
81 // no DR, so get a new image! hope we'll get DR buffer:
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
82 vf->priv->dmpi=vf_get_image(vf->next,vf->priv->outfmt,
6875
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 5607
diff changeset
83 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE|MP_IMGFLAG_PREFER_ALIGNED_STRIDE,
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 5607
diff changeset
84 // MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE,
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 5607
diff changeset
85 // mpi->w,mpi->h);
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 5607
diff changeset
86 (mpi->w+7)&(~7),(mpi->h+7)&(~7));
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 5607
diff changeset
87 vf->priv->dmpi->w=mpi->w; vf->priv->dmpi->h=mpi->h; // display w;h
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
88 }
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
89
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
90 if(vf->priv->pp || !(mpi->flags&MP_IMGFLAG_DIRECT)){
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
91 // do the postprocessing! (or copy if no DR)
7946
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
92 postprocess(mpi->planes ,mpi->stride,
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
93 vf->priv->dmpi->planes,vf->priv->dmpi->stride,
6875
255b150a75a5 - some reorder/cleanup of mp_image flags
arpi
parents: 5607
diff changeset
94 (mpi->w+7)&(~7),mpi->h,
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
95 mpi->qscale, mpi->qstride,
7960
0a4ab841ae29 better deblocking filter
michael
parents: 7949
diff changeset
96 &vf->priv->ppMode[ vf->priv->pp ], vf->priv->context,
0a4ab841ae29 better deblocking filter
michael
parents: 7949
diff changeset
97 mpi->pict_type);
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
98 }
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
99
7368
a894e99c1e51 changing return type of put_image void->int
arpi
parents: 7127
diff changeset
100 return vf_next_put_image(vf,vf->priv->dmpi);
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
101 }
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
102
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
103 //===========================================================================//
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
104
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
105 extern int divx_quality;
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
106
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
107 static unsigned int fmt_list[]={
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
108 IMGFMT_YV12,
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
109 IMGFMT_I420,
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
110 IMGFMT_IYUV,
7127
1e47c2e7aa8e mostly compiler warning fixes, some small bugfix
arpi
parents: 6875
diff changeset
111 0
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
112 };
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
113
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
114 static int open(vf_instance_t *vf, char* args){
7946
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
115 char *endptr, *name;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
116 int i;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
117 int hex_mode=0;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
118
5518
04a40454bdbb accept only 4:2:0 planar yuv formats
arpi
parents: 5514
diff changeset
119 vf->query_format=query_format;
5519
868c13f78f08 vf control codes added, autoq support
arpi
parents: 5518
diff changeset
120 vf->control=control;
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
121 vf->config=config;
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
122 vf->get_image=get_image;
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
123 vf->put_image=put_image;
7949
0aedfdc5d6ef fixing segfault
michael
parents: 7946
diff changeset
124 vf->uninit=uninit;
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
125 vf->default_caps=VFCAP_ACCEPT_STRIDE|VFCAP_POSTPROC;
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
126 vf->priv=malloc(sizeof(struct vf_priv_s));
7949
0aedfdc5d6ef fixing segfault
michael
parents: 7946
diff changeset
127 vf->priv->context=NULL;
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
128
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
129 // check csp:
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
130 vf->priv->outfmt=vf_match_csp(&vf->next,fmt_list,IMGFMT_YV12);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
131 if(!vf->priv->outfmt) return 0; // no csp match :(
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5519
diff changeset
132
5514
127f2a84e933 accept -pp value from args
arpi
parents: 5513
diff changeset
133 if(args){
7946
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
134 if(!strcmp("help", args)){
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
135 printf("%s", postproc_help);
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
136 exit(1);
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
137 }
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
138
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
139 hex_mode= strtol(args, &endptr, 0);
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
140 if(*endptr){
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
141 name= args;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
142 }else
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
143 name= NULL;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
144 }else{
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
145 name="de";
5514
127f2a84e933 accept -pp value from args
arpi
parents: 5513
diff changeset
146 }
7946
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
147
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
148 if(name){
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
149 for(i=0; i<=GET_PP_QUALITY_MAX; i++){
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
150 vf->priv->ppMode[i]= getPPModeByNameAndQuality(name, i);
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
151 if(vf->priv->ppMode[i].error) return -1;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
152 }
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
153 }else{
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
154 /* hex mode for compatibility */
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
155 for(i=0; i<=GET_PP_QUALITY_MAX; i++){
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
156 PPMode ppMode;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
157
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
158 ppMode.lumMode= hex_mode;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
159 ppMode.chromMode= ((hex_mode&0xFF)>>4) | (hex_mode&0xFFFFFF00);
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
160 ppMode.maxTmpNoise[0]= 700;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
161 ppMode.maxTmpNoise[1]= 1500;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
162 ppMode.maxTmpNoise[2]= 3000;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
163 ppMode.maxAllowedY= 234;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
164 ppMode.minAllowedY= 16;
7960
0a4ab841ae29 better deblocking filter
michael
parents: 7949
diff changeset
165 ppMode.baseDcDiff= 256/4;
7946
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
166 ppMode.flatnessThreshold=40;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
167
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
168 vf->priv->ppMode[i]= ppMode;
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
169 }
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
170 }
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
171
f483ab704252 postprocessing cleanup:
michael
parents: 7368
diff changeset
172 vf->priv->pp=GET_PP_QUALITY_MAX; //divx_quality;
5512
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
173 return 1;
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
174 }
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
175
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
176 vf_info_t vf_info_pp = {
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
177 "postprocessing",
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
178 "pp",
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
179 "A'rpi",
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
180 "",
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
181 open
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
182 };
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
183
4ccfa77d8e86 postprocessing filter (fixme: -pp 0)
arpi
parents:
diff changeset
184 //===========================================================================//