Mercurial > mplayer.hg
annotate libmpcodecs/vf_scale.c @ 5598:efc798ab5822
libdv detection
author | arpi |
---|---|
date | Sat, 13 Apr 2002 16:51:01 +0000 |
parents | 0b301fec999a |
children | 1972c3475d93 |
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 | |
5523 | 9 #include "../libvo/img_format.h" |
5522 | 10 #include "../mp_image.h" |
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: |
96 vf->priv->ctx=getSwsContextFromCmdLine(width,height,outfmt, | |
5523 | 97 vf->priv->w,vf->priv->h,best); |
5522 | 98 if(!vf->priv->ctx){ |
99 // error... | |
100 printf("Couldn't init SwScaler for this setup\n"); | |
101 return 0; | |
102 } | |
5523 | 103 vf->priv->fmt=best; |
5525 | 104 return vf_next_config(vf,vf->priv->w,vf->priv->h,d_width,d_height,flags,best); |
5522 | 105 } |
106 | |
107 static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){ | |
108 mp_image_t *dmpi; | |
109 | |
110 // hope we'll get DR buffer: | |
5523 | 111 dmpi=vf_get_image(vf->next,vf->priv->fmt, |
5522 | 112 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, |
113 vf->priv->w, vf->priv->h); | |
114 | |
115 vf->priv->ctx->swScale(vf->priv->ctx,mpi->planes,mpi->stride,0,mpi->h,dmpi->planes,dmpi->stride); | |
116 | |
5527 | 117 if(vf->priv->w==mpi->w && vf->priv->h==mpi->h){ |
118 // just conversion, no scaling -> keep postprocessing data | |
119 // this way we can apply pp filter to non-yv12 source using scaler | |
120 dmpi->qscale=mpi->qscale; | |
121 dmpi->qstride=mpi->qstride; | |
122 } | |
123 | |
5522 | 124 vf_next_put_image(vf,dmpi); |
125 } | |
126 | |
127 //===========================================================================// | |
128 | |
5523 | 129 // supported Input formats: YV12, I420, IYUV, YUY2, BGR32, BGR24, BGR16, BGR15, RGB32, RGB24, Y8, Y800 |
130 | |
131 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
132 switch(fmt){ | |
133 case IMGFMT_YV12: | |
134 case IMGFMT_I420: | |
135 case IMGFMT_IYUV: | |
136 case IMGFMT_YUY2: | |
137 case IMGFMT_BGR32: | |
138 case IMGFMT_BGR24: | |
139 case IMGFMT_BGR16: | |
140 case IMGFMT_BGR15: | |
141 case IMGFMT_RGB32: | |
142 case IMGFMT_RGB24: | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
143 case IMGFMT_Y800: { |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
144 unsigned int best=find_best_out(vf); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
145 int flags; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
146 if(!best) return 0; // no matching out-fmt |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
147 flags=vf_next_query_format(vf,best); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
148 if(!(flags&3)) return 0; // huh? |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
149 if(fmt!=best) flags&=~VFCAP_CSP_SUPPORTED_BY_HW; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
150 // 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
|
151 if(!(flags&VFCAP_POSTPROC)) flags|=VFCAP_SWSCALE; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
152 return flags; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
153 } |
5523 | 154 } |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5527
diff
changeset
|
155 return 0; // nomatching in-fmt |
5523 | 156 } |
157 | |
5522 | 158 static int open(vf_instance_t *vf, char* args){ |
159 vf->config=config; | |
160 vf->put_image=put_image; | |
5526 | 161 vf->query_format=query_format; |
5522 | 162 vf->priv=malloc(sizeof(struct vf_priv_s)); |
163 // TODO: parse args -> | |
164 vf->priv->ctx=NULL; | |
165 vf->priv->w= | |
166 vf->priv->h=-1; | |
167 if(args) sscanf(args, "%d:%d", | |
168 &vf->priv->w, | |
169 &vf->priv->h); | |
170 printf("SwScale: %d x %d\n", | |
171 vf->priv->w, | |
172 vf->priv->h); | |
173 return 1; | |
174 } | |
175 | |
176 vf_info_t vf_info_scale = { | |
177 "software scaling", | |
178 "scale", | |
179 "A'rpi", | |
180 "", | |
181 open | |
182 }; | |
183 | |
184 //===========================================================================// |