From a228191afcfe986c80a4d6f0ccf17f99f73c3fea Mon Sep 17 00:00:00 2001 From: arpi Date: Wed, 6 Mar 2002 20:54:14 +0000 Subject: vd_ffmpeg added, handling of EXPORT imgtype changed git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4952 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/vd.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'libmpcodecs/vd.c') diff --git a/libmpcodecs/vd.c b/libmpcodecs/vd.c index b91de51fd2..baf38540b6 100644 --- a/libmpcodecs/vd.c +++ b/libmpcodecs/vd.c @@ -24,11 +24,15 @@ extern vd_functions_t mpcodecs_vd_null; extern vd_functions_t mpcodecs_vd_cinepak; extern vd_functions_t mpcodecs_vd_qtrpza; +extern vd_functions_t mpcodecs_vd_ffmpeg; vd_functions_t* mpcodecs_vd_drivers[] = { &mpcodecs_vd_null, &mpcodecs_vd_cinepak, &mpcodecs_vd_qtrpza, +#ifdef USE_LIBAVCODEC + &mpcodecs_vd_ffmpeg, +#endif NULL }; @@ -39,6 +43,7 @@ int mpcodecs_config_vo(sh_video_t *sh, int w, int h, unsigned int preferred_outf static mp_image_t* static_images[2]; static mp_image_t* temp_images[1]; +static mp_image_t* export_images[1]; static int static_idx=0; // mp_imgtype: buffering type, see mp_image.h @@ -51,7 +56,9 @@ mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, i // and if not, then fallback to software buffers: switch(mp_imgtype){ case MP_IMGTYPE_EXPORT: - mpi=new_mp_image(w,h); +// mpi=new_mp_image(w,h); + if(!export_images[0]) export_images[0]=new_mp_image(w,h); + mpi=export_images[0]; break; case MP_IMGTYPE_STATIC: if(!static_images[0]) static_images[0]=new_mp_image(w,h); @@ -77,6 +84,15 @@ mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, i mpi->type=mp_imgtype; mpi->flags&=~(MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE); mpi->flags|=mp_imgflag&(MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE); + if((mpi->width!=w || mpi->height!=h) && !(mpi->flags&MP_IMGFLAG_DIRECT)){ + mpi->width=w; + mpi->height=h; + if(mpi->flags&MP_IMGFLAG_ALLOCATED){ + // need to re-allocate buffer memory: + free(mpi->planes[0]); + mpi->flags&=~MP_IMGFLAG_ALLOCATED; + } + } if(!mpi->bpp){ mp_image_setfmt(mpi,sh->codec->outfmt[sh->outfmtidx]); if(!(mpi->flags&(MP_IMGFLAG_ALLOCATED|MP_IMGFLAG_DIRECT)) -- cgit v1.2.3