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