10 #include "img_format.h"
13 #include "fmt-conversion.h"
16 #include "libswscale/swscale.h"
22 static struct vf_priv_s
{
27 struct SwsContext
*ctx
;
28 struct SwsContext
*ctx2
; //for interlaced slices only
29 unsigned char* palette
;
33 int query_format_cache
[64];
34 } const vf_priv_dflt
= {
37 {SWS_PARAM_DEFAULT
, SWS_PARAM_DEFAULT
},
44 extern int opt_screen_size_x
;
45 extern int opt_screen_size_y
;
46 extern float screen_size_xy
;
48 //===========================================================================//
50 void sws_getFlagsAndFilterFromCmdLine(int *flags
, SwsFilter
**srcFilterParam
, SwsFilter
**dstFilterParam
);
52 static unsigned int outfmt_list
[]={
66 // RGB and grayscale (Y8 and Y800):
88 static unsigned int find_best_out(vf_instance_t
*vf
){
92 // find the best outfmt:
93 for(i
=0; i
<sizeof(outfmt_list
)/sizeof(int)-1; i
++){
94 const int format
= outfmt_list
[i
];
95 int ret
= vf
->priv
->query_format_cache
[i
]-1;
97 ret
= vf_next_query_format(vf
, outfmt_list
[i
]);
98 vf
->priv
->query_format_cache
[i
]= ret
+1;
101 mp_msg(MSGT_VFILTER
,MSGL_DBG2
,"scale: query(%s) -> %d\n",vo_format_name(format
),ret
&3);
102 if(ret
&VFCAP_CSP_SUPPORTED_BY_HW
){
103 best
=format
; // no conversion -> bingo!
106 if(ret
&VFCAP_CSP_SUPPORTED
&& !best
)
107 best
=format
; // best with conversion
112 static int config(struct vf_instance_s
* vf
,
113 int width
, int height
, int d_width
, int d_height
,
114 unsigned int flags
, unsigned int outfmt
){
115 unsigned int best
=find_best_out(vf
);
118 int round_w
=0, round_h
=0;
120 SwsFilter
*srcFilter
, *dstFilter
;
121 enum PixelFormat dfmt
, sfmt
;
124 mp_msg(MSGT_VFILTER
,MSGL_WARN
,"SwScale: no supported outfmt found :(\n");
127 sfmt
= imgfmt2pixfmt(outfmt
);
128 if (outfmt
== IMGFMT_RGB8
|| outfmt
== IMGFMT_BGR8
) sfmt
= PIX_FMT_PAL8
;
129 dfmt
= imgfmt2pixfmt(best
);
131 vo_flags
=vf
->next
->query_format(vf
->next
,best
);
133 // scaling to dwidth*d_height, if all these TRUE:
135 // - no other sw/hw up/down scaling avail.
136 // - we're after postproc
137 // - user didn't set w:h
138 if(!(vo_flags
&VFCAP_POSTPROC
) && (flags
&4) &&
139 vf
->priv
->w
<0 && vf
->priv
->h
<0){ // -zoom
140 int x
=(vo_flags
&VFCAP_SWSCALE
) ? 0 : 1;
141 if(d_width
<width
|| d_height
<height
){
143 if(vo_flags
&VFCAP_HWSCALE_DOWN
) x
=0;
146 if(vo_flags
&VFCAP_HWSCALE_UP
) x
=0;
149 // user wants sw scaling! (-zoom)
151 vf
->priv
->h
=d_height
;
156 if((vf
->priv
->w
> width
) + (vf
->priv
->h
> height
) >= vf
->priv
->noup
){
162 if (vf
->priv
->w
<= -8) {
166 if (vf
->priv
->h
<= -8) {
171 if (vf
->priv
->w
< -3 || vf
->priv
->h
< -3 ||
172 (vf
->priv
->w
< -1 && vf
->priv
->h
< -1)) {
173 // TODO: establish a direct connection to the user's brain
174 // and find out what the heck he thinks MPlayer should do
175 // with this nonsense.
176 mp_msg(MSGT_VFILTER
, MSGL_ERR
, "SwScale: EUSERBROKEN Check your parameters, they make no sense!\n");
180 if (vf
->priv
->w
== -1)
182 if (vf
->priv
->w
== 0)
183 vf
->priv
->w
= d_width
;
185 if (vf
->priv
->h
== -1)
186 vf
->priv
->h
= height
;
187 if (vf
->priv
->h
== 0)
188 vf
->priv
->h
= d_height
;
190 if (vf
->priv
->w
== -3)
191 vf
->priv
->w
= vf
->priv
->h
* width
/ height
;
192 if (vf
->priv
->w
== -2)
193 vf
->priv
->w
= vf
->priv
->h
* d_width
/ d_height
;
195 if (vf
->priv
->h
== -3)
196 vf
->priv
->h
= vf
->priv
->w
* height
/ width
;
197 if (vf
->priv
->h
== -2)
198 vf
->priv
->h
= vf
->priv
->w
* d_height
/ d_width
;
201 vf
->priv
->w
= ((vf
->priv
->w
+ 8) / 16) * 16;
203 vf
->priv
->h
= ((vf
->priv
->h
+ 8) / 16) * 16;
205 // calculate the missing parameters:
207 case IMGFMT_YV12
: /* YV12 needs w & h rounded to 2 */
212 vf
->priv
->h
= (vf
->priv
->h
+ 1) & ~1;
213 case IMGFMT_YUY2
: /* YUY2 needs w rounded to 2 */
215 vf
->priv
->w
= (vf
->priv
->w
+ 1) & ~1;
218 mp_msg(MSGT_VFILTER
,MSGL_DBG2
,"SwScale: scaling %dx%d %s to %dx%d %s \n",
219 width
,height
,vo_format_name(outfmt
),
220 vf
->priv
->w
,vf
->priv
->h
,vo_format_name(best
));
223 if(vf
->priv
->ctx
) sws_freeContext(vf
->priv
->ctx
);
224 if(vf
->priv
->ctx2
)sws_freeContext(vf
->priv
->ctx2
);
227 sws_getFlagsAndFilterFromCmdLine(&int_sws_flags
, &srcFilter
, &dstFilter
);
228 int_sws_flags
|= vf
->priv
->v_chr_drop
<< SWS_SRC_V_CHR_DROP_SHIFT
;
229 int_sws_flags
|= vf
->priv
->accurate_rnd
* SWS_ACCURATE_RND
;
230 vf
->priv
->ctx
=sws_getContext(width
, height
>> vf
->priv
->interlaced
,
232 vf
->priv
->w
, vf
->priv
->h
>> vf
->priv
->interlaced
,
234 int_sws_flags
| get_sws_cpuflags(), srcFilter
, dstFilter
, vf
->priv
->param
);
235 if(vf
->priv
->interlaced
){
236 vf
->priv
->ctx2
=sws_getContext(width
, height
>> 1,
238 vf
->priv
->w
, vf
->priv
->h
>> 1,
240 int_sws_flags
| get_sws_cpuflags(), srcFilter
, dstFilter
, vf
->priv
->param
);
244 mp_msg(MSGT_VFILTER
,MSGL_WARN
,"Couldn't init SwScaler for this setup\n");
249 if(vf
->priv
->palette
){
250 free(vf
->priv
->palette
);
251 vf
->priv
->palette
=NULL
;
255 /* set 332 palette for 8 bpp */
256 vf
->priv
->palette
=malloc(4*256);
257 for(i
=0; i
<256; i
++){
258 vf
->priv
->palette
[4*i
+0]=4*(i
>>6)*21;
259 vf
->priv
->palette
[4*i
+1]=4*((i
>>3)&7)*9;
260 vf
->priv
->palette
[4*i
+2]=4*((i
&7)&7)*9;
261 vf
->priv
->palette
[4*i
+3]=0;
265 /* set 332 palette for 8 bpp */
266 vf
->priv
->palette
=malloc(4*256);
267 for(i
=0; i
<256; i
++){
268 vf
->priv
->palette
[4*i
+0]=4*(i
&3)*21;
269 vf
->priv
->palette
[4*i
+1]=4*((i
>>2)&7)*9;
270 vf
->priv
->palette
[4*i
+2]=4*((i
>>5)&7)*9;
271 vf
->priv
->palette
[4*i
+3]=0;
276 vf
->priv
->palette
=malloc(4*16);
278 vf
->priv
->palette
[4*i
+0]=4*(i
&1)*63;
279 vf
->priv
->palette
[4*i
+1]=4*((i
>>1)&3)*21;
280 vf
->priv
->palette
[4*i
+2]=4*((i
>>3)&1)*63;
281 vf
->priv
->palette
[4*i
+3]=0;
286 vf
->priv
->palette
=malloc(4*16);
288 vf
->priv
->palette
[4*i
+0]=4*(i
>>3)*63;
289 vf
->priv
->palette
[4*i
+1]=4*((i
>>1)&3)*21;
290 vf
->priv
->palette
[4*i
+2]=4*((i
&1)&1)*63;
291 vf
->priv
->palette
[4*i
+3]=0;
296 if(!opt_screen_size_x
&& !opt_screen_size_y
&& !(screen_size_xy
>= 0.001)){
297 // Compute new d_width and d_height, preserving aspect
298 // while ensuring that both are >= output size in pixels.
299 if (vf
->priv
->h
* d_width
> vf
->priv
->w
* d_height
) {
300 d_width
= vf
->priv
->h
* d_width
/ d_height
;
301 d_height
= vf
->priv
->h
;
303 d_height
= vf
->priv
->w
* d_height
/ d_width
;
304 d_width
= vf
->priv
->w
;
306 //d_width=d_width*vf->priv->w/width;
307 //d_height=d_height*vf->priv->h/height;
309 return vf_next_config(vf
,vf
->priv
->w
,vf
->priv
->h
,d_width
,d_height
,flags
,best
);
312 static void start_slice(struct vf_instance_s
* vf
, mp_image_t
*mpi
){
313 // printf("start_slice called! flag=%d\n",mpi->flags&MP_IMGFLAG_DRAW_CALLBACK);
314 if(!(mpi
->flags
&MP_IMGFLAG_DRAW_CALLBACK
)) return; // shouldn't happen
315 // they want slices!!! allocate the buffer.
316 mpi
->priv
=vf
->dmpi
=vf_get_image(vf
->next
,vf
->priv
->fmt
,
317 // mpi->type, mpi->flags & (~MP_IMGFLAG_DRAW_CALLBACK),
318 MP_IMGTYPE_TEMP
, MP_IMGFLAG_ACCEPT_STRIDE
| MP_IMGFLAG_PREFER_ALIGNED_STRIDE
,
319 vf
->priv
->w
, vf
->priv
->h
);
322 static void scale(struct SwsContext
*sws1
, struct SwsContext
*sws2
, uint8_t *src
[3], int src_stride
[3], int y
, int h
,
323 uint8_t *dst
[3], int dst_stride
[3], int interlaced
){
324 uint8_t *src2
[3]={src
[0], src
[1], src
[2]};
325 #ifdef WORDS_BIGENDIAN
327 if (src
[1] && !src
[2]){
330 pal2
[i
]= bswap_32(((uint32_t*)src
[1])[i
]);
337 uint8_t *dst2
[3]={dst
[0], dst
[1], dst
[2]};
338 int src_stride2
[3]={2*src_stride
[0], 2*src_stride
[1], 2*src_stride
[2]};
339 int dst_stride2
[3]={2*dst_stride
[0], 2*dst_stride
[1], 2*dst_stride
[2]};
341 sws_scale_ordered(sws1
, src2
, src_stride2
, y
>>1, h
>>1, dst2
, dst_stride2
);
343 src2
[i
] += src_stride
[i
];
344 dst2
[i
] += dst_stride
[i
];
346 sws_scale_ordered(sws2
, src2
, src_stride2
, y
>>1, h
>>1, dst2
, dst_stride2
);
348 sws_scale_ordered(sws1
, src2
, src_stride
, y
, h
, dst
, dst_stride
);
352 static void draw_slice(struct vf_instance_s
* vf
,
353 unsigned char** src
, int* stride
, int w
,int h
, int x
, int y
){
354 mp_image_t
*dmpi
=vf
->dmpi
;
356 mp_msg(MSGT_VFILTER
,MSGL_FATAL
,"vf_scale: draw_slice() called with dmpi=NULL (no get_image?)\n");
359 // printf("vf_scale::draw_slice() y=%d h=%d\n",y,h);
360 scale(vf
->priv
->ctx
, vf
->priv
->ctx2
, src
, stride
, y
, h
, dmpi
->planes
, dmpi
->stride
, vf
->priv
->interlaced
);
363 static int put_image(struct vf_instance_s
* vf
, mp_image_t
*mpi
, double pts
){
364 mp_image_t
*dmpi
=mpi
->priv
;
366 // printf("vf_scale::put_image(): processing whole frame! dmpi=%p flag=%d\n",
367 // dmpi, (mpi->flags&MP_IMGFLAG_DRAW_CALLBACK));
369 if(!(mpi
->flags
&MP_IMGFLAG_DRAW_CALLBACK
&& dmpi
)){
371 // hope we'll get DR buffer:
372 dmpi
=vf_get_image(vf
->next
,vf
->priv
->fmt
,
373 MP_IMGTYPE_TEMP
, MP_IMGFLAG_ACCEPT_STRIDE
| MP_IMGFLAG_PREFER_ALIGNED_STRIDE
,
374 vf
->priv
->w
, vf
->priv
->h
);
376 scale(vf
->priv
->ctx
, vf
->priv
->ctx
, mpi
->planes
,mpi
->stride
,0,mpi
->h
,dmpi
->planes
,dmpi
->stride
, vf
->priv
->interlaced
);
379 if(vf
->priv
->w
==mpi
->w
&& vf
->priv
->h
==mpi
->h
){
380 // just conversion, no scaling -> keep postprocessing data
381 // this way we can apply pp filter to non-yv12 source using scaler
382 vf_clone_mpi_attributes(dmpi
, mpi
);
385 if(vf
->priv
->palette
) dmpi
->planes
[1]=vf
->priv
->palette
; // export palette!
387 return vf_next_put_image(vf
,dmpi
, pts
);
390 static int control(struct vf_instance_s
* vf
, int request
, void* data
){
394 int brightness
, contrast
, saturation
, srcRange
, dstRange
;
399 case VFCTRL_GET_EQUALIZER
:
400 r
= sws_getColorspaceDetails(vf
->priv
->ctx
, &inv_table
, &srcRange
, &table
, &dstRange
, &brightness
, &contrast
, &saturation
);
404 if (!strcmp(eq
->item
,"brightness")) {
405 eq
->value
= ((brightness
*100) + (1<<15))>>16;
407 else if (!strcmp(eq
->item
,"contrast")) {
408 eq
->value
= (((contrast
*100) + (1<<15))>>16) - 100;
410 else if (!strcmp(eq
->item
,"saturation")) {
411 eq
->value
= (((saturation
*100) + (1<<15))>>16) - 100;
416 case VFCTRL_SET_EQUALIZER
:
417 r
= sws_getColorspaceDetails(vf
->priv
->ctx
, &inv_table
, &srcRange
, &table
, &dstRange
, &brightness
, &contrast
, &saturation
);
419 //printf("set %f %f %f\n", brightness/(float)(1<<16), contrast/(float)(1<<16), saturation/(float)(1<<16));
422 if (!strcmp(eq
->item
,"brightness")) {
423 brightness
= (( eq
->value
<<16) + 50)/100;
425 else if (!strcmp(eq
->item
,"contrast")) {
426 contrast
= (((eq
->value
+100)<<16) + 50)/100;
428 else if (!strcmp(eq
->item
,"saturation")) {
429 saturation
= (((eq
->value
+100)<<16) + 50)/100;
434 r
= sws_setColorspaceDetails(vf
->priv
->ctx
, inv_table
, srcRange
, table
, dstRange
, brightness
, contrast
, saturation
);
437 r
= sws_setColorspaceDetails(vf
->priv
->ctx2
, inv_table
, srcRange
, table
, dstRange
, brightness
, contrast
, saturation
);
446 return vf_next_control(vf
,request
,data
);
449 //===========================================================================//
451 // supported Input formats: YV12, I420, IYUV, YUY2, UYVY, BGR32, BGR24, BGR16, BGR15, RGB32, RGB24, Y8, Y800
453 static int query_format(struct vf_instance_s
* vf
, unsigned int fmt
){
478 unsigned int best
=find_best_out(vf
);
480 if(!best
) return 0; // no matching out-fmt
481 flags
=vf_next_query_format(vf
,best
);
482 if(!(flags
&(VFCAP_CSP_SUPPORTED
|VFCAP_CSP_SUPPORTED_BY_HW
))) return 0; // huh?
483 if(fmt
!=best
) flags
&=~VFCAP_CSP_SUPPORTED_BY_HW
;
484 // do not allow scaling, if we are before the PP fliter!
485 if(!(flags
&VFCAP_POSTPROC
)) flags
|=VFCAP_SWSCALE
;
489 return 0; // nomatching in-fmt
492 static void uninit(struct vf_instance_s
*vf
){
493 if(vf
->priv
->ctx
) sws_freeContext(vf
->priv
->ctx
);
494 if(vf
->priv
->ctx2
) sws_freeContext(vf
->priv
->ctx2
);
495 if(vf
->priv
->palette
) free(vf
->priv
->palette
);
499 static int open(vf_instance_t
*vf
, char* args
){
501 vf
->start_slice
=start_slice
;
502 vf
->draw_slice
=draw_slice
;
503 vf
->put_image
=put_image
;
504 vf
->query_format
=query_format
;
505 vf
->control
= control
;
508 vf
->priv
=malloc(sizeof(struct vf_priv_s
));
509 // TODO: parse args ->
514 vf
->priv
->v_chr_drop
=0;
515 vf
->priv
->accurate_rnd
=0;
517 vf
->priv
->param
[1]=SWS_PARAM_DEFAULT
;
518 vf
->priv
->palette
=NULL
;
520 if(args
) sscanf(args
, "%d:%d:%d:%lf:%lf",
523 &vf
->priv
->v_chr_drop
,
525 &vf
->priv
->param
[1]);
526 mp_msg(MSGT_VFILTER
,MSGL_V
,"SwScale params: %d x %d (-1=no scaling)\n",
533 //global sws_flags from the command line
537 static SwsFilter
*src_filter
= NULL
;
539 float sws_lum_gblur
= 0.0;
540 float sws_chr_gblur
= 0.0;
541 int sws_chr_vshift
= 0;
542 int sws_chr_hshift
= 0;
543 float sws_chr_sharpen
= 0.0;
544 float sws_lum_sharpen
= 0.0;
546 int get_sws_cpuflags(void){
548 (gCpuCaps
.hasMMX
? SWS_CPU_CAPS_MMX
: 0)
549 | (gCpuCaps
.hasMMX2
? SWS_CPU_CAPS_MMX2
: 0)
550 | (gCpuCaps
.has3DNow
? SWS_CPU_CAPS_3DNOW
: 0)
551 | (gCpuCaps
.hasAltiVec
? SWS_CPU_CAPS_ALTIVEC
: 0);
554 void sws_getFlagsAndFilterFromCmdLine(int *flags
, SwsFilter
**srcFilterParam
, SwsFilter
**dstFilterParam
)
556 static int firstTime
=1;
561 __asm__
volatile("emms\n\t"::: "memory"); //FIXME this should not be required but it IS (even for non-MMX versions)
566 *flags
= SWS_PRINT_INFO
;
568 else if( mp_msg_test(MSGT_VFILTER
,MSGL_DBG2
) ) *flags
= SWS_PRINT_INFO
;
570 if(src_filter
) sws_freeFilter(src_filter
);
572 src_filter
= sws_getDefaultFilter(
573 sws_lum_gblur
, sws_chr_gblur
,
574 sws_lum_sharpen
, sws_chr_sharpen
,
575 sws_chr_hshift
, sws_chr_vshift
, verbose
>1);
579 case 0: *flags
|= SWS_FAST_BILINEAR
; break;
580 case 1: *flags
|= SWS_BILINEAR
; break;
581 case 2: *flags
|= SWS_BICUBIC
; break;
582 case 3: *flags
|= SWS_X
; break;
583 case 4: *flags
|= SWS_POINT
; break;
584 case 5: *flags
|= SWS_AREA
; break;
585 case 6: *flags
|= SWS_BICUBLIN
; break;
586 case 7: *flags
|= SWS_GAUSS
; break;
587 case 8: *flags
|= SWS_SINC
; break;
588 case 9: *flags
|= SWS_LANCZOS
; break;
589 case 10:*flags
|= SWS_SPLINE
; break;
590 default:*flags
|= SWS_BILINEAR
; break;
593 *srcFilterParam
= src_filter
;
594 *dstFilterParam
= NULL
;
597 // will use sws_flags & src_filter (from cmd line)
598 struct SwsContext
*sws_getContextFromCmdLine(int srcW
, int srcH
, int srcFormat
, int dstW
, int dstH
, int dstFormat
)
601 SwsFilter
*dstFilterParam
, *srcFilterParam
;
602 enum PixelFormat dfmt
, sfmt
;
604 dfmt
= imgfmt2pixfmt(dstFormat
);
605 sfmt
= imgfmt2pixfmt(srcFormat
);
606 if (srcFormat
== IMGFMT_RGB8
|| srcFormat
== IMGFMT_BGR8
) sfmt
= PIX_FMT_PAL8
;
607 sws_getFlagsAndFilterFromCmdLine(&flags
, &srcFilterParam
, &dstFilterParam
);
609 return sws_getContext(srcW
, srcH
, sfmt
, dstW
, dstH
, dfmt
, flags
| get_sws_cpuflags(), srcFilterParam
, dstFilterParam
, NULL
);
612 /// An example of presets usage
613 static struct size_preset
{
616 } vf_size_presets_defs
[] = {
617 // TODO add more 'standard' resolutions
618 { "qntsc", 352, 240 },
619 { "qpal", 352, 288 },
620 { "ntsc", 720, 480 },
622 { "sntsc", 640, 480 },
623 { "spal", 768, 576 },
627 #define ST_OFF(f) M_ST_OFF(struct size_preset,f)
628 static m_option_t vf_size_preset_fields
[] = {
629 {"w", ST_OFF(w
), CONF_TYPE_INT
, M_OPT_MIN
,1 ,0, NULL
},
630 {"h", ST_OFF(h
), CONF_TYPE_INT
, M_OPT_MIN
,1 ,0, NULL
},
631 { NULL
, NULL
, 0, 0, 0, 0, NULL
}
634 static m_struct_t vf_size_preset
= {
636 sizeof(struct size_preset
),
638 vf_size_preset_fields
641 static m_struct_t vf_opts
;
642 static m_obj_presets_t size_preset
= {
643 &vf_size_preset
, // Input struct desc
644 &vf_opts
, // Output struct desc
645 vf_size_presets_defs
, // The list of presets
646 ST_OFF(name
) // At wich offset is the name field in the preset struct
651 #define ST_OFF(f) M_ST_OFF(struct vf_priv_s,f)
652 static m_option_t vf_opts_fields
[] = {
653 {"w", ST_OFF(w
), CONF_TYPE_INT
, M_OPT_MIN
,-11,0, NULL
},
654 {"h", ST_OFF(h
), CONF_TYPE_INT
, M_OPT_MIN
,-11,0, NULL
},
655 {"interlaced", ST_OFF(interlaced
), CONF_TYPE_INT
, M_OPT_RANGE
, 0, 1, NULL
},
656 {"chr-drop", ST_OFF(v_chr_drop
), CONF_TYPE_INT
, M_OPT_RANGE
, 0, 3, NULL
},
657 {"param" , ST_OFF(param
[0]), CONF_TYPE_DOUBLE
, M_OPT_RANGE
, 0.0, 100.0, NULL
},
658 {"param2", ST_OFF(param
[1]), CONF_TYPE_DOUBLE
, M_OPT_RANGE
, 0.0, 100.0, NULL
},
659 // Note that here the 2 field is NULL (ie 0)
660 // As we want this option to act on the option struct itself
661 {"presize", 0, CONF_TYPE_OBJ_PRESETS
, 0, 0, 0, &size_preset
},
662 {"noup", ST_OFF(noup
), CONF_TYPE_INT
, M_OPT_RANGE
, 0, 2, NULL
},
663 {"arnd", ST_OFF(accurate_rnd
), CONF_TYPE_FLAG
, 0, 0, 1, NULL
},
664 { NULL
, NULL
, 0, 0, 0, 0, NULL
}
667 static m_struct_t vf_opts
= {
669 sizeof(struct vf_priv_s
),
674 const vf_info_t vf_info_scale
= {
683 //===========================================================================//