ao_pulse: support native mute control
[mplayer.git] / libmpcodecs / vd_dmo.c
blob31d9f1e3518b438ed56823258d8d3f82194c7b27
1 /*
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.
19 #include "config.h"
21 #if HAVE_MALLOC_H
22 #include <malloc.h>
23 #endif
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <stdarg.h>
28 #include "mp_msg.h"
30 #include "vd_internal.h"
32 #include "loader/dmo/DMO_VideoDecoder.h"
34 static const vd_info_t info = {
35 "DMO video codecs",
36 "dmo",
37 "A'rpi",
38 "based on http://avifile.sf.net",
39 "win32 codecs"
42 LIBVD_EXTERN(dmo)
44 struct context {
45 void *decoder;
46 uint8_t *buffer;
47 int stride;
50 // to set/get/query special features/parameters
51 static int control(sh_video_t *sh,int cmd,void* arg,...){
52 return CONTROL_UNKNOWN;
55 // init driver
56 static int init(sh_video_t *sh){
57 unsigned int out_fmt=sh->codec->outfmt[0];
58 struct context *ctx;
59 void *decoder;
60 if(!(decoder=DMO_VideoDecoder_Open(sh->codec->dll,&sh->codec->guid, sh->bih, 0, 0))){
61 mp_tmsg(MSGT_DECVIDEO,MSGL_ERR,"ERROR: Could not open required DirectShow codec %s.\n",sh->codec->dll);
62 mp_tmsg(MSGT_DECVIDEO,MSGL_HINT,"You need to upgrade/install the binary codecs package.\nGo to http://www.mplayerhq.hu/dload.html\n");
63 return 0;
65 if(!mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,out_fmt)) return 0;
66 // mpcodecs_config_vo can change the format
67 out_fmt=sh->codec->outfmt[sh->outfmtidx];
68 sh->context = ctx = calloc(1, sizeof(*ctx));
69 ctx->decoder = decoder;
70 switch(out_fmt){
71 case IMGFMT_YUY2:
72 case IMGFMT_UYVY:
73 DMO_VideoDecoder_SetDestFmt(ctx->decoder,16,out_fmt);break; // packed YUV
74 case IMGFMT_YV12:
75 case IMGFMT_I420:
76 case IMGFMT_IYUV:
77 DMO_VideoDecoder_SetDestFmt(ctx->decoder,12,out_fmt);break; // planar YUV
78 case IMGFMT_YVU9:
79 DMO_VideoDecoder_SetDestFmt(ctx->decoder,9,out_fmt);break;
80 case IMGFMT_RGB24:
81 case IMGFMT_BGR24:
82 if (sh->disp_w & 3)
84 ctx->stride = ((sh->disp_w * 3) + 3) & ~3;
85 ctx->buffer = av_malloc(ctx->stride * sh->disp_h);
87 default:
88 DMO_VideoDecoder_SetDestFmt(ctx->decoder,out_fmt&255,0); // RGB/BGR
90 DMO_VideoDecoder_StartInternal(ctx->decoder);
91 mp_tmsg(MSGT_DECVIDEO,MSGL_V,"INFO: Win32/DMO video codec init OK.\n");
92 return 1;
95 // uninit driver
96 static void uninit(sh_video_t *sh){
97 struct context *ctx = sh->context;
98 DMO_VideoDecoder_Destroy(ctx->decoder);
99 av_free(ctx->buffer);
100 free(ctx);
101 sh->context = NULL;
104 //mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, int w, int h);
106 // decode a frame
107 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){
108 struct context *ctx = sh->context;
109 uint8_t *buffer = ctx->buffer;
110 int type = ctx->buffer ? MP_IMGTYPE_EXPORT : MP_IMGTYPE_TEMP;
111 mp_image_t* mpi;
112 if(len<=0) return NULL; // skipped frame
114 if(flags&3){
115 // framedrop:
116 DMO_VideoDecoder_DecodeInternal(ctx->decoder, data, len, 0, 0);
117 return NULL;
120 mpi=mpcodecs_get_image(sh, type, MP_IMGFLAG_COMMON_PLANE,
121 sh->disp_w, sh->disp_h);
122 if (buffer) {
123 mpi->planes[0] = buffer;
124 mpi->stride[0] = ctx->stride;
125 } else {
126 buffer = mpi->planes[0];
129 if(!mpi){ // temporary!
130 mp_tmsg(MSGT_DECVIDEO,MSGL_WARN,"[VD_DMO] Couldn't allocate image for cinepak codec.\n");
131 return NULL;
134 DMO_VideoDecoder_DecodeInternal(ctx->decoder, data, len, 1, buffer);
136 return mpi;