Mercurial > mplayer.hg
annotate libmpcodecs/vf_scale.c @ 6536:87942adf9c1c
IF09 added
author | arpi |
---|---|
date | Sun, 23 Jun 2002 19:31:31 +0000 |
parents | 52f8bde27fea |
children | 7af3fcd76d2d |
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, | |
6533 | 35 IMGFMT_Y800, |
36 IMGFMT_Y8, | |
37 IMGFMT_YVU9, | |
6536 | 38 IMGFMT_IF09, |
6188 | 39 0 |
5523 | 40 }; |
41 | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
42 static unsigned int find_best_out(vf_instance_t *vf){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
43 unsigned int best=0; |
5523 | 44 unsigned int* p=outfmt_list; |
45 // find the best outfmt: | |
46 while(*p){ | |
47 int ret=vf_next_query_format(vf,*p); | |
48 mp_msg(MSGT_VFILTER,MSGL_V,"scale: query(%s) -> %d\n",vo_format_name(*p),ret&3); | |
49 if(ret&2){ best=*p; break;} // no conversion -> bingo! | |
50 if(ret&1 && !best) best=*p; // best with conversion | |
51 ++p; | |
52 } | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
53 return best; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
54 } |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
55 |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
56 static int config(struct vf_instance_s* vf, |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
57 int width, int height, int d_width, int d_height, |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
58 unsigned int flags, unsigned int outfmt){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
59 unsigned int best=find_best_out(vf); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
60 int vo_flags; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
61 |
5523 | 62 if(!best){ |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
6126
diff
changeset
|
63 mp_msg(MSGT_VFILTER,MSGL_WARN,"SwScale: no supported outfmt found :(\n"); |
5523 | 64 return 0; |
65 } | |
5565
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 vo_flags=vf->next->query_format(vf->next,best); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
68 |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
69 // scaling to dwidth*d_height, if all these TRUE: |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
70 // - option -zoom |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
71 // - no other sw/hw up/down scaling avail. |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
72 // - we're after postproc |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
73 // - user didn't set w:h |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
74 if(!(vo_flags&VFCAP_POSTPROC) && (flags&4) && |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
75 vf->priv->w<0 && vf->priv->h<0){ // -zoom |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
76 int x=(vo_flags&VFCAP_SWSCALE) ? 0 : 1; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
77 if(d_width<width || d_height<height){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
78 // downscale! |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
79 if(vo_flags&VFCAP_HWSCALE_DOWN) x=0; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
80 } else { |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
81 // upscale: |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
82 if(vo_flags&VFCAP_HWSCALE_UP) x=0; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
83 } |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
84 if(x){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
85 // user wants sw scaling! (-zoom) |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
86 vf->priv->w=d_width; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
87 vf->priv->h=d_height; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
88 } |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
89 } |
5523 | 90 |
5522 | 91 // 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
|
92 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
|
93 if(vf->priv->w==-2) vf->priv->w=vf->priv->h*d_width/d_height; |
6003 | 94 if(vf->priv->w<0) vf->priv->w=width; else |
95 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
|
96 |
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
|
97 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
|
98 if(vf->priv->h==-2) vf->priv->h=vf->priv->w*d_height/d_width; |
6003 | 99 if(vf->priv->h<0) vf->priv->h=height; else |
100 if(vf->priv->h==0) vf->priv->h=d_height; | |
5523 | 101 |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
6126
diff
changeset
|
102 mp_msg(MSGT_VFILTER,MSGL_DBG2,"SwScale: scaling %dx%d %s to %dx%d %s \n", |
5523 | 103 width,height,vo_format_name(outfmt), |
104 vf->priv->w,vf->priv->h,vo_format_name(best)); | |
5526 | 105 |
106 // free old ctx: | |
107 if(vf->priv->ctx) freeSwsContext(vf->priv->ctx); | |
5523 | 108 |
5522 | 109 // new swscaler: |
5712 | 110 vf->priv->ctx=getSwsContextFromCmdLine(width,height, |
111 (outfmt==IMGFMT_I420 || outfmt==IMGFMT_IYUV)?IMGFMT_YV12:outfmt, | |
112 vf->priv->w,vf->priv->h, | |
113 (best==IMGFMT_I420 || best==IMGFMT_IYUV)?IMGFMT_YV12:best); | |
5522 | 114 if(!vf->priv->ctx){ |
115 // error... | |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
6126
diff
changeset
|
116 mp_msg(MSGT_VFILTER,MSGL_WARN,"Couldn't init SwScaler for this setup\n"); |
5522 | 117 return 0; |
118 } | |
5523 | 119 vf->priv->fmt=best; |
6060 | 120 |
121 if(!opt_screen_size_x && !opt_screen_size_y){ | |
122 d_width=d_width*vf->priv->w/width; | |
123 d_height=d_height*vf->priv->h/height; | |
124 } | |
5525 | 125 return vf_next_config(vf,vf->priv->w,vf->priv->h,d_width,d_height,flags,best); |
5522 | 126 } |
127 | |
128 static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){ | |
129 mp_image_t *dmpi; | |
130 | |
131 // hope we'll get DR buffer: | |
5523 | 132 dmpi=vf_get_image(vf->next,vf->priv->fmt, |
5522 | 133 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, |
134 vf->priv->w, vf->priv->h); | |
135 vf->priv->ctx->swScale(vf->priv->ctx,mpi->planes,mpi->stride,0,mpi->h,dmpi->planes,dmpi->stride); | |
136 | |
5527 | 137 if(vf->priv->w==mpi->w && vf->priv->h==mpi->h){ |
138 // just conversion, no scaling -> keep postprocessing data | |
139 // this way we can apply pp filter to non-yv12 source using scaler | |
140 dmpi->qscale=mpi->qscale; | |
141 dmpi->qstride=mpi->qstride; | |
142 } | |
143 | |
5522 | 144 vf_next_put_image(vf,dmpi); |
145 } | |
146 | |
147 //===========================================================================// | |
148 | |
5523 | 149 // supported Input formats: YV12, I420, IYUV, YUY2, BGR32, BGR24, BGR16, BGR15, RGB32, RGB24, Y8, Y800 |
150 | |
151 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
152 switch(fmt){ | |
153 case IMGFMT_YV12: | |
154 case IMGFMT_I420: | |
155 case IMGFMT_IYUV: | |
156 case IMGFMT_YUY2: | |
157 case IMGFMT_BGR32: | |
158 case IMGFMT_BGR24: | |
159 case IMGFMT_BGR16: | |
160 case IMGFMT_BGR15: | |
161 case IMGFMT_RGB32: | |
162 case IMGFMT_RGB24: | |
6533 | 163 case IMGFMT_Y800: |
164 case IMGFMT_Y8: | |
165 case IMGFMT_YVU9: | |
6536 | 166 case IMGFMT_IF09: |
6533 | 167 { |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
168 unsigned int best=find_best_out(vf); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
169 int flags; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
170 if(!best) return 0; // no matching out-fmt |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
171 flags=vf_next_query_format(vf,best); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
172 if(!(flags&3)) return 0; // huh? |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
173 if(fmt!=best) flags&=~VFCAP_CSP_SUPPORTED_BY_HW; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
174 // 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
|
175 if(!(flags&VFCAP_POSTPROC)) flags|=VFCAP_SWSCALE; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
176 return flags; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
177 } |
5523 | 178 } |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
179 return 0; // nomatching in-fmt |
5523 | 180 } |
181 | |
5522 | 182 static int open(vf_instance_t *vf, char* args){ |
183 vf->config=config; | |
184 vf->put_image=put_image; | |
5526 | 185 vf->query_format=query_format; |
5522 | 186 vf->priv=malloc(sizeof(struct vf_priv_s)); |
187 // TODO: parse args -> | |
188 vf->priv->ctx=NULL; | |
189 vf->priv->w= | |
190 vf->priv->h=-1; | |
191 if(args) sscanf(args, "%d:%d", | |
192 &vf->priv->w, | |
193 &vf->priv->h); | |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
6126
diff
changeset
|
194 mp_msg(MSGT_VFILTER,MSGL_V,"SwScale params: %d x %d (-1=no scaling)\n", |
5522 | 195 vf->priv->w, |
196 vf->priv->h); | |
197 return 1; | |
198 } | |
199 | |
200 vf_info_t vf_info_scale = { | |
201 "software scaling", | |
202 "scale", | |
203 "A'rpi", | |
204 "", | |
205 open | |
206 }; | |
207 | |
208 //===========================================================================// |