summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libmpcodecs/dec_video.c3
-rw-r--r--libmpcodecs/vd.c35
-rw-r--r--libvo/mga_common.c34
-rw-r--r--libvo/video_out.h2
4 files changed, 60 insertions, 14 deletions
diff --git a/libmpcodecs/dec_video.c b/libmpcodecs/dec_video.c
index 4178913588..dc6631f86d 100644
--- a/libmpcodecs/dec_video.c
+++ b/libmpcodecs/dec_video.c
@@ -189,6 +189,7 @@ unsigned int t=GetTimer();
unsigned int t2;
double tt;
+sh_video->video_out=video_out;
mpi=mpvdec->decode(sh_video, start, in_size, drop_frame);
//------------------------ frame decoded. --------------------
@@ -215,7 +216,7 @@ if(benchmark)
cur_video_time_usage=tt;
}
-if(!(mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALBACK))){
+if(!(mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALLBACK))){
// blit frame:
if(mpi->flags&MP_IMGFLAG_PLANAR)
video_out->draw_slice(mpi->planes,mpi->stride,sh_video->disp_w,sh_video->disp_h,0,0);
diff --git a/libmpcodecs/vd.c b/libmpcodecs/vd.c
index 0f3ba2b90b..966966aafa 100644
--- a/libmpcodecs/vd.c
+++ b/libmpcodecs/vd.c
@@ -62,6 +62,8 @@ vd_functions_t* mpcodecs_vd_drivers[] = {
NULL
};
+#include "libvo/video_out.h"
+
int mpcodecs_config_vo(sh_video_t *sh, int w, int h, unsigned int preferred_outfmt){
return 1;
@@ -109,8 +111,8 @@ mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, i
}
if(mpi){
mpi->type=mp_imgtype;
- mpi->flags&=~(MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE);
- mpi->flags|=mp_imgflag&(MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE);
+ mpi->flags&=~(MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE|MP_IMGFLAG_DIRECT);
+ mpi->flags|=mp_imgflag&(MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE|MP_IMGFLAG_ACCEPT_STRIDE|MP_IMGFLAG_ACCEPT_WIDTH|MP_IMGFLAG_ALIGNED_STRIDE|MP_IMGFLAG_DRAW_CALLBACK);
if((mpi->width!=w2 || mpi->height!=h) && !(mpi->flags&MP_IMGFLAG_DIRECT)){
mpi->width=w2;
mpi->height=h;
@@ -120,16 +122,15 @@ mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, i
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))
- && mpi->type>MP_IMGTYPE_EXPORT){
+ if(!mpi->bpp) mp_image_setfmt(mpi,sh->codec->outfmt[sh->outfmtidx]);
+ if(!(mpi->flags&MP_IMGFLAG_ALLOCATED) && mpi->type>MP_IMGTYPE_EXPORT){
+
+ // check libvo first!
+ vo_functions_t* vo=sh->video_out;
+ if(vo) vo->control(VOCTRL_GET_IMAGE,mpi);
+
+ if(!(mpi->flags&MP_IMGFLAG_DIRECT)){
// non-direct and not yet allocaed image. allocate it!
- printf("*** Allocating mp_image_t, %dx%dx%dbpp %s %s, %d bytes\n",
- mpi->width,mpi->height,mpi->bpp,
- (mpi->flags&MP_IMGFLAG_YUV)?"YUV":"RGB",
- (mpi->flags&MP_IMGFLAG_PLANAR)?"planar":"packed",
- mpi->bpp*mpi->width*mpi->height/8);
mpi->planes[0]=memalign(64, mpi->bpp*mpi->width*mpi->height/8);
if(mpi->flags&MP_IMGFLAG_PLANAR){
// YV12/I420. feel free to add other planar formats here...
@@ -141,7 +142,17 @@ mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, i
if(!mpi->stride[0]) mpi->stride[0]=mpi->width*mpi->bpp/8;
}
mpi->flags|=MP_IMGFLAG_ALLOCATED;
- }
+ }
+ if(!(mpi->flags&MP_IMGFLAG_TYPE_DISPLAYED)){
+ mp_msg(MSGT_DECVIDEO,MSGL_INFO,"*** %s mp_image_t, %dx%dx%dbpp %s %s, %d bytes\n",
+ (mpi->flags&MP_IMGFLAG_DIRECT)?"Direct Rendering":"Allocating",
+ mpi->width,mpi->height,mpi->bpp,
+ (mpi->flags&MP_IMGFLAG_YUV)?"YUV":"RGB",
+ (mpi->flags&MP_IMGFLAG_PLANAR)?"planar":"packed",
+ mpi->bpp*mpi->width*mpi->height/8);
+ mpi->flags|=MP_IMGFLAG_TYPE_DISPLAYED;
+ }
+
}
}
return mpi;
diff --git a/libvo/mga_common.c b/libvo/mga_common.c
index 9772b78bd5..f0fcfe7523 100644
--- a/libvo/mga_common.c
+++ b/libvo/mga_common.c
@@ -1,6 +1,7 @@
#include "fastmemcpy.h"
#include "../mmx_defs.h"
+#include "../mp_image.h"
// mga_vid drawing functions
@@ -172,7 +173,6 @@ write_frame_yuy2(uint8_t *y)
mem2agpcpy_pic(vid_data, y, len, mga_vid_config.src_height, 2*bespitch, len);
}
-
static uint32_t
draw_frame(uint8_t *src[])
{
@@ -185,6 +185,36 @@ draw_frame(uint8_t *src[])
}
static uint32_t
+get_image(mp_image_t *mpi){
+ uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31;
+ uint32_t bespitch2 = bespitch/2;
+// printf("mga: get_image() called\n");
+ if(mpi->type==MP_IMGTYPE_STATIC) return VO_FALSE; // it is not static
+ if(mpi->flags&MP_IMGFLAG_READABLE) return VO_FALSE; // slow video ram
+// printf("width=%d vs. bespitch=%d, flags=0x%X \n",mpi->width,bespitch,mpi->flags);
+ if((mpi->width==bespitch) ||
+ (mpi->flags&(MP_IMGFLAG_ACCEPT_STRIDE|MP_IMGFLAG_ACCEPT_WIDTH))){
+ // we're lucky or codec accepts stride => ok, let's go!
+ if(mpi->flags&MP_IMGFLAG_PLANAR){
+ mpi->planes[0]=vid_data;
+ mpi->planes[1]=vid_data + bespitch*mga_vid_config.src_height;
+ mpi->planes[2]=vid_data + bespitch*mga_vid_config.src_height
+ + bespitch*mga_vid_config.src_height / 4;
+ mpi->width=mpi->stride[0]=bespitch;
+ mpi->stride[1]=mpi->stride[2]=bespitch2;
+ } else {
+ mpi->planes[0]=vid_data;
+ mpi->width=bespitch;
+ mpi->stride[0]=mpi->width*(mpi->bpp/8);
+ }
+ mpi->flags|=MP_IMGFLAG_DIRECT;
+// printf("mga: get_image() SUCCESS -> Direct Rendering ENABLED\n");
+ return VO_TRUE;
+ }
+ return VO_FALSE;
+}
+
+static uint32_t
query_format(uint32_t format)
{
switch(format){
@@ -205,6 +235,8 @@ static uint32_t control(uint32_t request, void *data, ...)
switch (request) {
case VOCTRL_QUERY_FORMAT:
return query_format(*((uint32_t*)data));
+ case VOCTRL_GET_IMAGE:
+ return get_image(data);
}
return VO_NOTIMPL;
}
diff --git a/libvo/video_out.h b/libvo/video_out.h
index 3982cc8648..ad371bdd97 100644
--- a/libvo/video_out.h
+++ b/libvo/video_out.h
@@ -36,6 +36,8 @@
#define VOCTRL_PAUSE 7
/* start/resume playback */
#define VOCTRL_RESUME 8
+/* libmpcodecs direct rendering: */
+#define VOCTRL_GET_IMAGE 9
#define VO_TRUE 1
#define VO_FALSE 0