Mercurial > mplayer.hg
annotate libmpcodecs/vf_scale.c @ 6663:5790a2576505
10L don't add a base path to the urls
author | albeu |
---|---|
date | Sun, 07 Jul 2002 04:07:57 +0000 |
parents | f47f12ba3b88 |
children | 8058078f1248 |
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; | |
6542
7af3fcd76d2d
support dropping some chroma src lines for a bit extra speed
michael
parents:
6536
diff
changeset
|
18 int v_chr_drop; |
6637 | 19 int param; |
5523 | 20 unsigned int fmt; |
5522 | 21 SwsContext *ctx; |
22 }; | |
23 | |
6060 | 24 extern int opt_screen_size_x; |
25 extern int opt_screen_size_y; | |
26 | |
5522 | 27 //===========================================================================// |
28 | |
5523 | 29 static unsigned int outfmt_list[]={ |
30 IMGFMT_BGR32, | |
31 IMGFMT_BGR24, | |
32 IMGFMT_BGR16, | |
33 IMGFMT_BGR15, | |
6637 | 34 IMGFMT_BGR8, |
35 IMGFMT_BGR4, | |
36 IMGFMT_BGR1, | |
37 IMGFMT_RGB32, | |
38 IMGFMT_RGB24, | |
39 IMGFMT_RGB16, | |
40 IMGFMT_RGB15, | |
41 IMGFMT_RGB8, | |
42 IMGFMT_RGB4, | |
43 IMGFMT_RGB1, | |
5523 | 44 IMGFMT_YV12, |
45 IMGFMT_I420, | |
46 IMGFMT_IYUV, | |
6533 | 47 IMGFMT_Y800, |
48 IMGFMT_Y8, | |
49 IMGFMT_YVU9, | |
6536 | 50 IMGFMT_IF09, |
6188 | 51 0 |
5523 | 52 }; |
53 | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
54 static unsigned int find_best_out(vf_instance_t *vf){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
55 unsigned int best=0; |
5523 | 56 unsigned int* p=outfmt_list; |
57 // find the best outfmt: | |
58 while(*p){ | |
59 int ret=vf_next_query_format(vf,*p); | |
60 mp_msg(MSGT_VFILTER,MSGL_V,"scale: query(%s) -> %d\n",vo_format_name(*p),ret&3); | |
61 if(ret&2){ best=*p; break;} // no conversion -> bingo! | |
62 if(ret&1 && !best) best=*p; // best with conversion | |
63 ++p; | |
64 } | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
65 return best; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
66 } |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
67 |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
68 static int config(struct vf_instance_s* vf, |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
69 int width, int height, int d_width, int d_height, |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
70 unsigned int flags, unsigned int outfmt){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
71 unsigned int best=find_best_out(vf); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
72 int vo_flags; |
6542
7af3fcd76d2d
support dropping some chroma src lines for a bit extra speed
michael
parents:
6536
diff
changeset
|
73 int int_sws_flags=0; |
7af3fcd76d2d
support dropping some chroma src lines for a bit extra speed
michael
parents:
6536
diff
changeset
|
74 SwsFilter *srcFilter, *dstFilter; |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
75 |
5523 | 76 if(!best){ |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
6126
diff
changeset
|
77 mp_msg(MSGT_VFILTER,MSGL_WARN,"SwScale: no supported outfmt found :(\n"); |
5523 | 78 return 0; |
79 } | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
80 |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
81 vo_flags=vf->next->query_format(vf->next,best); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
82 |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
83 // scaling to dwidth*d_height, if all these TRUE: |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
84 // - option -zoom |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
85 // - no other sw/hw up/down scaling avail. |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
86 // - we're after postproc |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
87 // - user didn't set w:h |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
88 if(!(vo_flags&VFCAP_POSTPROC) && (flags&4) && |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
89 vf->priv->w<0 && vf->priv->h<0){ // -zoom |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
90 int x=(vo_flags&VFCAP_SWSCALE) ? 0 : 1; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
91 if(d_width<width || d_height<height){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
92 // downscale! |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
93 if(vo_flags&VFCAP_HWSCALE_DOWN) x=0; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
94 } else { |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
95 // upscale: |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
96 if(vo_flags&VFCAP_HWSCALE_UP) x=0; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
97 } |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
98 if(x){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
99 // user wants sw scaling! (-zoom) |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
100 vf->priv->w=d_width; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
101 vf->priv->h=d_height; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
102 } |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
103 } |
5523 | 104 |
5522 | 105 // calculate the missing parameters: |
6126
35eb2b9c7d9c
new special w/h values: -2 and -3. based on proposal by Bohdan Horst <nexus@hoth.amu.edu.pl>
arpi
parents:
6060
diff
changeset
|
106 if(vf->priv->w==-3) vf->priv->w=vf->priv->h*width/height; else |
35eb2b9c7d9c
new special w/h values: -2 and -3. based on proposal by Bohdan Horst <nexus@hoth.amu.edu.pl>
arpi
parents:
6060
diff
changeset
|
107 if(vf->priv->w==-2) vf->priv->w=vf->priv->h*d_width/d_height; |
6003 | 108 if(vf->priv->w<0) vf->priv->w=width; else |
109 if(vf->priv->w==0) vf->priv->w=d_width; | |
6126
35eb2b9c7d9c
new special w/h values: -2 and -3. based on proposal by Bohdan Horst <nexus@hoth.amu.edu.pl>
arpi
parents:
6060
diff
changeset
|
110 |
35eb2b9c7d9c
new special w/h values: -2 and -3. based on proposal by Bohdan Horst <nexus@hoth.amu.edu.pl>
arpi
parents:
6060
diff
changeset
|
111 if(vf->priv->h==-3) vf->priv->h=vf->priv->w*height/width; else |
35eb2b9c7d9c
new special w/h values: -2 and -3. based on proposal by Bohdan Horst <nexus@hoth.amu.edu.pl>
arpi
parents:
6060
diff
changeset
|
112 if(vf->priv->h==-2) vf->priv->h=vf->priv->w*d_height/d_width; |
6003 | 113 if(vf->priv->h<0) vf->priv->h=height; else |
114 if(vf->priv->h==0) vf->priv->h=d_height; | |
5523 | 115 |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
6126
diff
changeset
|
116 mp_msg(MSGT_VFILTER,MSGL_DBG2,"SwScale: scaling %dx%d %s to %dx%d %s \n", |
5523 | 117 width,height,vo_format_name(outfmt), |
118 vf->priv->w,vf->priv->h,vo_format_name(best)); | |
5526 | 119 |
120 // free old ctx: | |
121 if(vf->priv->ctx) freeSwsContext(vf->priv->ctx); | |
5523 | 122 |
5522 | 123 // new swscaler: |
6542
7af3fcd76d2d
support dropping some chroma src lines for a bit extra speed
michael
parents:
6536
diff
changeset
|
124 swsGetFlagsAndFilterFromCmdLine(&int_sws_flags, &srcFilter, &dstFilter); |
7af3fcd76d2d
support dropping some chroma src lines for a bit extra speed
michael
parents:
6536
diff
changeset
|
125 int_sws_flags|= vf->priv->v_chr_drop << SWS_SRC_V_CHR_DROP_SHIFT; |
6637 | 126 int_sws_flags|= vf->priv->param << SWS_PARAM_SHIFT; |
6542
7af3fcd76d2d
support dropping some chroma src lines for a bit extra speed
michael
parents:
6536
diff
changeset
|
127 vf->priv->ctx=getSwsContext(width,height, |
5712 | 128 (outfmt==IMGFMT_I420 || outfmt==IMGFMT_IYUV)?IMGFMT_YV12:outfmt, |
129 vf->priv->w,vf->priv->h, | |
6542
7af3fcd76d2d
support dropping some chroma src lines for a bit extra speed
michael
parents:
6536
diff
changeset
|
130 (best==IMGFMT_I420 || best==IMGFMT_IYUV)?IMGFMT_YV12:best, |
7af3fcd76d2d
support dropping some chroma src lines for a bit extra speed
michael
parents:
6536
diff
changeset
|
131 int_sws_flags, srcFilter, dstFilter); |
5522 | 132 if(!vf->priv->ctx){ |
133 // error... | |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
6126
diff
changeset
|
134 mp_msg(MSGT_VFILTER,MSGL_WARN,"Couldn't init SwScaler for this setup\n"); |
5522 | 135 return 0; |
136 } | |
5523 | 137 vf->priv->fmt=best; |
6060 | 138 |
139 if(!opt_screen_size_x && !opt_screen_size_y){ | |
140 d_width=d_width*vf->priv->w/width; | |
141 d_height=d_height*vf->priv->h/height; | |
142 } | |
5525 | 143 return vf_next_config(vf,vf->priv->w,vf->priv->h,d_width,d_height,flags,best); |
5522 | 144 } |
145 | |
146 static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){ | |
147 mp_image_t *dmpi; | |
148 | |
149 // hope we'll get DR buffer: | |
5523 | 150 dmpi=vf_get_image(vf->next,vf->priv->fmt, |
5522 | 151 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, |
152 vf->priv->w, vf->priv->h); | |
153 vf->priv->ctx->swScale(vf->priv->ctx,mpi->planes,mpi->stride,0,mpi->h,dmpi->planes,dmpi->stride); | |
154 | |
5527 | 155 if(vf->priv->w==mpi->w && vf->priv->h==mpi->h){ |
156 // just conversion, no scaling -> keep postprocessing data | |
157 // this way we can apply pp filter to non-yv12 source using scaler | |
158 dmpi->qscale=mpi->qscale; | |
159 dmpi->qstride=mpi->qstride; | |
160 } | |
161 | |
5522 | 162 vf_next_put_image(vf,dmpi); |
163 } | |
164 | |
165 //===========================================================================// | |
166 | |
5523 | 167 // supported Input formats: YV12, I420, IYUV, YUY2, BGR32, BGR24, BGR16, BGR15, RGB32, RGB24, Y8, Y800 |
168 | |
169 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
170 switch(fmt){ | |
171 case IMGFMT_YV12: | |
172 case IMGFMT_I420: | |
173 case IMGFMT_IYUV: | |
174 case IMGFMT_YUY2: | |
175 case IMGFMT_BGR32: | |
176 case IMGFMT_BGR24: | |
177 case IMGFMT_BGR16: | |
178 case IMGFMT_BGR15: | |
179 case IMGFMT_RGB32: | |
180 case IMGFMT_RGB24: | |
6533 | 181 case IMGFMT_Y800: |
182 case IMGFMT_Y8: | |
183 case IMGFMT_YVU9: | |
6536 | 184 case IMGFMT_IF09: |
6533 | 185 { |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
186 unsigned int best=find_best_out(vf); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
187 int flags; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
188 if(!best) return 0; // no matching out-fmt |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
189 flags=vf_next_query_format(vf,best); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
190 if(!(flags&3)) return 0; // huh? |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
191 if(fmt!=best) flags&=~VFCAP_CSP_SUPPORTED_BY_HW; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
192 // 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
|
193 if(!(flags&VFCAP_POSTPROC)) flags|=VFCAP_SWSCALE; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
194 return flags; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
195 } |
5523 | 196 } |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
197 return 0; // nomatching in-fmt |
5523 | 198 } |
199 | |
5522 | 200 static int open(vf_instance_t *vf, char* args){ |
201 vf->config=config; | |
202 vf->put_image=put_image; | |
5526 | 203 vf->query_format=query_format; |
5522 | 204 vf->priv=malloc(sizeof(struct vf_priv_s)); |
205 // TODO: parse args -> | |
206 vf->priv->ctx=NULL; | |
207 vf->priv->w= | |
208 vf->priv->h=-1; | |
6542
7af3fcd76d2d
support dropping some chroma src lines for a bit extra speed
michael
parents:
6536
diff
changeset
|
209 vf->priv->v_chr_drop=0; |
6637 | 210 vf->priv->param=0; |
211 if(args) sscanf(args, "%d:%d:%d:%d", | |
5522 | 212 &vf->priv->w, |
6542
7af3fcd76d2d
support dropping some chroma src lines for a bit extra speed
michael
parents:
6536
diff
changeset
|
213 &vf->priv->h, |
6637 | 214 &vf->priv->v_chr_drop, |
215 &vf->priv->param); | |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
6126
diff
changeset
|
216 mp_msg(MSGT_VFILTER,MSGL_V,"SwScale params: %d x %d (-1=no scaling)\n", |
5522 | 217 vf->priv->w, |
218 vf->priv->h); | |
219 return 1; | |
220 } | |
221 | |
222 vf_info_t vf_info_scale = { | |
223 "software scaling", | |
224 "scale", | |
225 "A'rpi", | |
226 "", | |
227 open | |
228 }; | |
229 | |
230 //===========================================================================// |