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