annotate libmpcodecs/vf_scale.c @ 7195:a5b2566f3c2b

print only fatal/error/warning to stderr, others go to stdout (actually reversed Nick's r1.10 commit)
author arpi
date Sat, 31 Aug 2002 13:44:03 +0000
parents c9ee9c799f4a
children a894e99c1e51
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
1 #include <stdio.h>
545c13161589 swscale filter
arpi
parents:
diff changeset
2 #include <stdlib.h>
545c13161589 swscale filter
arpi
parents:
diff changeset
3 #include <string.h>
545c13161589 swscale filter
arpi
parents:
diff changeset
4 #include <inttypes.h>
545c13161589 swscale filter
arpi
parents:
diff changeset
5
545c13161589 swscale filter
arpi
parents:
diff changeset
6 #include "../config.h"
545c13161589 swscale filter
arpi
parents:
diff changeset
7 #include "../mp_msg.h"
545c13161589 swscale filter
arpi
parents:
diff changeset
8
5607
1972c3475d93 mp_image.h and img_format.h moved to libmpcodecs
arpi
parents: 5565
diff changeset
9 #include "img_format.h"
1972c3475d93 mp_image.h and img_format.h moved to libmpcodecs
arpi
parents: 5565
diff changeset
10 #include "mp_image.h"
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
11 #include "vf.h"
545c13161589 swscale filter
arpi
parents:
diff changeset
12
545c13161589 swscale filter
arpi
parents:
diff changeset
13 #include "../libvo/fastmemcpy.h"
545c13161589 swscale filter
arpi
parents:
diff changeset
14 #include "../postproc/swscale.h"
545c13161589 swscale filter
arpi
parents:
diff changeset
15
545c13161589 swscale filter
arpi
parents:
diff changeset
16 struct vf_priv_s {
545c13161589 swscale filter
arpi
parents:
diff changeset
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;
6637
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
19 int param;
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
20 unsigned int fmt;
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
21 SwsContext *ctx;
545c13161589 swscale filter
arpi
parents:
diff changeset
22 };
545c13161589 swscale filter
arpi
parents:
diff changeset
23
6060
61f39b98ba4d keep aspect ratio - based on Fredrik Kuivinen's idea
arpi
parents: 6003
diff changeset
24 extern int opt_screen_size_x;
61f39b98ba4d keep aspect ratio - based on Fredrik Kuivinen's idea
arpi
parents: 6003
diff changeset
25 extern int opt_screen_size_y;
61f39b98ba4d keep aspect ratio - based on Fredrik Kuivinen's idea
arpi
parents: 6003
diff changeset
26
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
27 //===========================================================================//
545c13161589 swscale filter
arpi
parents:
diff changeset
28
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
29 static unsigned int outfmt_list[]={
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
30 IMGFMT_BGR32,
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
31 IMGFMT_BGR24,
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
32 IMGFMT_BGR16,
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
33 IMGFMT_BGR15,
6637
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
34 IMGFMT_BGR8,
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
35 IMGFMT_BGR4,
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
36 IMGFMT_BGR1,
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
37 IMGFMT_RGB32,
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
38 IMGFMT_RGB24,
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
39 IMGFMT_RGB16,
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
40 IMGFMT_RGB15,
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
41 IMGFMT_RGB8,
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
42 IMGFMT_RGB4,
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
43 IMGFMT_RGB1,
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
44 IMGFMT_YV12,
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
45 IMGFMT_I420,
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
46 IMGFMT_IYUV,
6533
52f8bde27fea yvu9 & y8
michael
parents: 6188
diff changeset
47 IMGFMT_Y800,
52f8bde27fea yvu9 & y8
michael
parents: 6188
diff changeset
48 IMGFMT_Y8,
52f8bde27fea yvu9 & y8
michael
parents: 6188
diff changeset
49 IMGFMT_YVU9,
6536
87942adf9c1c IF09 added
arpi
parents: 6533
diff changeset
50 IMGFMT_IF09,
6863
713182435a76 planar yuv 444 422 411 support
michael
parents: 6750
diff changeset
51 IMGFMT_444P,
713182435a76 planar yuv 444 422 411 support
michael
parents: 6750
diff changeset
52 IMGFMT_422P,
713182435a76 planar yuv 444 422 411 support
michael
parents: 6750
diff changeset
53 IMGFMT_411P,
6188
39a9515c633a warning fixes, patch by Ulrich Hecht <uli@suse.de>
arpi
parents: 6138
diff changeset
54 0
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
55 };
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
56
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
57 static unsigned int find_best_out(vf_instance_t *vf){
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
58 unsigned int best=0;
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
59 unsigned int* p=outfmt_list;
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
60 // find the best outfmt:
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
61 while(*p){
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
62 int ret=vf_next_query_format(vf,*p);
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
63 mp_msg(MSGT_VFILTER,MSGL_V,"scale: query(%s) -> %d\n",vo_format_name(*p),ret&3);
6708
8058078f1248 support for external pp by divx4. some fixes/cosmetics?
alex
parents: 6637
diff changeset
64 if(ret&VFCAP_CSP_SUPPORTED_BY_HW){ best=*p; break;} // no conversion -> bingo!
8058078f1248 support for external pp by divx4. some fixes/cosmetics?
alex
parents: 6637
diff changeset
65 if(ret&VFCAP_CSP_SUPPORTED && !best) best=*p; // best with conversion
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
66 ++p;
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
67 }
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
68 return best;
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
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
71 static int config(struct vf_instance_s* vf,
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
72 int width, int height, int d_width, int d_height,
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
73 unsigned int flags, unsigned int outfmt){
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
74 unsigned int best=find_best_out(vf);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
75 int vo_flags;
6542
7af3fcd76d2d support dropping some chroma src lines for a bit extra speed
michael
parents: 6536
diff changeset
76 int int_sws_flags=0;
7af3fcd76d2d support dropping some chroma src lines for a bit extra speed
michael
parents: 6536
diff changeset
77 SwsFilter *srcFilter, *dstFilter;
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
78
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
79 if(!best){
6138
523014df7d32 big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents: 6126
diff changeset
80 mp_msg(MSGT_VFILTER,MSGL_WARN,"SwScale: no supported outfmt found :(\n");
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
81 return 0;
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
82 }
5565
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 vo_flags=vf->next->query_format(vf->next,best);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
85
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
86 // scaling to dwidth*d_height, if all these TRUE:
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
87 // - option -zoom
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
88 // - no other sw/hw up/down scaling avail.
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
89 // - we're after postproc
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
90 // - user didn't set w:h
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
91 if(!(vo_flags&VFCAP_POSTPROC) && (flags&4) &&
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
92 vf->priv->w<0 && vf->priv->h<0){ // -zoom
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
93 int x=(vo_flags&VFCAP_SWSCALE) ? 0 : 1;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
94 if(d_width<width || d_height<height){
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
95 // downscale!
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
96 if(vo_flags&VFCAP_HWSCALE_DOWN) x=0;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
97 } else {
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
98 // upscale:
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
99 if(vo_flags&VFCAP_HWSCALE_UP) x=0;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
100 }
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
101 if(x){
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
102 // user wants sw scaling! (-zoom)
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
103 vf->priv->w=d_width;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
104 vf->priv->h=d_height;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
105 }
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
106 }
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
107
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
108 // calculate the missing parameters:
6746
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
109 switch(best) {
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
110 case IMGFMT_YUY2: /* YUY2 needs w rounded to 2 */
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
111 if(vf->priv->w==-3) vf->priv->w=(vf->priv->h*width/height+1)&~1; else
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
112 if(vf->priv->w==-2) vf->priv->w=(vf->priv->h*d_width/d_height+1)&~1;
6750
6484f8f9f111 Put back the ordering of the if as requested by Arpi.
kmkaplan
parents: 6746
diff changeset
113 if(vf->priv->w<0) vf->priv->w=width; else
6484f8f9f111 Put back the ordering of the if as requested by Arpi.
kmkaplan
parents: 6746
diff changeset
114 if(vf->priv->w==0) vf->priv->w=d_width;
6746
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
115 if(vf->priv->h==-3) vf->priv->h=vf->priv->w*height/width; else
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
116 if(vf->priv->h==-2) vf->priv->h=vf->priv->w*d_height/d_width;
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
117 break;
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
118 case IMGFMT_YV12: /* YV12 needs w & h rounded to 2 */
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
119 if(vf->priv->w==-3) vf->priv->w=(vf->priv->h*width/height+1)&~1; else
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
120 if(vf->priv->w==-2) vf->priv->w=(vf->priv->h*d_width/d_height+1)&~1;
6750
6484f8f9f111 Put back the ordering of the if as requested by Arpi.
kmkaplan
parents: 6746
diff changeset
121 if(vf->priv->w<0) vf->priv->w=width; else
6484f8f9f111 Put back the ordering of the if as requested by Arpi.
kmkaplan
parents: 6746
diff changeset
122 if(vf->priv->w==0) vf->priv->w=d_width;
6746
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
123 if(vf->priv->h==-3) vf->priv->h=(vf->priv->w*height/width+1)&~1; else
7044
c9ee9c799f4a typo fix, patch by (Eric Lammerts <eric at lammerts dot org>)
michael
parents: 6876
diff changeset
124 if(vf->priv->h==-2) vf->priv->h=(vf->priv->w*d_height/d_width+1)&~1;
6746
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
125 break;
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
126 default:
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
127 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
128 if(vf->priv->w==-2) vf->priv->w=vf->priv->h*d_width/d_height;
6750
6484f8f9f111 Put back the ordering of the if as requested by Arpi.
kmkaplan
parents: 6746
diff changeset
129 if(vf->priv->w<0) vf->priv->w=width; else
6484f8f9f111 Put back the ordering of the if as requested by Arpi.
kmkaplan
parents: 6746
diff changeset
130 if(vf->priv->w==0) vf->priv->w=d_width;
6746
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
131 if(vf->priv->h==-3) vf->priv->h=vf->priv->w*height/width; else
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
132 if(vf->priv->h==-2) vf->priv->h=vf->priv->w*d_height/d_width;
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
133 break;
0e2b14e606ac Round height or width to valid values when doing automatic calculation.
kmkaplan
parents: 6708
diff changeset
134 }
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
135
6003
28f800545e63 w/h=0 means d_w/h instead of original
arpi
parents: 5712
diff changeset
136 if(vf->priv->h<0) vf->priv->h=height; else
28f800545e63 w/h=0 means d_w/h instead of original
arpi
parents: 5712
diff changeset
137 if(vf->priv->h==0) vf->priv->h=d_height;
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
138
6138
523014df7d32 big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents: 6126
diff changeset
139 mp_msg(MSGT_VFILTER,MSGL_DBG2,"SwScale: scaling %dx%d %s to %dx%d %s \n",
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
140 width,height,vo_format_name(outfmt),
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
141 vf->priv->w,vf->priv->h,vo_format_name(best));
5526
30679378f814 free old context, really use query_format
arpi
parents: 5525
diff changeset
142
30679378f814 free old context, really use query_format
arpi
parents: 5525
diff changeset
143 // free old ctx:
30679378f814 free old context, really use query_format
arpi
parents: 5525
diff changeset
144 if(vf->priv->ctx) freeSwsContext(vf->priv->ctx);
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
145
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
146 // new swscaler:
6542
7af3fcd76d2d support dropping some chroma src lines for a bit extra speed
michael
parents: 6536
diff changeset
147 swsGetFlagsAndFilterFromCmdLine(&int_sws_flags, &srcFilter, &dstFilter);
7af3fcd76d2d support dropping some chroma src lines for a bit extra speed
michael
parents: 6536
diff changeset
148 int_sws_flags|= vf->priv->v_chr_drop << SWS_SRC_V_CHR_DROP_SHIFT;
6637
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
149 int_sws_flags|= vf->priv->param << SWS_PARAM_SHIFT;
6542
7af3fcd76d2d support dropping some chroma src lines for a bit extra speed
michael
parents: 6536
diff changeset
150 vf->priv->ctx=getSwsContext(width,height,
5712
6c6e55db908f swscaler yv12 vs i420 workaround
arpi
parents: 5607
diff changeset
151 (outfmt==IMGFMT_I420 || outfmt==IMGFMT_IYUV)?IMGFMT_YV12:outfmt,
6c6e55db908f swscaler yv12 vs i420 workaround
arpi
parents: 5607
diff changeset
152 vf->priv->w,vf->priv->h,
6542
7af3fcd76d2d support dropping some chroma src lines for a bit extra speed
michael
parents: 6536
diff changeset
153 (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
154 int_sws_flags, srcFilter, dstFilter);
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
155 if(!vf->priv->ctx){
545c13161589 swscale filter
arpi
parents:
diff changeset
156 // error...
6138
523014df7d32 big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents: 6126
diff changeset
157 mp_msg(MSGT_VFILTER,MSGL_WARN,"Couldn't init SwScaler for this setup\n");
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
158 return 0;
545c13161589 swscale filter
arpi
parents:
diff changeset
159 }
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
160 vf->priv->fmt=best;
6060
61f39b98ba4d keep aspect ratio - based on Fredrik Kuivinen's idea
arpi
parents: 6003
diff changeset
161
61f39b98ba4d keep aspect ratio - based on Fredrik Kuivinen's idea
arpi
parents: 6003
diff changeset
162 if(!opt_screen_size_x && !opt_screen_size_y){
61f39b98ba4d keep aspect ratio - based on Fredrik Kuivinen's idea
arpi
parents: 6003
diff changeset
163 d_width=d_width*vf->priv->w/width;
61f39b98ba4d keep aspect ratio - based on Fredrik Kuivinen's idea
arpi
parents: 6003
diff changeset
164 d_height=d_height*vf->priv->h/height;
61f39b98ba4d keep aspect ratio - based on Fredrik Kuivinen's idea
arpi
parents: 6003
diff changeset
165 }
5525
arpi
parents: 5523
diff changeset
166 return vf_next_config(vf,vf->priv->w,vf->priv->h,d_width,d_height,flags,best);
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
167 }
545c13161589 swscale filter
arpi
parents:
diff changeset
168
545c13161589 swscale filter
arpi
parents:
diff changeset
169 static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){
545c13161589 swscale filter
arpi
parents:
diff changeset
170 mp_image_t *dmpi;
545c13161589 swscale filter
arpi
parents:
diff changeset
171
545c13161589 swscale filter
arpi
parents:
diff changeset
172 // hope we'll get DR buffer:
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
173 dmpi=vf_get_image(vf->next,vf->priv->fmt,
6876
49485d9f0d47 imho swscale also likes aligned stride :)
arpi
parents: 6863
diff changeset
174 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE | MP_IMGFLAG_PREFER_ALIGNED_STRIDE,
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
175 vf->priv->w, vf->priv->h);
545c13161589 swscale filter
arpi
parents:
diff changeset
176 vf->priv->ctx->swScale(vf->priv->ctx,mpi->planes,mpi->stride,0,mpi->h,dmpi->planes,dmpi->stride);
545c13161589 swscale filter
arpi
parents:
diff changeset
177
5527
04c5047ead0c pp passtrough
arpi
parents: 5526
diff changeset
178 if(vf->priv->w==mpi->w && vf->priv->h==mpi->h){
04c5047ead0c pp passtrough
arpi
parents: 5526
diff changeset
179 // just conversion, no scaling -> keep postprocessing data
04c5047ead0c pp passtrough
arpi
parents: 5526
diff changeset
180 // this way we can apply pp filter to non-yv12 source using scaler
04c5047ead0c pp passtrough
arpi
parents: 5526
diff changeset
181 dmpi->qscale=mpi->qscale;
04c5047ead0c pp passtrough
arpi
parents: 5526
diff changeset
182 dmpi->qstride=mpi->qstride;
04c5047ead0c pp passtrough
arpi
parents: 5526
diff changeset
183 }
04c5047ead0c pp passtrough
arpi
parents: 5526
diff changeset
184
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
185 vf_next_put_image(vf,dmpi);
545c13161589 swscale filter
arpi
parents:
diff changeset
186 }
545c13161589 swscale filter
arpi
parents:
diff changeset
187
545c13161589 swscale filter
arpi
parents:
diff changeset
188 //===========================================================================//
545c13161589 swscale filter
arpi
parents:
diff changeset
189
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
190 // supported Input formats: YV12, I420, IYUV, YUY2, BGR32, BGR24, BGR16, BGR15, RGB32, RGB24, Y8, Y800
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
191
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
192 static int query_format(struct vf_instance_s* vf, unsigned int fmt){
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
193 switch(fmt){
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
194 case IMGFMT_YV12:
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
195 case IMGFMT_I420:
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
196 case IMGFMT_IYUV:
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
197 case IMGFMT_YUY2:
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
198 case IMGFMT_BGR32:
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
199 case IMGFMT_BGR24:
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
200 case IMGFMT_BGR16:
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
201 case IMGFMT_BGR15:
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
202 case IMGFMT_RGB32:
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
203 case IMGFMT_RGB24:
6533
52f8bde27fea yvu9 & y8
michael
parents: 6188
diff changeset
204 case IMGFMT_Y800:
52f8bde27fea yvu9 & y8
michael
parents: 6188
diff changeset
205 case IMGFMT_Y8:
52f8bde27fea yvu9 & y8
michael
parents: 6188
diff changeset
206 case IMGFMT_YVU9:
6536
87942adf9c1c IF09 added
arpi
parents: 6533
diff changeset
207 case IMGFMT_IF09:
6863
713182435a76 planar yuv 444 422 411 support
michael
parents: 6750
diff changeset
208 case IMGFMT_444P:
713182435a76 planar yuv 444 422 411 support
michael
parents: 6750
diff changeset
209 case IMGFMT_422P:
713182435a76 planar yuv 444 422 411 support
michael
parents: 6750
diff changeset
210 case IMGFMT_411P:
6533
52f8bde27fea yvu9 & y8
michael
parents: 6188
diff changeset
211 {
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
212 unsigned int best=find_best_out(vf);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
213 int flags;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
214 if(!best) return 0; // no matching out-fmt
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
215 flags=vf_next_query_format(vf,best);
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
216 if(!(flags&3)) return 0; // huh?
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
217 if(fmt!=best) flags&=~VFCAP_CSP_SUPPORTED_BY_HW;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
218 // 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
219 if(!(flags&VFCAP_POSTPROC)) flags|=VFCAP_SWSCALE;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
220 return flags;
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
221 }
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
222 }
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5527
diff changeset
223 return 0; // nomatching in-fmt
5523
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
224 }
8d55957fa018 colorspace conversion support
arpi
parents: 5522
diff changeset
225
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
226 static int open(vf_instance_t *vf, char* args){
545c13161589 swscale filter
arpi
parents:
diff changeset
227 vf->config=config;
545c13161589 swscale filter
arpi
parents:
diff changeset
228 vf->put_image=put_image;
5526
30679378f814 free old context, really use query_format
arpi
parents: 5525
diff changeset
229 vf->query_format=query_format;
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
230 vf->priv=malloc(sizeof(struct vf_priv_s));
545c13161589 swscale filter
arpi
parents:
diff changeset
231 // TODO: parse args ->
545c13161589 swscale filter
arpi
parents:
diff changeset
232 vf->priv->ctx=NULL;
545c13161589 swscale filter
arpi
parents:
diff changeset
233 vf->priv->w=
545c13161589 swscale filter
arpi
parents:
diff changeset
234 vf->priv->h=-1;
6542
7af3fcd76d2d support dropping some chroma src lines for a bit extra speed
michael
parents: 6536
diff changeset
235 vf->priv->v_chr_drop=0;
6637
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
236 vf->priv->param=0;
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
237 if(args) sscanf(args, "%d:%d:%d:%d",
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
238 &vf->priv->w,
6542
7af3fcd76d2d support dropping some chroma src lines for a bit extra speed
michael
parents: 6536
diff changeset
239 &vf->priv->h,
6637
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
240 &vf->priv->v_chr_drop,
f47f12ba3b88 more scaling algos
michael
parents: 6542
diff changeset
241 &vf->priv->param);
6138
523014df7d32 big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents: 6126
diff changeset
242 mp_msg(MSGT_VFILTER,MSGL_V,"SwScale params: %d x %d (-1=no scaling)\n",
5522
545c13161589 swscale filter
arpi
parents:
diff changeset
243 vf->priv->w,
545c13161589 swscale filter
arpi
parents:
diff changeset
244 vf->priv->h);
545c13161589 swscale filter
arpi
parents:
diff changeset
245 return 1;
545c13161589 swscale filter
arpi
parents:
diff changeset
246 }
545c13161589 swscale filter
arpi
parents:
diff changeset
247
545c13161589 swscale filter
arpi
parents:
diff changeset
248 vf_info_t vf_info_scale = {
545c13161589 swscale filter
arpi
parents:
diff changeset
249 "software scaling",
545c13161589 swscale filter
arpi
parents:
diff changeset
250 "scale",
545c13161589 swscale filter
arpi
parents:
diff changeset
251 "A'rpi",
545c13161589 swscale filter
arpi
parents:
diff changeset
252 "",
545c13161589 swscale filter
arpi
parents:
diff changeset
253 open
545c13161589 swscale filter
arpi
parents:
diff changeset
254 };
545c13161589 swscale filter
arpi
parents:
diff changeset
255
545c13161589 swscale filter
arpi
parents:
diff changeset
256 //===========================================================================//