diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-05-06 22:48:22 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-05-06 22:48:22 +0000 |
commit | 3981aadc0773477b9160ecfd72b8c0870cfc4a18 (patch) | |
tree | d7fb1272fc3610d8f366d56b3506fcd588627db8 | |
parent | a1f7ba2ba74d69bbb2b783fdb4e2fc31fb39f5e7 (diff) |
passthru mode for filters which don't alter image just config parameters (query_format/control/config)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6001 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libmpcodecs/vf.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c index df9cb782ec..4497e93764 100644 --- a/libmpcodecs/vf.c +++ b/libmpcodecs/vf.c @@ -25,6 +25,7 @@ extern vf_info_t vf_info_rotate; extern vf_info_t vf_info_mirror; extern vf_info_t vf_info_palette; extern vf_info_t vf_info_lavc; +extern vf_info_t vf_info_dvbscale; char** vo_plugin_args=(char**) NULL; @@ -49,6 +50,7 @@ static vf_info_t* filter_list[]={ #ifdef USE_LIBAVCODEC &vf_info_lavc, #endif + &vf_info_dvbscale, NULL }; @@ -95,6 +97,12 @@ void vf_mpi_clear(mp_image_t* mpi,int x0,int y0,int w,int h){ mp_image_t* vf_get_image(vf_instance_t* vf, unsigned int outfmt, int mp_imgtype, int mp_imgflag, int w, int h){ mp_image_t* mpi=NULL; int w2=w; //(mp_imgflag&MP_IMGFLAG_ACCEPT_STRIDE)?((w+15)&(~15)):w; + + if(vf->put_image==vf_next_put_image){ + // passthru mode, if the plugin uses the fallback/default put_image() code + return vf_get_image(vf->next,outfmt,mp_imgtype,mp_imgflag,w,h); + } + // Note: we should call libvo first to check if it supports direct rendering // and if not, then fallback to software buffers: switch(mp_imgtype){ @@ -288,7 +296,7 @@ int vf_next_query_format(struct vf_instance_s* vf, unsigned int fmt){ } void vf_next_put_image(struct vf_instance_s* vf,mp_image_t *mpi){ - return vf->next->put_image(vf->next,mpi); + vf->next->put_image(vf->next,mpi); } //============================================================================ |