2002-04-07 03:20:41 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2002-10-28 19:31:04 +00:00
|
|
|
#include <inttypes.h>
|
2002-10-29 20:12:24 +00:00
|
|
|
#include <errno.h>
|
2002-04-07 03:20:41 +00:00
|
|
|
|
|
|
|
#include "../config.h"
|
|
|
|
#include "../mp_msg.h"
|
2002-10-30 01:51:14 +00:00
|
|
|
#include "../cpudetect.h"
|
2002-04-07 03:20:41 +00:00
|
|
|
|
2002-11-06 23:54:29 +00:00
|
|
|
#ifdef HAVE_MALLOC_H
|
|
|
|
#include <malloc.h>
|
|
|
|
#endif
|
|
|
|
|
2002-04-13 19:14:34 +00:00
|
|
|
#include "img_format.h"
|
|
|
|
#include "mp_image.h"
|
2002-04-07 03:20:41 +00:00
|
|
|
#include "vf.h"
|
|
|
|
|
2003-02-14 21:45:45 +00:00
|
|
|
#ifdef USE_LIBAVCODEC
|
|
|
|
|
2002-11-02 13:58:14 +00:00
|
|
|
#define EMU_OLD
|
|
|
|
|
2003-02-14 21:45:45 +00:00
|
|
|
#include "../libavcodec/libpostproc/postprocess.h"
|
2002-04-07 03:20:41 +00:00
|
|
|
|
2002-11-02 13:58:14 +00:00
|
|
|
#ifdef EMU_OLD
|
2003-02-14 21:45:45 +00:00
|
|
|
#include "../libavcodec/libpostproc/postprocess_internal.h"
|
2002-11-02 13:58:14 +00:00
|
|
|
#endif
|
|
|
|
|
2002-04-07 03:20:41 +00:00
|
|
|
struct vf_priv_s {
|
2002-10-28 19:31:04 +00:00
|
|
|
int pp;
|
2002-11-02 14:20:05 +00:00
|
|
|
pp_mode_t *ppMode[PP_QUALITY_MAX+1];
|
2002-10-28 19:31:04 +00:00
|
|
|
void *context;
|
2002-04-11 20:56:17 +00:00
|
|
|
unsigned int outfmt;
|
2002-04-07 03:20:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//===========================================================================//
|
|
|
|
|
2002-04-11 20:56:17 +00:00
|
|
|
static int config(struct vf_instance_s* vf,
|
|
|
|
int width, int height, int d_width, int d_height,
|
|
|
|
unsigned int voflags, unsigned int outfmt){
|
2003-01-05 19:10:42 +00:00
|
|
|
int flags=
|
2002-10-30 21:02:21 +00:00
|
|
|
(gCpuCaps.hasMMX ? PP_CPU_CAPS_MMX : 0)
|
|
|
|
| (gCpuCaps.hasMMX2 ? PP_CPU_CAPS_MMX2 : 0)
|
2003-01-05 19:10:42 +00:00
|
|
|
| (gCpuCaps.has3DNow ? PP_CPU_CAPS_3DNOW : 0);
|
|
|
|
|
|
|
|
switch(outfmt){
|
|
|
|
case IMGFMT_444P: flags|= PP_FORMAT_444; break;
|
|
|
|
case IMGFMT_422P: flags|= PP_FORMAT_422; break;
|
|
|
|
case IMGFMT_411P: flags|= PP_FORMAT_411; break;
|
|
|
|
default: flags|= PP_FORMAT_420; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(vf->priv->context) pp_free_context(vf->priv->context);
|
|
|
|
vf->priv->context= pp_get_context(width, height, flags);
|
2002-10-28 19:31:04 +00:00
|
|
|
|
2003-03-04 22:48:37 +00:00
|
|
|
return vf_next_config(vf,width,height,d_width,d_height,voflags,outfmt);
|
2002-04-11 20:56:17 +00:00
|
|
|
}
|
|
|
|
|
2002-10-29 01:20:51 +00:00
|
|
|
static void uninit(struct vf_instance_s* vf){
|
2002-11-02 13:58:14 +00:00
|
|
|
int i;
|
2002-11-02 14:20:05 +00:00
|
|
|
for(i=0; i<=PP_QUALITY_MAX; i++){
|
2002-11-02 13:58:14 +00:00
|
|
|
if(vf->priv->ppMode[i])
|
|
|
|
pp_free_mode(vf->priv->ppMode[i]);
|
|
|
|
}
|
2002-10-29 18:51:52 +00:00
|
|
|
if(vf->priv->context) pp_free_context(vf->priv->context);
|
2002-10-29 01:20:51 +00:00
|
|
|
}
|
|
|
|
|
2002-04-07 17:01:15 +00:00
|
|
|
static int query_format(struct vf_instance_s* vf, unsigned int fmt){
|
|
|
|
switch(fmt){
|
|
|
|
case IMGFMT_YV12:
|
|
|
|
case IMGFMT_I420:
|
|
|
|
case IMGFMT_IYUV:
|
2003-01-05 19:10:42 +00:00
|
|
|
case IMGFMT_444P:
|
|
|
|
case IMGFMT_422P:
|
|
|
|
case IMGFMT_411P:
|
|
|
|
return vf_next_query_format(vf,fmt);
|
2002-04-07 17:01:15 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-04-07 17:42:31 +00:00
|
|
|
static int control(struct vf_instance_s* vf, int request, void* data){
|
|
|
|
switch(request){
|
|
|
|
case VFCTRL_QUERY_MAX_PP_LEVEL:
|
2002-11-02 14:20:05 +00:00
|
|
|
return PP_QUALITY_MAX;
|
2002-04-07 17:42:31 +00:00
|
|
|
case VFCTRL_SET_PP_LEVEL:
|
2002-10-28 19:31:04 +00:00
|
|
|
vf->priv->pp= *((unsigned int*)data);
|
2002-04-07 17:42:31 +00:00
|
|
|
return CONTROL_TRUE;
|
|
|
|
}
|
|
|
|
return vf_next_control(vf,request,data);
|
|
|
|
}
|
|
|
|
|
2002-04-07 03:20:41 +00:00
|
|
|
static void get_image(struct vf_instance_s* vf, mp_image_t *mpi){
|
|
|
|
if(vf->priv->pp&0xFFFF) return; // non-local filters enabled
|
2002-04-07 03:25:25 +00:00
|
|
|
if((mpi->type==MP_IMGTYPE_IPB || vf->priv->pp) &&
|
|
|
|
mpi->flags&MP_IMGFLAG_PRESERVE) return; // don't change
|
2002-04-11 20:56:17 +00:00
|
|
|
if(!(mpi->flags&MP_IMGFLAG_ACCEPT_STRIDE) && mpi->imgfmt!=vf->priv->outfmt)
|
|
|
|
return; // colorspace differ
|
2002-04-07 03:20:41 +00:00
|
|
|
// ok, we can do pp in-place (or pp disabled):
|
2003-05-20 18:36:55 +00:00
|
|
|
vf->dmpi=vf_get_image(vf->next,mpi->imgfmt,
|
2002-04-07 03:20:41 +00:00
|
|
|
mpi->type, mpi->flags, mpi->w, mpi->h);
|
2003-05-20 18:36:55 +00:00
|
|
|
mpi->planes[0]=vf->dmpi->planes[0];
|
|
|
|
mpi->stride[0]=vf->dmpi->stride[0];
|
|
|
|
mpi->width=vf->dmpi->width;
|
2002-04-07 03:20:41 +00:00
|
|
|
if(mpi->flags&MP_IMGFLAG_PLANAR){
|
2003-05-20 18:36:55 +00:00
|
|
|
mpi->planes[1]=vf->dmpi->planes[1];
|
|
|
|
mpi->planes[2]=vf->dmpi->planes[2];
|
|
|
|
mpi->stride[1]=vf->dmpi->stride[1];
|
|
|
|
mpi->stride[2]=vf->dmpi->stride[2];
|
2002-04-07 03:20:41 +00:00
|
|
|
}
|
|
|
|
mpi->flags|=MP_IMGFLAG_DIRECT;
|
|
|
|
}
|
|
|
|
|
2002-09-10 22:18:32 +00:00
|
|
|
static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){
|
2002-04-07 03:20:41 +00:00
|
|
|
if(!(mpi->flags&MP_IMGFLAG_DIRECT)){
|
|
|
|
// no DR, so get a new image! hope we'll get DR buffer:
|
2003-05-20 18:36:55 +00:00
|
|
|
vf->dmpi=vf_get_image(vf->next,mpi->imgfmt,
|
2002-08-02 22:55:54 +00:00
|
|
|
MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE|MP_IMGFLAG_PREFER_ALIGNED_STRIDE,
|
|
|
|
// MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE,
|
|
|
|
// mpi->w,mpi->h);
|
|
|
|
(mpi->w+7)&(~7),(mpi->h+7)&(~7));
|
2003-05-20 18:36:55 +00:00
|
|
|
vf->dmpi->w=mpi->w; vf->dmpi->h=mpi->h; // display w;h
|
2002-04-07 03:20:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(vf->priv->pp || !(mpi->flags&MP_IMGFLAG_DIRECT)){
|
|
|
|
// do the postprocessing! (or copy if no DR)
|
2002-10-29 18:51:52 +00:00
|
|
|
pp_postprocess(mpi->planes ,mpi->stride,
|
2003-05-20 18:36:55 +00:00
|
|
|
vf->dmpi->planes,vf->dmpi->stride,
|
2002-08-02 22:55:54 +00:00
|
|
|
(mpi->w+7)&(~7),mpi->h,
|
2002-04-07 03:20:41 +00:00
|
|
|
mpi->qscale, mpi->qstride,
|
2002-11-02 13:58:14 +00:00
|
|
|
vf->priv->ppMode[ vf->priv->pp ], vf->priv->context,
|
2003-04-18 22:12:36 +00:00
|
|
|
#ifdef PP_PICT_TYPE_QP2
|
2003-04-18 13:18:59 +00:00
|
|
|
mpi->pict_type | (mpi->qscale_type ? PP_PICT_TYPE_QP2 : 0));
|
2003-04-18 22:12:36 +00:00
|
|
|
#else
|
|
|
|
mpi->pict_type);
|
|
|
|
#endif
|
2002-04-07 03:20:41 +00:00
|
|
|
}
|
2003-05-20 18:36:55 +00:00
|
|
|
return vf_next_put_image(vf,vf->dmpi);
|
2002-04-07 03:20:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================//
|
|
|
|
|
|
|
|
extern int divx_quality;
|
|
|
|
|
2002-04-11 20:56:17 +00:00
|
|
|
static unsigned int fmt_list[]={
|
|
|
|
IMGFMT_YV12,
|
|
|
|
IMGFMT_I420,
|
|
|
|
IMGFMT_IYUV,
|
2003-01-05 19:10:42 +00:00
|
|
|
IMGFMT_444P,
|
|
|
|
IMGFMT_422P,
|
|
|
|
IMGFMT_411P,
|
2002-08-28 22:45:48 +00:00
|
|
|
0
|
2002-04-11 20:56:17 +00:00
|
|
|
};
|
|
|
|
|
2002-04-07 03:20:41 +00:00
|
|
|
static int open(vf_instance_t *vf, char* args){
|
2002-10-28 19:31:04 +00:00
|
|
|
char *endptr, *name;
|
|
|
|
int i;
|
|
|
|
int hex_mode=0;
|
|
|
|
|
2002-04-07 17:01:15 +00:00
|
|
|
vf->query_format=query_format;
|
2002-04-07 17:42:31 +00:00
|
|
|
vf->control=control;
|
2002-04-11 20:56:17 +00:00
|
|
|
vf->config=config;
|
2002-04-07 03:20:41 +00:00
|
|
|
vf->get_image=get_image;
|
|
|
|
vf->put_image=put_image;
|
2002-10-29 01:20:51 +00:00
|
|
|
vf->uninit=uninit;
|
2002-04-11 20:56:17 +00:00
|
|
|
vf->default_caps=VFCAP_ACCEPT_STRIDE|VFCAP_POSTPROC;
|
2002-04-07 03:20:41 +00:00
|
|
|
vf->priv=malloc(sizeof(struct vf_priv_s));
|
2002-10-29 01:20:51 +00:00
|
|
|
vf->priv->context=NULL;
|
2002-04-11 20:56:17 +00:00
|
|
|
|
|
|
|
// check csp:
|
|
|
|
vf->priv->outfmt=vf_match_csp(&vf->next,fmt_list,IMGFMT_YV12);
|
|
|
|
if(!vf->priv->outfmt) return 0; // no csp match :(
|
|
|
|
|
2002-04-07 03:32:36 +00:00
|
|
|
if(args){
|
2002-10-28 19:31:04 +00:00
|
|
|
hex_mode= strtol(args, &endptr, 0);
|
|
|
|
if(*endptr){
|
|
|
|
name= args;
|
|
|
|
}else
|
|
|
|
name= NULL;
|
|
|
|
}else{
|
|
|
|
name="de";
|
2002-04-07 03:32:36 +00:00
|
|
|
}
|
2002-10-30 01:51:14 +00:00
|
|
|
|
2002-11-02 13:58:14 +00:00
|
|
|
#ifdef EMU_OLD
|
2002-10-28 19:31:04 +00:00
|
|
|
if(name){
|
2002-11-02 13:58:14 +00:00
|
|
|
#endif
|
2002-11-02 14:20:05 +00:00
|
|
|
for(i=0; i<=PP_QUALITY_MAX; i++){
|
2002-10-29 18:51:52 +00:00
|
|
|
vf->priv->ppMode[i]= pp_get_mode_by_name_and_quality(name, i);
|
2002-11-02 13:58:14 +00:00
|
|
|
if(vf->priv->ppMode[i]==NULL) return -1;
|
2002-10-28 19:31:04 +00:00
|
|
|
}
|
2002-11-02 13:58:14 +00:00
|
|
|
#ifdef EMU_OLD
|
2002-10-28 19:31:04 +00:00
|
|
|
}else{
|
|
|
|
/* hex mode for compatibility */
|
2002-11-02 14:20:05 +00:00
|
|
|
for(i=0; i<=PP_QUALITY_MAX; i++){
|
2002-11-02 13:58:14 +00:00
|
|
|
PPMode *ppMode;
|
|
|
|
|
|
|
|
ppMode= (PPMode*)memalign(8, sizeof(PPMode));
|
2002-10-28 19:31:04 +00:00
|
|
|
|
2002-11-02 13:58:14 +00:00
|
|
|
ppMode->lumMode= hex_mode;
|
|
|
|
ppMode->chromMode= ((hex_mode&0xFF)>>4) | (hex_mode&0xFFFFFF00);
|
|
|
|
ppMode->maxTmpNoise[0]= 700;
|
|
|
|
ppMode->maxTmpNoise[1]= 1500;
|
|
|
|
ppMode->maxTmpNoise[2]= 3000;
|
|
|
|
ppMode->maxAllowedY= 234;
|
|
|
|
ppMode->minAllowedY= 16;
|
|
|
|
ppMode->baseDcDiff= 256/4;
|
|
|
|
ppMode->flatnessThreshold=40;
|
2002-10-28 19:31:04 +00:00
|
|
|
|
|
|
|
vf->priv->ppMode[i]= ppMode;
|
|
|
|
}
|
|
|
|
}
|
2002-11-02 13:58:14 +00:00
|
|
|
#endif
|
2002-10-28 19:31:04 +00:00
|
|
|
|
2003-08-31 22:18:27 +00:00
|
|
|
vf->priv->pp=PP_QUALITY_MAX;
|
2002-04-07 03:20:41 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
vf_info_t vf_info_pp = {
|
|
|
|
"postprocessing",
|
|
|
|
"pp",
|
|
|
|
"A'rpi",
|
|
|
|
"",
|
2003-03-15 18:01:02 +00:00
|
|
|
open,
|
|
|
|
NULL
|
2002-04-07 03:20:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//===========================================================================//
|
2003-02-14 21:45:45 +00:00
|
|
|
|
|
|
|
#endif // USE_LIBAVCODEC
|