15 #include "img_format.h"
18 #include "libavutil/internal.h"
19 #include "libpostproc/postprocess.h"
21 #ifdef CONFIG_LIBPOSTPROC_A
23 #include "libpostproc/postprocess_internal.h"
30 pp_mode_t
*ppMode
[PP_QUALITY_MAX
+1];
35 //===========================================================================//
37 static int config(struct vf_instance_s
* vf
,
38 int width
, int height
, int d_width
, int d_height
,
39 unsigned int voflags
, unsigned int outfmt
){
41 (gCpuCaps
.hasMMX
? PP_CPU_CAPS_MMX
: 0)
42 | (gCpuCaps
.hasMMX2
? PP_CPU_CAPS_MMX2
: 0)
43 | (gCpuCaps
.has3DNow
? PP_CPU_CAPS_3DNOW
: 0);
46 case IMGFMT_444P
: flags
|= PP_FORMAT_444
; break;
47 case IMGFMT_422P
: flags
|= PP_FORMAT_422
; break;
48 case IMGFMT_411P
: flags
|= PP_FORMAT_411
; break;
49 default: flags
|= PP_FORMAT_420
; break;
52 if(vf
->priv
->context
) pp_free_context(vf
->priv
->context
);
53 vf
->priv
->context
= pp_get_context(width
, height
, flags
);
55 return vf_next_config(vf
,width
,height
,d_width
,d_height
,voflags
,outfmt
);
58 static void uninit(struct vf_instance_s
* vf
){
60 for(i
=0; i
<=PP_QUALITY_MAX
; i
++){
61 if(vf
->priv
->ppMode
[i
])
62 pp_free_mode(vf
->priv
->ppMode
[i
]);
64 if(vf
->priv
->context
) pp_free_context(vf
->priv
->context
);
67 static int query_format(struct vf_instance_s
* vf
, unsigned int fmt
){
75 return vf_next_query_format(vf
,fmt
);
80 static int control(struct vf_instance_s
* vf
, int request
, void* data
){
82 case VFCTRL_QUERY_MAX_PP_LEVEL
:
83 return PP_QUALITY_MAX
;
84 case VFCTRL_SET_PP_LEVEL
:
85 vf
->priv
->pp
= *((unsigned int*)data
);
88 return vf_next_control(vf
,request
,data
);
91 static void get_image(struct vf_instance_s
* vf
, mp_image_t
*mpi
){
92 if(vf
->priv
->pp
&0xFFFF) return; // non-local filters enabled
93 if((mpi
->type
==MP_IMGTYPE_IPB
|| vf
->priv
->pp
) &&
94 mpi
->flags
&MP_IMGFLAG_PRESERVE
) return; // don't change
95 if(!(mpi
->flags
&MP_IMGFLAG_ACCEPT_STRIDE
) && mpi
->imgfmt
!=vf
->priv
->outfmt
)
96 return; // colorspace differ
97 // ok, we can do pp in-place (or pp disabled):
98 vf
->dmpi
=vf_get_image(vf
->next
,mpi
->imgfmt
,
99 mpi
->type
, mpi
->flags
| MP_IMGFLAG_READABLE
, mpi
->width
, mpi
->height
);
100 mpi
->planes
[0]=vf
->dmpi
->planes
[0];
101 mpi
->stride
[0]=vf
->dmpi
->stride
[0];
102 mpi
->width
=vf
->dmpi
->width
;
103 if(mpi
->flags
&MP_IMGFLAG_PLANAR
){
104 mpi
->planes
[1]=vf
->dmpi
->planes
[1];
105 mpi
->planes
[2]=vf
->dmpi
->planes
[2];
106 mpi
->stride
[1]=vf
->dmpi
->stride
[1];
107 mpi
->stride
[2]=vf
->dmpi
->stride
[2];
109 mpi
->flags
|=MP_IMGFLAG_DIRECT
;
112 static int put_image(struct vf_instance_s
* vf
, mp_image_t
*mpi
, double pts
){
113 if(!(mpi
->flags
&MP_IMGFLAG_DIRECT
)){
114 // no DR, so get a new image! hope we'll get DR buffer:
115 vf
->dmpi
=vf_get_image(vf
->next
,mpi
->imgfmt
,
116 MP_IMGTYPE_TEMP
, MP_IMGFLAG_ACCEPT_STRIDE
|
117 MP_IMGFLAG_PREFER_ALIGNED_STRIDE
| MP_IMGFLAG_READABLE
,
118 // MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE,
120 (mpi
->width
+7)&(~7),(mpi
->height
+7)&(~7));
121 vf
->dmpi
->w
=mpi
->w
; vf
->dmpi
->h
=mpi
->h
; // display w;h
124 if(vf
->priv
->pp
|| !(mpi
->flags
&MP_IMGFLAG_DIRECT
)){
125 // do the postprocessing! (or copy if no DR)
126 pp_postprocess(mpi
->planes
,mpi
->stride
,
127 vf
->dmpi
->planes
,vf
->dmpi
->stride
,
128 (mpi
->w
+7)&(~7),mpi
->h
,
129 mpi
->qscale
, mpi
->qstride
,
130 vf
->priv
->ppMode
[ vf
->priv
->pp
], vf
->priv
->context
,
131 #ifdef PP_PICT_TYPE_QP2
132 mpi
->pict_type
| (mpi
->qscale_type
? PP_PICT_TYPE_QP2
: 0));
137 return vf_next_put_image(vf
,vf
->dmpi
, pts
);
140 //===========================================================================//
142 extern int divx_quality
;
144 static unsigned int fmt_list
[]={
154 static int open(vf_instance_t
*vf
, char* args
){
159 vf
->query_format
=query_format
;
162 vf
->get_image
=get_image
;
163 vf
->put_image
=put_image
;
165 vf
->default_caps
=VFCAP_ACCEPT_STRIDE
|VFCAP_POSTPROC
;
166 vf
->priv
=malloc(sizeof(struct vf_priv_s
));
167 vf
->priv
->context
=NULL
;
170 vf
->priv
->outfmt
=vf_match_csp(&vf
->next
,fmt_list
,IMGFMT_YV12
);
171 if(!vf
->priv
->outfmt
) return 0; // no csp match :(
174 hex_mode
= strtol(args
, &endptr
, 0);
186 for(i
=0; i
<=PP_QUALITY_MAX
; i
++){
187 vf
->priv
->ppMode
[i
]= pp_get_mode_by_name_and_quality(name
, i
);
188 if(vf
->priv
->ppMode
[i
]==NULL
) return -1;
192 /* hex mode for compatibility */
193 for(i
=0; i
<=PP_QUALITY_MAX
; i
++){
196 ppMode
= (PPMode
*)memalign(8, sizeof(PPMode
));
198 ppMode
->lumMode
= hex_mode
;
199 ppMode
->chromMode
= ((hex_mode
&0xFF)>>4) | (hex_mode
&0xFFFFFF00);
200 ppMode
->maxTmpNoise
[0]= 700;
201 ppMode
->maxTmpNoise
[1]= 1500;
202 ppMode
->maxTmpNoise
[2]= 3000;
203 ppMode
->maxAllowedY
= 234;
204 ppMode
->minAllowedY
= 16;
205 ppMode
->baseDcDiff
= 256/4;
206 ppMode
->flatnessThreshold
=40;
208 vf
->priv
->ppMode
[i
]= ppMode
;
213 vf
->priv
->pp
=PP_QUALITY_MAX
;
217 const vf_info_t vf_info_pp
= {
226 //===========================================================================//