2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 #include "vd_internal.h"
30 #include "loader/dshow/DS_VideoDecoder.h"
32 static const vd_info_t info
= {
33 "DirectShow video codecs",
36 "based on http://avifile.sf.net",
42 // to set/get/query special features/parameters
43 static int control(sh_video_t
*sh
,int cmd
,void* arg
,...){
45 case VDCTRL_QUERY_MAX_PP_LEVEL
:
47 case VDCTRL_SET_PP_LEVEL
:
48 if(!sh
->context
) return CONTROL_ERROR
;
49 DS_VideoDecoder_SetValue(sh
->context
,"Quality",*((int*)arg
));
52 case VDCTRL_SET_EQUALIZER
: {
56 value
=va_arg(ap
, int);
58 if(DS_VideoDecoder_SetValue(sh
->context
,arg
,50+value
/2)==0)
64 return CONTROL_UNKNOWN
;
68 static int init(sh_video_t
*sh
){
69 unsigned int out_fmt
=sh
->codec
->outfmt
[0];
71 /* Hack for VSSH codec: new dll can't decode old files
72 * In my samples old files have no extradata, so use that info
73 * to decide what dll should be used (here and in vd_vfw).
75 if (!strcmp(sh
->codec
->dll
, "vsshdsd.dll") && (sh
->bih
->biSize
== 40))
78 if(!(sh
->context
=DS_VideoDecoder_Open(sh
->codec
->dll
,&sh
->codec
->guid
, sh
->bih
, 0, 0))){
79 mp_msg(MSGT_DECVIDEO
,MSGL_ERR
,MSGTR_MissingDLLcodec
,sh
->codec
->dll
);
80 mp_msg(MSGT_DECVIDEO
,MSGL_HINT
,MSGTR_DownloadCodecPackage
);
83 if(!mpcodecs_config_vo(sh
,sh
->disp_w
,sh
->disp_h
,out_fmt
)) return 0;
84 // mpcodecs_config_vo can change the format
85 out_fmt
=sh
->codec
->outfmt
[sh
->outfmtidx
];
89 DS_VideoDecoder_SetDestFmt(sh
->context
,16,out_fmt
);break; // packed YUV
93 DS_VideoDecoder_SetDestFmt(sh
->context
,12,out_fmt
);break; // planar YUV
95 DS_VideoDecoder_SetDestFmt(sh
->context
,9,out_fmt
);break;
97 DS_VideoDecoder_SetDestFmt(sh
->context
,out_fmt
&255,0); // RGB/BGR
99 DS_SetAttr_DivX("Quality",divx_quality
);
100 DS_VideoDecoder_StartInternal(sh
->context
);
101 mp_msg(MSGT_DECVIDEO
,MSGL_V
,MSGTR_DShowInitOK
);
106 static void uninit(sh_video_t
*sh
){
107 DS_VideoDecoder_Destroy(sh
->context
);
110 //mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, int w, int h);
113 static mp_image_t
* decode(sh_video_t
*sh
,void* data
,int len
,int flags
){
115 if(len
<=0) return NULL
; // skipped frame
119 DS_VideoDecoder_DecodeInternal(sh
->context
, data
, len
, 0, 0);
123 mpi
=mpcodecs_get_image(sh
, MP_IMGTYPE_TEMP
, MP_IMGFLAG_COMMON_PLANE
,
124 sh
->disp_w
, sh
->disp_h
);
126 if(!mpi
){ // temporary!
127 mp_msg(MSGT_DECVIDEO
,MSGL_WARN
,MSGTR_MPCODECS_CouldntAllocateImageForCinepakCodec
);
131 DS_VideoDecoder_DecodeInternal(sh
->context
, data
, len
, 0, mpi
->planes
[0]);