Mercurial > mplayer.hg
annotate libmpcodecs/vf_scale.c @ 6410:4b44baf5d2a8
ah 10000l
author | gabucino |
---|---|
date | Thu, 13 Jun 2002 04:57:09 +0000 |
parents | 39a9515c633a |
children | 52f8bde27fea |
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, | |
6188 | 35 0 |
5523 | 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){ |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
6126
diff
changeset
|
59 mp_msg(MSGT_VFILTER,MSGL_WARN,"SwScale: no supported outfmt found :(\n"); |
5523 | 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: |
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
|
88 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
|
89 if(vf->priv->w==-2) vf->priv->w=vf->priv->h*d_width/d_height; |
6003 | 90 if(vf->priv->w<0) vf->priv->w=width; else |
91 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
|
92 |
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
|
93 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
|
94 if(vf->priv->h==-2) vf->priv->h=vf->priv->w*d_height/d_width; |
6003 | 95 if(vf->priv->h<0) vf->priv->h=height; else |
96 if(vf->priv->h==0) vf->priv->h=d_height; | |
5523 | 97 |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
6126
diff
changeset
|
98 mp_msg(MSGT_VFILTER,MSGL_DBG2,"SwScale: scaling %dx%d %s to %dx%d %s \n", |
5523 | 99 width,height,vo_format_name(outfmt), |
100 vf->priv->w,vf->priv->h,vo_format_name(best)); | |
5526 | 101 |
102 // free old ctx: | |
103 if(vf->priv->ctx) freeSwsContext(vf->priv->ctx); | |
5523 | 104 |
5522 | 105 // new swscaler: |
5712 | 106 vf->priv->ctx=getSwsContextFromCmdLine(width,height, |
107 (outfmt==IMGFMT_I420 || outfmt==IMGFMT_IYUV)?IMGFMT_YV12:outfmt, | |
108 vf->priv->w,vf->priv->h, | |
109 (best==IMGFMT_I420 || best==IMGFMT_IYUV)?IMGFMT_YV12:best); | |
5522 | 110 if(!vf->priv->ctx){ |
111 // error... | |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
6126
diff
changeset
|
112 mp_msg(MSGT_VFILTER,MSGL_WARN,"Couldn't init SwScaler for this setup\n"); |
5522 | 113 return 0; |
114 } | |
5523 | 115 vf->priv->fmt=best; |
6060 | 116 |
117 if(!opt_screen_size_x && !opt_screen_size_y){ | |
118 d_width=d_width*vf->priv->w/width; | |
119 d_height=d_height*vf->priv->h/height; | |
120 } | |
5525 | 121 return vf_next_config(vf,vf->priv->w,vf->priv->h,d_width,d_height,flags,best); |
5522 | 122 } |
123 | |
124 static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){ | |
125 mp_image_t *dmpi; | |
126 | |
127 // hope we'll get DR buffer: | |
5523 | 128 dmpi=vf_get_image(vf->next,vf->priv->fmt, |
5522 | 129 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, |
130 vf->priv->w, vf->priv->h); | |
131 | |
132 vf->priv->ctx->swScale(vf->priv->ctx,mpi->planes,mpi->stride,0,mpi->h,dmpi->planes,dmpi->stride); | |
133 | |
5527 | 134 if(vf->priv->w==mpi->w && vf->priv->h==mpi->h){ |
135 // just conversion, no scaling -> keep postprocessing data | |
136 // this way we can apply pp filter to non-yv12 source using scaler | |
137 dmpi->qscale=mpi->qscale; | |
138 dmpi->qstride=mpi->qstride; | |
139 } | |
140 | |
5522 | 141 vf_next_put_image(vf,dmpi); |
142 } | |
143 | |
144 //===========================================================================// | |
145 | |
5523 | 146 // supported Input formats: YV12, I420, IYUV, YUY2, BGR32, BGR24, BGR16, BGR15, RGB32, RGB24, Y8, Y800 |
147 | |
148 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
149 switch(fmt){ | |
150 case IMGFMT_YV12: | |
151 case IMGFMT_I420: | |
152 case IMGFMT_IYUV: | |
153 case IMGFMT_YUY2: | |
154 case IMGFMT_BGR32: | |
155 case IMGFMT_BGR24: | |
156 case IMGFMT_BGR16: | |
157 case IMGFMT_BGR15: | |
158 case IMGFMT_RGB32: | |
159 case IMGFMT_RGB24: | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
160 case IMGFMT_Y800: { |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
161 unsigned int best=find_best_out(vf); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
162 int flags; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
163 if(!best) return 0; // no matching out-fmt |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
164 flags=vf_next_query_format(vf,best); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
165 if(!(flags&3)) return 0; // huh? |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
166 if(fmt!=best) flags&=~VFCAP_CSP_SUPPORTED_BY_HW; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
167 // 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
|
168 if(!(flags&VFCAP_POSTPROC)) flags|=VFCAP_SWSCALE; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
169 return flags; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
170 } |
5523 | 171 } |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
172 return 0; // nomatching in-fmt |
5523 | 173 } |
174 | |
5522 | 175 static int open(vf_instance_t *vf, char* args){ |
176 vf->config=config; | |
177 vf->put_image=put_image; | |
5526 | 178 vf->query_format=query_format; |
5522 | 179 vf->priv=malloc(sizeof(struct vf_priv_s)); |
180 // TODO: parse args -> | |
181 vf->priv->ctx=NULL; | |
182 vf->priv->w= | |
183 vf->priv->h=-1; | |
184 if(args) sscanf(args, "%d:%d", | |
185 &vf->priv->w, | |
186 &vf->priv->h); | |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
6126
diff
changeset
|
187 mp_msg(MSGT_VFILTER,MSGL_V,"SwScale params: %d x %d (-1=no scaling)\n", |
5522 | 188 vf->priv->w, |
189 vf->priv->h); | |
190 return 1; | |
191 } | |
192 | |
193 vf_info_t vf_info_scale = { | |
194 "software scaling", | |
195 "scale", | |
196 "A'rpi", | |
197 "", | |
198 open | |
199 }; | |
200 | |
201 //===========================================================================// |