From e5ebb2673d107e03823ca1c00512268d83760402 Mon Sep 17 00:00:00 2001 From: arpi Date: Thu, 22 Nov 2001 03:15:49 +0000 Subject: NEW_DSHOW added (for dshow C version) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3063 b3059339-0415-0410-9bf9-f77b7e298cf2 --- dec_video.c | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 58 insertions(+), 3 deletions(-) (limited to 'dec_video.c') diff --git a/dec_video.c b/dec_video.c index 7a9e61b0ff..471e4656ec 100644 --- a/dec_video.c +++ b/dec_video.c @@ -1,4 +1,6 @@ +//#define NEW_DSHOW + #include "config.h" #include @@ -53,8 +55,19 @@ extern picture_t *picture; // exported from libmpeg2/decode.c int divx_quality=0; #ifdef USE_DIRECTSHOW +#ifdef NEW_DSHOW +//#include "loader/dshow/DS_VideoDecoder.h" +//static DS_VideoDecoder* ds_vdec=NULL; +typedef struct _CodecInfo +{ + char* dll; + GUID* guid; +}CodecInfo; +static void* ds_vdec=NULL; +#else #include "loader/DirectShow/DS_VideoDec.h" #endif +#endif #ifdef USE_LIBAVCODEC #ifdef USE_LIBAVCODEC_SO @@ -177,7 +190,11 @@ void set_video_quality(sh_video_t *sh_video,int quality){ #ifdef USE_DIRECTSHOW case VFM_DSHOW: { if(quality<0 || quality>4) quality=4; +#ifdef NEW_DSHOW + DS_VideoDecoder_SetValue(ds_vdec,"Quality",quality); +#else DS_SetValue_DivX("Quality",quality); +#endif } break; #endif @@ -212,11 +229,17 @@ void set_video_quality(sh_video_t *sh_video,int quality){ int set_video_colors(sh_video_t *sh_video,char *item,int value){ #ifdef USE_DIRECTSHOW +#ifndef NEW_DSHOW if(sh_video->codec->driver==VFM_DSHOW){ +#ifdef NEW_DSHOW + DS_VideoDecoder_SetValue(ds_vdec,item,value); +#else DS_SetValue_DivX(item,value); +#endif return 1; } #endif +#endif #ifdef NEW_DECORE #ifdef DECORE_VERSION @@ -276,7 +299,11 @@ void uninit_video(sh_video_t *sh_video){ #endif #ifdef USE_DIRECTSHOW case VFM_DSHOW: // Win32/DirectShow +#ifdef NEW_DSHOW + if(ds_vdec){ DS_VideoDecoder_Destroy(ds_vdec); ds_vdec=NULL; } +#else DS_VideoDecoder_Close(); +#endif break; #endif case VFM_MPEG: @@ -333,7 +360,14 @@ switch(sh_video->codec->driver){ return 0; #else int bpp; +#ifdef NEW_DSHOW + CodecInfo ci; + ci.dll=sh_video->codec->dll; + ci.guid=&sh_video->codec->guid; + if(!(ds_vdec=DS_VideoDecoder_Create(&ci,sh_video->bih, 0, 0))){ +#else if(DS_VideoDecoder_Open(sh_video->codec->dll,&sh_video->codec->guid, sh_video->bih, 0, &sh_video->our_out_buffer)){ +#endif // if(DS_VideoDecoder_Open(sh_video->codec->dll,&sh_video->codec->guid, sh_video->bih, 0, NULL)){ mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MissingDLLcodec,sh_video->codec->dll); mp_msg(MSGT_DECVIDEO,MSGL_HINT,"Maybe you forget to upgrade your win32 codecs?? It's time to download the new\n"); @@ -346,22 +380,38 @@ switch(sh_video->codec->driver){ case IMGFMT_YUY2: case IMGFMT_UYVY: bpp=16; +#ifdef NEW_DSHOW + DS_VideoDecoder_SetDestFmt(ds_vdec,16,out_fmt);break; // packed YUV +#else DS_VideoDecoder_SetDestFmt(16,out_fmt);break; // packed YUV +#endif case IMGFMT_YV12: case IMGFMT_I420: case IMGFMT_IYUV: bpp=12; +#ifdef NEW_DSHOW + DS_VideoDecoder_SetDestFmt(ds_vdec,12,out_fmt);break; // planar YUV +#else DS_VideoDecoder_SetDestFmt(12,out_fmt);break; // planar YUV +#endif default: bpp=((out_fmt&255)+7)&(~7); +#ifdef NEW_DSHOW + DS_VideoDecoder_SetDestFmt(ds_vdec,out_fmt&255,0); // RGB/BGR +#else DS_VideoDecoder_SetDestFmt(out_fmt&255,0); // RGB/BGR +#endif } sh_video->our_out_buffer = (char*)memalign(64,sh_video->disp_w*sh_video->disp_h*bpp/8); // FIXME!!! - DS_VideoDecoder_Start(); - DS_SetAttr_DivX("Quality",divx_quality); + +#ifdef NEW_DSHOW + DS_VideoDecoder_StartInternal(ds_vdec); +#else + DS_VideoDecoder_Start(); +#endif // printf("DivX setting result = %d\n", DS_SetAttr_DivX("Quality",divx_quality) ); // printf("DivX setting result = %d\n", DS_SetValue_DivX("Brightness",60) ); @@ -606,7 +656,12 @@ switch(sh_video->codec->driver){ #endif #ifdef USE_DIRECTSHOW case VFM_DSHOW: { // W32/DirectShow - if(drop_frame<2) DS_VideoDecoder_DecodeFrame(start, in_size, 0, !drop_frame); + if(drop_frame<2) +#ifdef NEW_DSHOW + DS_VideoDecoder_DecodeInternal(ds_vdec, start, in_size, 0, drop_frame ? 0 : sh_video->our_out_buffer); +#else + DS_VideoDecoder_DecodeFrame(start, in_size, 0, !drop_frame); +#endif if(!drop_frame && sh_video->our_out_buffer) blit_frame=3; break; } -- cgit v1.2.3