Mercurial > mplayer.hg
annotate libmpcodecs/vf_scale.c @ 6061:5343ef6b8c23
new filter, to detect best crop size
author | arpi |
---|---|
date | Sun, 12 May 2002 19:06:54 +0000 |
parents | 61f39b98ba4d |
children | 35eb2b9c7d9c |
rev | line source |
---|---|
5522 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 #include <inttypes.h> | |
5 | |
6 #include "../config.h" | |
7 #include "../mp_msg.h" | |
8 | |
5607 | 9 #include "img_format.h" |
10 #include "mp_image.h" | |
5522 | 11 #include "vf.h" |
12 | |
13 #include "../libvo/fastmemcpy.h" | |
14 #include "../postproc/swscale.h" | |
15 | |
16 struct vf_priv_s { | |
17 int w,h; | |
5523 | 18 unsigned int fmt; |
5522 | 19 SwsContext *ctx; |
20 }; | |
21 | |
6060 | 22 extern int opt_screen_size_x; |
23 extern int opt_screen_size_y; | |
24 | |
5522 | 25 //===========================================================================// |
26 | |
5523 | 27 static unsigned int outfmt_list[]={ |
28 IMGFMT_BGR32, | |
29 IMGFMT_BGR24, | |
30 IMGFMT_BGR16, | |
31 IMGFMT_BGR15, | |
32 IMGFMT_YV12, | |
33 IMGFMT_I420, | |
34 IMGFMT_IYUV, | |
35 NULL | |
36 }; | |
37 | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
38 static unsigned int find_best_out(vf_instance_t *vf){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
39 unsigned int best=0; |
5523 | 40 unsigned int* p=outfmt_list; |
41 // find the best outfmt: | |
42 while(*p){ | |
43 int ret=vf_next_query_format(vf,*p); | |
44 mp_msg(MSGT_VFILTER,MSGL_V,"scale: query(%s) -> %d\n",vo_format_name(*p),ret&3); | |
45 if(ret&2){ best=*p; break;} // no conversion -> bingo! | |
46 if(ret&1 && !best) best=*p; // best with conversion | |
47 ++p; | |
48 } | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
49 return best; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
50 } |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
51 |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
52 static int config(struct vf_instance_s* vf, |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
53 int width, int height, int d_width, int d_height, |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
54 unsigned int flags, unsigned int outfmt){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
55 unsigned int best=find_best_out(vf); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
56 int vo_flags; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
57 |
5523 | 58 if(!best){ |
59 printf("SwScale: no supported outfmt found :(\n"); | |
60 return 0; | |
61 } | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
62 |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
63 vo_flags=vf->next->query_format(vf->next,best); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
64 |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
65 // scaling to dwidth*d_height, if all these TRUE: |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
66 // - option -zoom |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
67 // - no other sw/hw up/down scaling avail. |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
68 // - we're after postproc |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
69 // - user didn't set w:h |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
70 if(!(vo_flags&VFCAP_POSTPROC) && (flags&4) && |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
71 vf->priv->w<0 && vf->priv->h<0){ // -zoom |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
72 int x=(vo_flags&VFCAP_SWSCALE) ? 0 : 1; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
73 if(d_width<width || d_height<height){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
74 // downscale! |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
75 if(vo_flags&VFCAP_HWSCALE_DOWN) x=0; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
76 } else { |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
77 // upscale: |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
78 if(vo_flags&VFCAP_HWSCALE_UP) x=0; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
79 } |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
80 if(x){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
81 // user wants sw scaling! (-zoom) |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
82 vf->priv->w=d_width; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
83 vf->priv->h=d_height; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
84 } |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
85 } |
5523 | 86 |
5522 | 87 // calculate the missing parameters: |
6003 | 88 if(vf->priv->w<0) vf->priv->w=width; else |
89 if(vf->priv->w==0) vf->priv->w=d_width; | |
90 if(vf->priv->h<0) vf->priv->h=height; else | |
91 if(vf->priv->h==0) vf->priv->h=d_height; | |
5523 | 92 |
93 printf("SwScale scaling %dx%d %s to %dx%d %s \n", | |
94 width,height,vo_format_name(outfmt), | |
95 vf->priv->w,vf->priv->h,vo_format_name(best)); | |
5526 | 96 |
97 // free old ctx: | |
98 if(vf->priv->ctx) freeSwsContext(vf->priv->ctx); | |
5523 | 99 |
5522 | 100 // new swscaler: |
5712 | 101 vf->priv->ctx=getSwsContextFromCmdLine(width,height, |
102 (outfmt==IMGFMT_I420 || outfmt==IMGFMT_IYUV)?IMGFMT_YV12:outfmt, | |
103 vf->priv->w,vf->priv->h, | |
104 (best==IMGFMT_I420 || best==IMGFMT_IYUV)?IMGFMT_YV12:best); | |
5522 | 105 if(!vf->priv->ctx){ |
106 // error... | |
107 printf("Couldn't init SwScaler for this setup\n"); | |
108 return 0; | |
109 } | |
5523 | 110 vf->priv->fmt=best; |
6060 | 111 |
112 if(!opt_screen_size_x && !opt_screen_size_y){ | |
113 d_width=d_width*vf->priv->w/width; | |
114 d_height=d_height*vf->priv->h/height; | |
115 } | |
5525 | 116 return vf_next_config(vf,vf->priv->w,vf->priv->h,d_width,d_height,flags,best); |
5522 | 117 } |
118 | |
119 static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){ | |
120 mp_image_t *dmpi; | |
121 | |
122 // hope we'll get DR buffer: | |
5523 | 123 dmpi=vf_get_image(vf->next,vf->priv->fmt, |
5522 | 124 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, |
125 vf->priv->w, vf->priv->h); | |
126 | |
127 vf->priv->ctx->swScale(vf->priv->ctx,mpi->planes,mpi->stride,0,mpi->h,dmpi->planes,dmpi->stride); | |
128 | |
5527 | 129 if(vf->priv->w==mpi->w && vf->priv->h==mpi->h){ |
130 // just conversion, no scaling -> keep postprocessing data | |
131 // this way we can apply pp filter to non-yv12 source using scaler | |
132 dmpi->qscale=mpi->qscale; | |
133 dmpi->qstride=mpi->qstride; | |
134 } | |
135 | |
5522 | 136 vf_next_put_image(vf,dmpi); |
137 } | |
138 | |
139 //===========================================================================// | |
140 | |
5523 | 141 // supported Input formats: YV12, I420, IYUV, YUY2, BGR32, BGR24, BGR16, BGR15, RGB32, RGB24, Y8, Y800 |
142 | |
143 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
144 switch(fmt){ | |
145 case IMGFMT_YV12: | |
146 case IMGFMT_I420: | |
147 case IMGFMT_IYUV: | |
148 case IMGFMT_YUY2: | |
149 case IMGFMT_BGR32: | |
150 case IMGFMT_BGR24: | |
151 case IMGFMT_BGR16: | |
152 case IMGFMT_BGR15: | |
153 case IMGFMT_RGB32: | |
154 case IMGFMT_RGB24: | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
155 case IMGFMT_Y800: { |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
156 unsigned int best=find_best_out(vf); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
157 int flags; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
158 if(!best) return 0; // no matching out-fmt |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
159 flags=vf_next_query_format(vf,best); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
160 if(!(flags&3)) return 0; // huh? |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
161 if(fmt!=best) flags&=~VFCAP_CSP_SUPPORTED_BY_HW; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
162 // do not allow scaling, if we are before the PP fliter! |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
163 if(!(flags&VFCAP_POSTPROC)) flags|=VFCAP_SWSCALE; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
164 return flags; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
165 } |
5523 | 166 } |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
167 return 0; // nomatching in-fmt |
5523 | 168 } |
169 | |
5522 | 170 static int open(vf_instance_t *vf, char* args){ |
171 vf->config=config; | |
172 vf->put_image=put_image; | |
5526 | 173 vf->query_format=query_format; |
5522 | 174 vf->priv=malloc(sizeof(struct vf_priv_s)); |
175 // TODO: parse args -> | |
176 vf->priv->ctx=NULL; | |
177 vf->priv->w= | |
178 vf->priv->h=-1; | |
179 if(args) sscanf(args, "%d:%d", | |
180 &vf->priv->w, | |
181 &vf->priv->h); | |
6003 | 182 printf("SwScale: %d x %d (-1=no scaling)\n", |
5522 | 183 vf->priv->w, |
184 vf->priv->h); | |
185 return 1; | |
186 } | |
187 | |
188 vf_info_t vf_info_scale = { | |
189 "software scaling", | |
190 "scale", | |
191 "A'rpi", | |
192 "", | |
193 open | |
194 }; | |
195 | |
196 //===========================================================================// |