]> git.sesse.net Git - vlc/blob - modules/codec/dmo/dmo.c
* modules/codec/dmo/dmo.c: fixed a couple of memleaks.
[vlc] / modules / codec / dmo / dmo.c
1 /*****************************************************************************
2  * dmo.c : DirectMedia Object decoder module for vlc
3  *****************************************************************************
4  * Copyright (C) 2002, 2003 VideoLAN
5  * $Id$
6  *
7  * Author: Gildas Bazin <gbazin@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <string.h>
30
31 #include <vlc/vlc.h>
32 #include <vlc/decoder.h>
33 #include <vlc/vout.h>
34
35 #ifndef WIN32
36 #    define LOADER
37 #else
38 #   include <objbase.h>
39 #endif
40
41 #ifdef LOADER
42 /* Need the w32dll loader from mplayer */
43 #   include <wine/winerror.h>
44 #   include <ldt_keeper.h>
45 #   include <wine/windef.h>
46 #endif
47
48 #include "codecs.h"
49 #include "dmo.h"
50
51 //#define DMO_DEBUG 1
52
53 #ifdef LOADER
54 /* Not Needed */
55 long CoInitialize( void *pvReserved ) { return -1; }
56 void CoUninitialize( void ) { }
57
58 /* A few prototypes */
59 HMODULE WINAPI LoadLibraryA(LPCSTR);
60 #define LoadLibrary LoadLibraryA
61 FARPROC WINAPI GetProcAddress(HMODULE,LPCSTR);
62 int     WINAPI FreeLibrary(HMODULE);
63 #endif /* LOADER */
64
65 typedef long (STDCALL *GETCLASS) ( const GUID*, const GUID*, void** );
66
67 static int pi_channels_maps[7] =
68 {
69     0,
70     AOUT_CHAN_CENTER,
71     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
72     AOUT_CHAN_CENTER | AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
73     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARLEFT
74      | AOUT_CHAN_REARRIGHT,
75     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
76      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT,
77     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
78      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_LFE
79 };
80
81 /*****************************************************************************
82  * Module descriptor
83  *****************************************************************************/
84 static int  DecoderOpen  ( vlc_object_t * );
85 static int  DecOpen      ( vlc_object_t * );
86 static void DecoderClose ( vlc_object_t * );
87 static void *DecodeBlock ( decoder_t *, block_t ** );
88
89 static int  EncoderOpen  ( vlc_object_t * );
90 static int  EncOpen      ( vlc_object_t * );
91 static void EncoderClose ( vlc_object_t * );
92 static block_t *EncodeBlock( encoder_t *, void * );
93
94 static int LoadDMO( vlc_object_t *, HINSTANCE *, IMediaObject **,
95                     es_format_t *, vlc_bool_t );
96 static void CopyPicture( decoder_t *, picture_t *, uint8_t * );
97
98 vlc_module_begin();
99     set_description( _("DirectMedia Object decoder") );
100     add_shortcut( "dmo" );
101     set_capability( "decoder", 1 );
102     set_callbacks( DecoderOpen, DecoderClose );
103
104 #   define ENC_CFG_PREFIX "sout-dmo-"
105     add_submodule();
106     set_description( _("DirectMedia Object encoder") );
107     set_capability( "encoder", 10 );
108     set_callbacks( EncoderOpen, EncoderClose );
109
110 vlc_module_end();
111
112 /*****************************************************************************
113  * Local prototypes
114  *****************************************************************************/
115
116 /****************************************************************************
117  * Decoder descriptor declaration
118  ****************************************************************************/
119 struct decoder_sys_t
120 {
121     HINSTANCE hmsdmo_dll;
122     IMediaObject *p_dmo;
123
124     int i_min_output;
125     uint8_t *p_buffer;
126
127     date_t end_date;
128
129 #ifdef LOADER
130     ldt_fs_t    *ldt_fs;
131 #endif
132 };
133
134 static const GUID guid_wmv9 = { 0x724bb6a4, 0xe526, 0x450f, { 0xaf, 0xfa, 0xab, 0x9b, 0x45, 0x12, 0x91, 0x11 } };
135 static const GUID guid_wma9 = { 0x27ca0808, 0x01f5, 0x4e7a, { 0x8b, 0x05, 0x87, 0xf8, 0x07, 0xa2, 0x33, 0xd1 } };
136
137 static const GUID guid_wmv = { 0x82d353df, 0x90bd, 0x4382, { 0x8b, 0xc2, 0x3f, 0x61, 0x92, 0xb7, 0x6e, 0x34 } };
138 static const GUID guid_wma = { 0x874131cb, 0x4ecc, 0x443b, { 0x89, 0x48, 0x74, 0x6b, 0x89, 0x59, 0x5d, 0x20 } };
139
140 static const GUID guid_wmv_enc = { 0x3181343b, 0x94a2, 0x4feb, { 0xad, 0xef, 0x30, 0xa1, 0xdd, 0xe6, 0x17, 0xb4 } };
141 static const GUID guid_wma_enc = { 0x70f598e9, 0xf4ab, 0x495a, { 0x99, 0xe2, 0xa7, 0xc4, 0xd3, 0xd8, 0x9a, 0xbf } };
142
143 typedef struct
144 {
145     vlc_fourcc_t i_fourcc;
146     const char   *psz_dll;
147     const GUID   *p_guid;
148
149 } codec_dll;
150
151 static const codec_dll decoders_table[] =
152 {
153     /* WM3 */
154     { VLC_FOURCC('W','M','V','3'), "wmv9dmod.dll", &guid_wmv9 },
155     { VLC_FOURCC('w','m','v','3'), "wmv9dmod.dll", &guid_wmv9 },
156     /* WMV2 */
157     { VLC_FOURCC('W','M','V','2'), "wmvdmod.dll", &guid_wmv },
158     { VLC_FOURCC('w','m','v','2'), "wmvdmod.dll", &guid_wmv },
159     /* WMV1 */
160     { VLC_FOURCC('W','M','V','1'), "wmvdmod.dll", &guid_wmv },
161     { VLC_FOURCC('w','m','v','1'), "wmvdmod.dll", &guid_wmv },
162
163     /* WMA 3 */
164     { VLC_FOURCC('W','M','A','3'), "wma9dmod.dll", &guid_wma9 },
165     { VLC_FOURCC('w','m','a','3'), "wma9dmod.dll", &guid_wma9 },
166     /* WMA 2 */
167     { VLC_FOURCC('W','M','A','2'), "wma9dmod.dll", &guid_wma9 },
168     { VLC_FOURCC('w','m','a','2'), "wma9dmod.dll", &guid_wma9 },
169
170     /* */
171     { 0, NULL, NULL }
172 };
173
174 static const codec_dll encoders_table[] =
175 {
176     /* WMV2 */
177     { VLC_FOURCC('W','M','V','2'), "wmvdmoe.dll", &guid_wmv_enc },
178     { VLC_FOURCC('w','m','v','1'), "wmvdmoe.dll", &guid_wmv_enc },
179     /* WMV1 */
180     { VLC_FOURCC('W','M','V','1'), "wmvdmoe.dll", &guid_wmv_enc },
181     { VLC_FOURCC('w','m','v','1'), "wmvdmoe.dll", &guid_wmv_enc },
182
183     /* WMA 3 */
184     { VLC_FOURCC('W','M','A','3'), "wmadmoe.dll", &guid_wma_enc },
185     { VLC_FOURCC('w','m','a','3'), "wmadmoe.dll", &guid_wma_enc },
186     /* WMA 2 */
187     { VLC_FOURCC('W','M','A','2'), "wmadmoe.dll", &guid_wma_enc },
188     { VLC_FOURCC('w','m','a','2'), "wmadmoe.dll", &guid_wma_enc },
189
190     /* */
191     { 0, NULL, NULL }
192 };
193
194 static void WINAPI DMOFreeMediaType( DMO_MEDIA_TYPE *mt )
195 {
196     if( mt->cbFormat != 0 ) CoTaskMemFree( (PVOID)mt->pbFormat );
197     if( mt->pUnk != NULL ) mt->pUnk->vt->Release( (IUnknown *)mt->pUnk );
198     mt->cbFormat = 0;
199     mt->pbFormat = NULL;
200     mt->pUnk = NULL;
201 }
202
203 /*****************************************************************************
204  * DecoderOpen: open dmo codec
205  *****************************************************************************/
206 static int DecoderOpen( vlc_object_t *p_this )
207 {
208     decoder_t *p_dec = (decoder_t*)p_this;
209
210 #ifndef LOADER
211     int i_ret = DecOpen( p_this );
212     if( i_ret != VLC_SUCCESS ) return i_ret;
213
214
215 #else
216     /* We can't open it now, because of ldt_keeper or something
217      * Open/Decode/Close has to be done in the same thread */
218     int i;
219
220     p_dec->p_sys = NULL;
221
222     /* Probe if we support it */
223     for( i = 0; decoders_table[i].i_fourcc != 0; i++ )
224     {
225         if( decoders_table[i].i_fourcc == p_dec->fmt_in.i_codec )
226         {
227             msg_Dbg( p_dec, "DMO codec for %4.4s may work with dll=%s",
228                      (char*)&p_dec->fmt_in.i_codec,
229                      decoders_table[i].psz_dll );
230             break;
231         }
232     }
233
234     p_dec->p_sys = NULL;
235     if( !decoders_table[i].i_fourcc ) return VLC_EGENERIC;
236 #endif /* LOADER */
237
238     /* Set callbacks */
239     p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **))
240         DecodeBlock;
241     p_dec->pf_decode_audio = (aout_buffer_t *(*)(decoder_t *, block_t **))
242         DecodeBlock;
243
244     return VLC_SUCCESS;
245 }
246
247 /*****************************************************************************
248  * DecOpen: open dmo codec
249  *****************************************************************************/
250 static int DecOpen( vlc_object_t *p_this )
251 {
252     decoder_t *p_dec = (decoder_t*)p_this;
253     decoder_sys_t *p_sys = NULL;
254
255     DMO_MEDIA_TYPE dmo_input_type, dmo_output_type;
256     IMediaObject *p_dmo = NULL;
257     HINSTANCE hmsdmo_dll = NULL;
258
259     VIDEOINFOHEADER *p_vih = NULL;
260     WAVEFORMATEX *p_wf = NULL;
261
262 #ifdef LOADER
263     ldt_fs_t *ldt_fs = Setup_LDT_Keeper();
264 #else
265     /* Initialize OLE/COM */
266     CoInitialize( 0 );
267 #endif /* LOADER */
268
269     if( LoadDMO( p_this, &hmsdmo_dll, &p_dmo, &p_dec->fmt_in, VLC_FALSE )
270         != VLC_SUCCESS )
271     {
272         hmsdmo_dll = 0;
273         p_dmo = 0;
274         goto error;
275     }
276
277     /* Setup input format */
278     memset( &dmo_input_type, 0, sizeof(dmo_input_type) );
279     dmo_input_type.pUnk = 0;
280
281     if( p_dec->fmt_in.i_cat == AUDIO_ES )
282     {
283         uint16_t i_tag;
284         int i_size = sizeof(WAVEFORMATEX) + p_dec->fmt_in.i_extra;
285         p_wf = malloc( i_size );
286
287         memset( p_wf, 0, sizeof(WAVEFORMATEX) );
288         if( p_dec->fmt_in.i_extra )
289             memcpy( &p_wf[1], p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra );
290
291         dmo_input_type.majortype  = MEDIATYPE_Audio;
292         dmo_input_type.subtype    = dmo_input_type.majortype;
293         dmo_input_type.subtype.Data1 = p_dec->fmt_in.i_codec;
294         fourcc_to_wf_tag( p_dec->fmt_in.i_codec, &i_tag );
295         if( i_tag ) dmo_input_type.subtype.Data1 = i_tag;
296
297         p_wf->wFormatTag = dmo_input_type.subtype.Data1;
298         p_wf->nSamplesPerSec = p_dec->fmt_in.audio.i_rate;
299         p_wf->nChannels = p_dec->fmt_in.audio.i_channels;
300         p_wf->wBitsPerSample = p_dec->fmt_in.audio.i_bitspersample;
301         p_wf->nBlockAlign = p_dec->fmt_in.audio.i_blockalign;
302         p_wf->nAvgBytesPerSec = p_dec->fmt_in.i_bitrate / 8;
303         p_wf->cbSize = p_dec->fmt_in.i_extra;
304
305         dmo_input_type.formattype = FORMAT_WaveFormatEx;
306         dmo_input_type.cbFormat   = i_size;
307         dmo_input_type.pbFormat   = (char *)p_wf;
308         dmo_input_type.bFixedSizeSamples = 1;
309         dmo_input_type.bTemporalCompression = 0;
310         dmo_input_type.lSampleSize = p_wf->nBlockAlign;
311     }
312     else
313     {
314         BITMAPINFOHEADER *p_bih;
315
316         int i_size = sizeof(VIDEOINFOHEADER) + p_dec->fmt_in.i_extra;
317         p_vih = malloc( i_size );
318
319         memset( p_vih, 0, sizeof(VIDEOINFOHEADER) );
320         if( p_dec->fmt_in.i_extra )
321             memcpy( &p_vih[1], p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra );
322
323         p_bih = &p_vih->bmiHeader;
324         p_bih->biCompression = p_dec->fmt_in.i_codec;
325         p_bih->biWidth = p_dec->fmt_in.video.i_width;
326         p_bih->biHeight = p_dec->fmt_in.video.i_height;
327         p_bih->biBitCount = p_dec->fmt_in.video.i_bits_per_pixel;
328         p_bih->biPlanes = 1;
329         p_bih->biSize = i_size - sizeof(VIDEOINFOHEADER) +
330             sizeof(BITMAPINFOHEADER);
331
332         p_vih->rcSource.left = p_vih->rcSource.top = 0;
333         p_vih->rcSource.right = p_dec->fmt_in.video.i_width;
334         p_vih->rcSource.bottom = p_dec->fmt_in.video.i_height;
335         p_vih->rcTarget = p_vih->rcSource;
336
337         dmo_input_type.majortype  = MEDIATYPE_Video;
338         dmo_input_type.subtype    = dmo_input_type.majortype;
339         dmo_input_type.subtype.Data1 = p_dec->fmt_in.i_codec;
340         dmo_input_type.formattype = FORMAT_VideoInfo;
341         dmo_input_type.bFixedSizeSamples = 0;
342         dmo_input_type.bTemporalCompression = 1;
343         dmo_input_type.cbFormat = i_size;
344         dmo_input_type.pbFormat = (char *)p_vih;
345     }
346
347     if( p_dmo->vt->SetInputType( p_dmo, 0, &dmo_input_type, 0 ) )
348     {
349         msg_Err( p_dec, "can't set DMO input type" );
350         goto error;
351     }
352     msg_Dbg( p_dec, "DMO input type set" );
353
354     /* Setup output format */
355     memset( &dmo_output_type, 0, sizeof(dmo_output_type) );
356     dmo_output_type.pUnk = 0;
357
358     if( p_dec->fmt_in.i_cat == AUDIO_ES )
359     {
360         /* Setup the format */
361         p_dec->fmt_out.i_codec = AOUT_FMT_S16_NE;
362         p_dec->fmt_out.audio.i_rate     = p_dec->fmt_in.audio.i_rate;
363         p_dec->fmt_out.audio.i_channels = p_dec->fmt_in.audio.i_channels;
364         p_dec->fmt_out.audio.i_bitspersample = 16;//p_dec->fmt_in.audio.i_bitspersample; We request 16
365         p_dec->fmt_out.audio.i_physical_channels =
366             p_dec->fmt_out.audio.i_original_channels =
367                 pi_channels_maps[p_dec->fmt_out.audio.i_channels];
368
369         p_wf->wFormatTag = WAVE_FORMAT_PCM;
370         p_wf->nSamplesPerSec = p_dec->fmt_out.audio.i_rate;
371         p_wf->nChannels = p_dec->fmt_out.audio.i_channels;
372         p_wf->wBitsPerSample = p_dec->fmt_out.audio.i_bitspersample;
373         p_wf->nBlockAlign =
374             p_wf->wBitsPerSample / 8 * p_wf->nChannels;
375         p_wf->nAvgBytesPerSec =
376             p_wf->nSamplesPerSec * p_wf->nBlockAlign;
377         p_wf->cbSize = 0;
378
379         dmo_output_type.majortype  = MEDIATYPE_Audio;
380         dmo_output_type.formattype = FORMAT_WaveFormatEx;
381         dmo_output_type.subtype    = MEDIASUBTYPE_PCM;
382         dmo_output_type.cbFormat   = sizeof(WAVEFORMATEX);
383         dmo_output_type.pbFormat   = (char *)p_wf;
384         dmo_output_type.bFixedSizeSamples = 1;
385         dmo_output_type.bTemporalCompression = 0;
386         dmo_output_type.lSampleSize = p_wf->nBlockAlign;
387     }
388     else
389     {
390         BITMAPINFOHEADER *p_bih;
391         DMO_MEDIA_TYPE mt;
392         int i_chroma = VLC_FOURCC('Y','U','Y','2'), i_planes = 1, i_bpp = 16;
393         int i = 0;
394
395         /* Find out which chroma to use */
396         while( !p_dmo->vt->GetOutputType( p_dmo, 0, i++, &mt ) )
397         {
398             if( mt.subtype.Data1 == VLC_FOURCC('Y','V','1','2') )
399             {
400                 i_chroma = mt.subtype.Data1;
401                 i_planes = 3; i_bpp = 12;
402             }
403
404             DMOFreeMediaType( &mt );
405         }
406
407         p_dec->fmt_out.i_codec = i_chroma == VLC_FOURCC('Y','V','1','2') ?
408             VLC_FOURCC('I','4','2','0') : i_chroma;
409         p_dec->fmt_out.video.i_width = p_dec->fmt_in.video.i_width;
410         p_dec->fmt_out.video.i_height = p_dec->fmt_in.video.i_height;
411         p_dec->fmt_out.video.i_bits_per_pixel = i_bpp;
412         p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR *
413             p_dec->fmt_out.video.i_width / p_dec->fmt_out.video.i_height;
414
415         p_bih = &p_vih->bmiHeader;
416         p_bih->biCompression = i_chroma;
417         p_bih->biHeight *= -1;
418         p_bih->biBitCount = p_dec->fmt_out.video.i_bits_per_pixel;
419         p_bih->biSizeImage = p_dec->fmt_in.video.i_width *
420             p_dec->fmt_in.video.i_height *
421             (p_dec->fmt_in.video.i_bits_per_pixel + 7) / 8;
422
423         p_bih->biPlanes = i_planes;
424         p_bih->biSize = sizeof(BITMAPINFOHEADER);
425
426         dmo_output_type.majortype = MEDIATYPE_Video;
427         dmo_output_type.formattype = FORMAT_VideoInfo;
428         dmo_output_type.subtype = dmo_output_type.majortype;
429         dmo_output_type.subtype.Data1 = p_bih->biCompression;
430         dmo_output_type.bFixedSizeSamples = VLC_TRUE;
431         dmo_output_type.bTemporalCompression = 0;
432         dmo_output_type.lSampleSize = p_bih->biSizeImage;
433         dmo_output_type.cbFormat = sizeof(VIDEOINFOHEADER);
434         dmo_output_type.pbFormat = (char *)p_vih;
435     }
436
437 #ifdef DMO_DEBUG
438     /* Enumerate output types */
439     if( p_dec->fmt_in.i_cat == VIDEO_ES )
440     {
441         int i = 0;
442         DMO_MEDIA_TYPE mt;
443
444         while( !p_dmo->vt->GetOutputType( p_dmo, 0, i++, &mt ) )
445         {
446             msg_Dbg( p_dec, "available output chroma: %4.4s",
447                      (char *)&mt.subtype.Data1 );
448             DMOFreeMediaType( &mt );
449         }
450     }
451 #endif
452
453     if( p_dmo->vt->SetOutputType( p_dmo, 0, &dmo_output_type, 0 ) )
454     {
455         msg_Err( p_dec, "can't set DMO output type" );
456         goto error;
457     }
458     msg_Dbg( p_dec, "DMO output type set" );
459
460     /* Allocate the memory needed to store the decoder's structure */
461     if( ( p_dec->p_sys = p_sys =
462           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
463     {
464         msg_Err( p_dec, "out of memory" );
465         goto error;
466     }
467
468     p_sys->hmsdmo_dll = hmsdmo_dll;
469     p_sys->p_dmo = p_dmo;
470 #ifdef LOADER
471     p_sys->ldt_fs = ldt_fs;
472 #endif
473
474     /* Find out some properties of the output */
475     {
476         uint32_t i_size, i_align;
477
478         p_sys->i_min_output = 0;
479         if( p_dmo->vt->GetOutputSizeInfo( p_dmo, 0, &i_size, &i_align ) )
480         {
481             msg_Err( p_dec, "GetOutputSizeInfo() failed" );
482             goto error;
483         }
484         else
485         {
486             msg_Dbg( p_dec, "GetOutputSizeInfo(): bytes %i, align %i",
487                      i_size, i_align );
488             p_sys->i_min_output = i_size;
489             p_sys->p_buffer = malloc( i_size );
490             if( !p_sys->p_buffer ) goto error;
491         }
492     }
493
494     /* Set output properties */
495     p_dec->fmt_out.i_cat = p_dec->fmt_in.i_cat;
496     if( p_dec->fmt_out.i_cat == AUDIO_ES )
497         date_Init( &p_sys->end_date, p_dec->fmt_in.audio.i_rate, 1 );
498     else
499         date_Init( &p_sys->end_date, 25 /* FIXME */, 1 );
500
501     if( p_vih ) free( p_vih );
502     if( p_wf ) free( p_wf );
503
504     return VLC_SUCCESS;
505
506  error:
507
508     if( p_dmo ) p_dmo->vt->Release( (IUnknown *)p_dmo );
509     if( hmsdmo_dll ) FreeLibrary( hmsdmo_dll );
510
511 #ifdef LOADER
512     Restore_LDT_Keeper( ldt_fs );
513 #else
514     /* Uninitialize OLE/COM */
515     CoUninitialize();
516 #endif /* LOADER */
517
518     if( p_vih ) free( p_vih );
519     if( p_wf )  free( p_wf );
520     if( p_sys ) free( p_sys );
521
522     return VLC_EGENERIC;
523 }
524
525 /*****************************************************************************
526  * LoadDMO: Load the DMO object
527  *****************************************************************************/
528 static int LoadDMO( vlc_object_t *p_this, HINSTANCE *p_hmsdmo_dll,
529                     IMediaObject **pp_dmo, es_format_t *p_fmt,
530                     vlc_bool_t b_out )
531 {
532     DMO_PARTIAL_MEDIATYPE dmo_partial_type;
533     int i_err;
534
535 #ifndef LOADER
536     long (STDCALL *OurDMOEnum)( const GUID *, uint32_t, uint32_t,
537                                const DMO_PARTIAL_MEDIATYPE *,
538                                uint32_t, const DMO_PARTIAL_MEDIATYPE *,
539                                IEnumDMO ** );
540
541     IEnumDMO *p_enum_dmo = NULL;
542     WCHAR *psz_dmo_name;
543     GUID clsid_dmo;
544 #endif
545
546     GETCLASS GetClass;
547     IClassFactory *cFactory = NULL;
548     IUnknown *cObject = NULL;
549     codec_dll *codecs_table = b_out ? encoders_table : decoders_table;
550     int i_codec;
551
552     /* Look for a DMO which can handle the requested codec */
553     if( p_fmt->i_cat == AUDIO_ES )
554     {
555         uint16_t i_tag;
556         dmo_partial_type.type = MEDIATYPE_Audio;
557         dmo_partial_type.subtype = dmo_partial_type.type;
558         dmo_partial_type.subtype.Data1 = p_fmt->i_codec;
559         fourcc_to_wf_tag( p_fmt->i_codec, &i_tag );
560         if( i_tag ) dmo_partial_type.subtype.Data1 = i_tag;
561     }
562     else
563     {
564         dmo_partial_type.type = MEDIATYPE_Video;
565         dmo_partial_type.subtype = dmo_partial_type.type;
566         dmo_partial_type.subtype.Data1 = p_fmt->i_codec;
567     }
568
569 #ifndef LOADER
570     /* Load msdmo DLL */
571     *p_hmsdmo_dll = LoadLibrary( "msdmo.dll" );
572     if( *p_hmsdmo_dll == NULL )
573     {
574         msg_Dbg( p_this, "failed loading msdmo.dll" );
575         return VLC_EGENERIC;
576     }
577     OurDMOEnum = (void *)GetProcAddress( *p_hmsdmo_dll, "DMOEnum" );
578     if( OurDMOEnum == NULL )
579     {
580         msg_Dbg( p_this, "GetProcAddress failed to find DMOEnum()" );
581         FreeLibrary( *p_hmsdmo_dll );
582         return VLC_EGENERIC;
583     }
584
585     if( !b_out )
586     {
587         i_err = OurDMOEnum( &GUID_NULL, 1 /*DMO_ENUMF_INCLUDE_KEYED*/,
588                             1, &dmo_partial_type, 0, NULL, &p_enum_dmo );
589     }
590     else
591     {
592         i_err = OurDMOEnum( &GUID_NULL, 1 /*DMO_ENUMF_INCLUDE_KEYED*/,
593                             0, NULL, 1, &dmo_partial_type, &p_enum_dmo );
594     }
595     if( i_err )
596     {
597         FreeLibrary( *p_hmsdmo_dll );
598         /* return VLC_EGENERIC; */
599         /* Try loading the dll directly */
600         goto loader;
601     }
602
603     /* Pickup the first available codec */
604     if( p_enum_dmo->vt->Next( p_enum_dmo, 1, &clsid_dmo,
605                               &psz_dmo_name, NULL ) )
606     {
607         FreeLibrary( *p_hmsdmo_dll );
608         return VLC_EGENERIC;
609     }
610     p_enum_dmo->vt->Release( (IUnknown *)p_enum_dmo );
611
612 #if 1
613     {
614         char psz_temp[MAX_PATH];
615         wcstombs( psz_temp, psz_dmo_name, MAX_PATH );
616         msg_Dbg( p_this, "found DMO: %s", psz_temp );
617     }
618 #endif
619
620     CoTaskMemFree( psz_dmo_name );
621
622     /* Create DMO */
623     if( CoCreateInstance( &clsid_dmo, NULL, CLSCTX_INPROC,
624                           &IID_IMediaObject, (void **)pp_dmo ) )
625     {
626         msg_Err( p_this, "can't create DMO" );
627         FreeLibrary( *p_hmsdmo_dll );
628         return VLC_EGENERIC;
629     }
630
631     return VLC_SUCCESS;
632 #endif   /* LOADER */
633
634  loader:
635     for( i_codec = 0; codecs_table[i_codec].i_fourcc != 0; i_codec++ )
636     {
637         if( codecs_table[i_codec].i_fourcc == p_fmt->i_codec )
638             break;
639     }
640     if( codecs_table[i_codec].i_fourcc == 0 )
641         return VLC_EGENERIC;    /* Can't happen */
642
643     *p_hmsdmo_dll = LoadLibrary( codecs_table[i_codec].psz_dll );
644     if( *p_hmsdmo_dll == NULL )
645     {
646         msg_Dbg( p_this, "failed loading '%s'",
647                  codecs_table[i_codec].psz_dll );
648         return VLC_EGENERIC;
649     }
650
651     GetClass = (GETCLASS)GetProcAddress( *p_hmsdmo_dll, "DllGetClassObject" );
652     if (!GetClass)
653     {
654         msg_Dbg( p_this, "GetProcAddress failed to find DllGetClassObject()" );
655         FreeLibrary( *p_hmsdmo_dll );
656         return VLC_EGENERIC;
657     }
658
659     i_err = GetClass( codecs_table[i_codec].p_guid, &IID_IClassFactory,
660                       (void**)&cFactory );
661     if( i_err || cFactory == NULL )
662     {
663         msg_Dbg( p_this, "no such class object" );
664         FreeLibrary( *p_hmsdmo_dll );
665         return VLC_EGENERIC;
666     }
667
668     i_err = cFactory->vt->CreateInstance( cFactory, 0, &IID_IUnknown,
669                                           (void**)&cObject );
670     cFactory->vt->Release( (IUnknown*)cFactory );
671     if( i_err || !cObject )
672     {
673         msg_Dbg( p_this, "class factory failure" );
674         FreeLibrary( *p_hmsdmo_dll );
675         return VLC_EGENERIC;
676     }
677     i_err = cObject->vt->QueryInterface( cObject, &IID_IMediaObject,
678                                         (void**)pp_dmo );
679     cObject->vt->Release( (IUnknown*)cObject );
680     if( i_err || !*pp_dmo )
681     {
682         msg_Dbg( p_this, "QueryInterface failure" );
683         FreeLibrary( *p_hmsdmo_dll );
684         return VLC_EGENERIC;
685     }
686
687     return VLC_SUCCESS;
688 }
689
690 /*****************************************************************************
691  * DecoderClose: close codec
692  *****************************************************************************/
693 void DecoderClose( vlc_object_t *p_this )
694 {
695     decoder_t *p_dec = (decoder_t*)p_this;
696     decoder_sys_t *p_sys = p_dec->p_sys;
697
698     if( !p_sys ) return;
699
700     if( p_sys->p_dmo ) p_sys->p_dmo->vt->Release( (IUnknown *)p_sys->p_dmo );
701     FreeLibrary( p_sys->hmsdmo_dll );
702
703 #ifdef LOADER
704 #if 0
705     Restore_LDT_Keeper( p_sys->ldt_fs );
706 #endif
707 #else
708     /* Uninitialize OLE/COM */
709     CoUninitialize();
710 #endif
711
712     if( p_sys->p_buffer ) free( p_sys->p_buffer );
713     free( p_sys );
714 }
715
716 /****************************************************************************
717  * DecodeBlock: the whole thing
718  ****************************************************************************
719  * This function must be fed with ogg packets.
720  ****************************************************************************/
721 static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
722 {
723     decoder_sys_t *p_sys = p_dec->p_sys;
724     block_t *p_block;
725     int i_result;
726
727     DMO_OUTPUT_DATA_BUFFER db;
728     CMediaBuffer *p_out;
729     block_t block_out;
730     uint32_t i_status;
731
732     if( p_sys == NULL )
733     {
734         if( DecOpen( VLC_OBJECT(p_dec) ) )
735         {
736             msg_Err( p_dec, "DecOpen failed" );
737             return NULL;
738         }
739         p_sys = p_dec->p_sys;
740     }
741
742     if( !pp_block ) return NULL;
743
744     p_block = *pp_block;
745
746     /* Won't work with streams with B-frames, but do we have any ? */
747     if( p_block && p_block->i_pts <= 0 ) p_block->i_pts = p_block->i_dts;
748
749     /* Date management */
750     if( p_block && p_block->i_pts > 0 &&
751         p_block->i_pts != date_Get( &p_sys->end_date ) )
752     {
753         date_Set( &p_sys->end_date, p_block->i_pts );
754     }
755
756 #if 0 /* Breaks the video decoding */
757     if( !date_Get( &p_sys->end_date ) )
758     {
759         /* We've just started the stream, wait for the first PTS. */
760         if( p_block ) block_Release( p_block );
761         return NULL;
762     }
763 #endif
764
765     /* Feed input to the DMO */
766     if( p_block && p_block->i_buffer )
767     {
768         CMediaBuffer *p_in;
769
770         p_in = CMediaBufferCreate( p_block, p_block->i_buffer, VLC_TRUE );
771
772         i_result = p_sys->p_dmo->vt->ProcessInput( p_sys->p_dmo, 0,
773                        (IMediaBuffer *)p_in, DMO_INPUT_DATA_BUFFERF_SYNCPOINT,
774                        0, 0 );
775
776         p_in->vt->Release( (IUnknown *)p_in );
777
778         if( i_result == S_FALSE )
779         {
780             /* No output generated */
781 #ifdef DMO_DEBUG
782             msg_Dbg( p_dec, "ProcessInput(): no output generated" );
783 #endif
784             return NULL;
785         }
786         else if( i_result == DMO_E_NOTACCEPTING )
787         {
788             /* Need to call ProcessOutput */
789             msg_Dbg( p_dec, "ProcessInput(): not accepting" );
790         }
791         else if( i_result != S_OK )
792         {
793             msg_Dbg( p_dec, "ProcessInput(): failed" );
794             return NULL;
795         }
796         else
797         {
798             //msg_Dbg( p_dec, "ProcessInput(): successful" );
799             *pp_block = 0;
800         }
801     }
802     else if( p_block && !p_block->i_buffer )
803     {
804         block_Release( p_block );
805         *pp_block = 0;
806     }
807
808     /* Get output from the DMO */
809     block_out.p_buffer = p_sys->p_buffer;
810     block_out.i_buffer = 0;
811
812     p_out = CMediaBufferCreate( &block_out, p_sys->i_min_output, VLC_FALSE );
813     memset( &db, 0, sizeof(db) );
814     db.pBuffer = (IMediaBuffer *)p_out;
815
816     i_result = p_sys->p_dmo->vt->ProcessOutput( p_sys->p_dmo,
817                    DMO_PROCESS_OUTPUT_DISCARD_WHEN_NO_BUFFER,
818                    1, &db, &i_status );
819
820     if( i_result != S_OK )
821     {
822         if( i_result != S_FALSE )
823             msg_Dbg( p_dec, "ProcessOutput(): failed" );
824 #if DMO_DEBUG
825         else
826             msg_Dbg( p_dec, "ProcessOutput(): no output" );
827 #endif
828
829         p_out->vt->Release( (IUnknown *)p_out );
830         return NULL;
831     }
832
833 #if DMO_DEBUG
834     msg_Dbg( p_dec, "ProcessOutput(): success" );
835 #endif
836
837     if( !block_out.i_buffer )
838     {
839 #if DMO_DEBUG
840         msg_Dbg( p_dec, "ProcessOutput(): no output (i_buffer_out == 0)" );
841 #endif
842         p_out->vt->Release( (IUnknown *)p_out );
843         return NULL;
844     }
845
846     if( p_dec->fmt_out.i_cat == VIDEO_ES )
847     {
848         /* Get a new picture */
849         picture_t *p_pic = p_dec->pf_vout_buffer_new( p_dec );
850         if( !p_pic ) return NULL;
851
852         CopyPicture( p_dec, p_pic, block_out.p_buffer );
853
854         /* Date management */
855         p_pic->date = date_Get( &p_sys->end_date );
856         date_Increment( &p_sys->end_date, 1 );
857
858         p_out->vt->Release( (IUnknown *)p_out );
859
860         return p_pic;
861     }
862     else
863     {
864         aout_buffer_t *p_aout_buffer;
865         int i_samples = block_out.i_buffer /
866             ( p_dec->fmt_out.audio.i_bitspersample *
867               p_dec->fmt_out.audio.i_channels / 8 );
868
869         p_aout_buffer = p_dec->pf_aout_buffer_new( p_dec, i_samples );
870         memcpy( p_aout_buffer->p_buffer,
871                 block_out.p_buffer, block_out.i_buffer );
872
873         /* Date management */
874         p_aout_buffer->start_date = date_Get( &p_sys->end_date );
875         p_aout_buffer->end_date =
876             date_Increment( &p_sys->end_date, i_samples );
877
878         p_out->vt->Release( (IUnknown *)p_out );
879
880         return p_aout_buffer;
881     }
882
883     return NULL;
884 }
885
886 static void CopyPicture( decoder_t *p_dec, picture_t *p_pic, uint8_t *p_in )
887 {
888     int i_plane, i_line, i_width, i_dst_stride;
889     uint8_t *p_dst, *p_src = p_in;
890
891     p_dst = p_pic->p[1].p_pixels;
892     p_pic->p[1].p_pixels = p_pic->p[2].p_pixels;
893     p_pic->p[2].p_pixels = p_dst;
894
895     for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
896     {
897         p_dst = p_pic->p[i_plane].p_pixels;
898         i_width = p_pic->p[i_plane].i_visible_pitch;
899         i_dst_stride  = p_pic->p[i_plane].i_pitch;
900
901         for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines; i_line++ )
902         {
903             p_dec->p_vlc->pf_memcpy( p_dst, p_src, i_width );
904             p_src += i_width;
905             p_dst += i_dst_stride;
906         }
907     }
908
909     p_dst = p_pic->p[1].p_pixels;
910     p_pic->p[1].p_pixels = p_pic->p[2].p_pixels;
911     p_pic->p[2].p_pixels = p_dst;
912 }
913
914 /****************************************************************************
915  * Encoder descriptor declaration
916  ****************************************************************************/
917 struct encoder_sys_t
918 {
919     HINSTANCE hmsdmo_dll;
920     IMediaObject *p_dmo;
921
922     int i_min_output;
923
924     date_t end_date;
925
926 #ifdef LOADER
927     ldt_fs_t    *ldt_fs;
928 #endif
929 };
930
931 /*****************************************************************************
932  * EncoderOpen: open dmo codec
933  *****************************************************************************/
934 static int EncoderOpen( vlc_object_t *p_this )
935 {
936     encoder_t *p_enc = (encoder_t*)p_this;
937
938 #ifndef LOADER
939     int i_ret = EncOpen( p_this );
940     if( i_ret != VLC_SUCCESS ) return i_ret;
941
942 #else
943     /* We can't open it now, because of ldt_keeper or something
944      * Open/Encode/Close has to be done in the same thread */
945     int i;
946
947     /* Probe if we support it */
948     for( i = 0; encoders_table[i].i_fourcc != 0; i++ )
949     {
950         if( encoders_table[i].i_fourcc == p_enc->fmt_out.i_codec )
951         {
952             msg_Dbg( p_enc, "DMO codec for %4.4s may work with dll=%s",
953                      (char*)&p_enc->fmt_out.i_codec,
954                      encoders_table[i].psz_dll );
955             break;
956         }
957     }
958
959     p_enc->p_sys = NULL;
960     if( !encoders_table[i].i_fourcc ) return VLC_EGENERIC;
961 #endif /* LOADER */
962
963     /* Set callbacks */
964     p_enc->pf_encode_video = (block_t *(*)(encoder_t *, picture_t *))
965         EncodeBlock;
966     p_enc->pf_encode_audio = (block_t *(*)(encoder_t *, aout_buffer_t *))
967         EncodeBlock;
968
969     return VLC_SUCCESS;
970 }
971
972 /*****************************************************************************
973  * EncoderSetVideoType: configures the input and output types of the dmo
974  *****************************************************************************/
975 static int EncoderSetVideoType( encoder_t *p_enc, IMediaObject *p_dmo )
976 {
977     int i, i_selected, i_err;
978     DMO_MEDIA_TYPE dmo_type;
979     VIDEOINFOHEADER vih, *p_vih;
980     BITMAPINFOHEADER *p_bih;
981
982     /* FIXME */
983     p_enc->fmt_in.video.i_bits_per_pixel = 
984         p_enc->fmt_out.video.i_bits_per_pixel = 12;
985
986     /* Enumerate input format (for debug output) */
987     i = 0;
988     while( !p_dmo->vt->GetInputType( p_dmo, 0, i++, &dmo_type ) )
989     {
990         p_vih = (VIDEOINFOHEADER *)dmo_type.pbFormat;
991
992         msg_Dbg( p_enc, "available input chroma: %4.4s",
993                  (char *)&dmo_type.subtype.Data1 );
994         if( !memcmp( &dmo_type.subtype, &MEDIASUBTYPE_RGB565, 16 ) )
995             msg_Dbg( p_enc, "-> MEDIASUBTYPE_RGB565" );
996         if( !memcmp( &dmo_type.subtype, &MEDIASUBTYPE_RGB24, 16 ) )
997             msg_Dbg( p_enc, "-> MEDIASUBTYPE_RGB24" );
998
999         DMOFreeMediaType( &dmo_type );
1000     }
1001
1002     /* Setup input format */
1003     memset( &dmo_type, 0, sizeof(dmo_type) );
1004     dmo_type.pUnk = 0;
1005     memset( &vih, 0, sizeof(VIDEOINFOHEADER) );
1006
1007     p_bih = &vih.bmiHeader;
1008     p_bih->biCompression = VLC_FOURCC('I','4','2','0');
1009     p_bih->biWidth = p_enc->fmt_in.video.i_width;
1010     p_bih->biHeight = p_enc->fmt_in.video.i_height;
1011     p_bih->biBitCount = p_enc->fmt_in.video.i_bits_per_pixel;
1012     p_bih->biSizeImage = p_enc->fmt_in.video.i_width *
1013         p_enc->fmt_in.video.i_height * p_enc->fmt_in.video.i_bits_per_pixel /8;
1014     p_bih->biPlanes = 3;
1015     p_bih->biSize = sizeof(BITMAPINFOHEADER);
1016
1017     vih.rcSource.left = vih.rcSource.top = 0;
1018     vih.rcSource.right = p_enc->fmt_in.video.i_width;
1019     vih.rcSource.bottom = p_enc->fmt_in.video.i_height;
1020     vih.rcTarget = vih.rcSource;
1021
1022     vih.AvgTimePerFrame = I64C(10000000) / 25; //FIXME
1023
1024     dmo_type.majortype = MEDIATYPE_Video;
1025     //dmo_type.subtype = MEDIASUBTYPE_RGB24;
1026     dmo_type.subtype = MEDIASUBTYPE_I420;
1027     //dmo_type.subtype.Data1 = p_bih->biCompression;
1028     dmo_type.formattype = FORMAT_VideoInfo;
1029     dmo_type.bFixedSizeSamples = TRUE;
1030     dmo_type.bTemporalCompression = FALSE;
1031     dmo_type.lSampleSize = p_bih->biSizeImage;
1032     dmo_type.cbFormat = sizeof(VIDEOINFOHEADER);
1033     dmo_type.pbFormat = (char *)&vih;
1034
1035     if( ( i_err = p_dmo->vt->SetInputType( p_dmo, 0, &dmo_type, 0 ) ) )
1036     {
1037         msg_Err( p_enc, "can't set DMO input type: %x", i_err );
1038         return VLC_EGENERIC;
1039     }
1040
1041     msg_Dbg( p_enc, "successfully set input type" );
1042
1043     /* Setup output format */
1044     memset( &dmo_type, 0, sizeof(dmo_type) );
1045     dmo_type.pUnk = 0;
1046
1047     /* Enumerate output types */
1048     i = 0, i_selected = -1;
1049     while( !p_dmo->vt->GetOutputType( p_dmo, 0, i++, &dmo_type ) )
1050     {
1051         p_vih = (VIDEOINFOHEADER *)dmo_type.pbFormat;
1052
1053         msg_Dbg( p_enc, "available output codec: %4.4s",
1054                  (char *)&dmo_type.subtype.Data1 );
1055
1056         if( p_vih->bmiHeader.biCompression == p_enc->fmt_out.i_codec )
1057             i_selected = i - 1;
1058
1059         DMOFreeMediaType( &dmo_type );
1060     }
1061
1062     if( i_selected < 0 )
1063     {
1064         msg_Err( p_enc, "couldn't find codec: %4.4s",
1065                  (char *)&p_enc->fmt_out.i_codec );
1066         return VLC_EGENERIC;
1067     }
1068
1069     p_dmo->vt->GetOutputType( p_dmo, 0, i_selected, &dmo_type );
1070     ((VIDEOINFOHEADER *)dmo_type.pbFormat)->dwBitRate =
1071         p_enc->fmt_out.i_bitrate;
1072
1073     /* Get the private data for the codec */
1074     while( 1 )
1075     {
1076         IWMCodecPrivateData *p_privdata;
1077         VIDEOINFOHEADER *p_vih;
1078         uint8_t *p_data = 0;
1079         uint32_t i_data = 0, i_vih;
1080
1081         i_err = p_dmo->vt->QueryInterface( (IUnknown *)p_dmo,
1082                                            &IID_IWMCodecPrivateData,
1083                                            (void **)&p_privdata );
1084         if( i_err ) break;
1085
1086         i_err = p_privdata->vt->SetPartialOutputType( p_privdata, &dmo_type );
1087         if( i_err )
1088         {
1089             msg_Err( p_enc, "SetPartialOutputType() failed" );
1090             p_privdata->vt->Release( (IUnknown *)p_privdata );
1091             break;
1092         }
1093
1094         i_err = p_privdata->vt->GetPrivateData( p_privdata, NULL, &i_data );
1095         if( i_err )
1096         {
1097             msg_Err( p_enc, "GetPrivateData() failed" );
1098             p_privdata->vt->Release( (IUnknown *)p_privdata );
1099             break;
1100         }
1101
1102         p_data = malloc( i_data );
1103         i_err = p_privdata->vt->GetPrivateData( p_privdata, p_data, &i_data );
1104
1105         /* Update the media type with the private data */
1106         i_vih = dmo_type.cbFormat + i_data;
1107         p_vih = CoTaskMemAlloc( i_vih );
1108         memcpy( p_vih, dmo_type.pbFormat, dmo_type.cbFormat );
1109         memcpy( ((uint8_t *)p_vih) + dmo_type.cbFormat, p_data, i_data );
1110         DMOFreeMediaType( &dmo_type );
1111         dmo_type.pbFormat = p_vih;
1112         dmo_type.cbFormat = i_vih;
1113
1114         msg_Dbg( p_enc, "found extra data: %i", i_data );
1115         p_enc->fmt_out.i_extra = i_data;
1116         p_enc->fmt_out.p_extra = p_data;
1117         break;
1118     }
1119
1120     i_err = p_dmo->vt->SetOutputType( p_dmo, 0, &dmo_type, 0 );
1121
1122     p_vih = (VIDEOINFOHEADER *)dmo_type.pbFormat;
1123     p_enc->fmt_in.i_codec = VLC_FOURCC('I','4','2','0');
1124
1125     DMOFreeMediaType( &dmo_type );
1126     if( i_err )
1127     {
1128         msg_Err( p_enc, "can't set DMO output type: %i", i_err );
1129         return VLC_EGENERIC;
1130     }
1131
1132     msg_Dbg( p_enc, "successfully set output type" );
1133     return VLC_SUCCESS;
1134 }
1135
1136 /*****************************************************************************
1137  * EncoderSetAudioType: configures the input and output types of the dmo
1138  *****************************************************************************/
1139 static int EncoderSetAudioType( encoder_t *p_enc, IMediaObject *p_dmo )
1140 {
1141     int i, i_selected, i_err;
1142     unsigned int i_last_byterate;
1143     uint16_t i_tag;
1144     DMO_MEDIA_TYPE dmo_type;
1145     WAVEFORMATEX *p_wf;
1146
1147     /* Setup the format structure */
1148     fourcc_to_wf_tag( p_enc->fmt_out.i_codec, &i_tag );
1149     if( i_tag == 0 ) return VLC_EGENERIC;
1150
1151     p_enc->fmt_in.i_codec = AOUT_FMT_S16_NE;
1152     p_enc->fmt_in.audio.i_bitspersample = 16;
1153
1154     /* We first need to choose an output type from the predefined
1155      * list of choices (we cycle through the list to select the best match) */
1156     i = 0; i_selected = -1; i_last_byterate = 0;
1157     while( !p_dmo->vt->GetOutputType( p_dmo, 0, i++, &dmo_type ) )
1158     {
1159         p_wf = (WAVEFORMATEX *)dmo_type.pbFormat;
1160         msg_Dbg( p_enc, "available format :%i, sample rate: %i, channels: %i, "
1161                  "bits per sample: %i, bitrate: %i, blockalign: %i",
1162                  (int) p_wf->wFormatTag, (int)p_wf->nSamplesPerSec,
1163                  (int)p_wf->nChannels, (int)p_wf->wBitsPerSample,
1164                  (int)p_wf->nAvgBytesPerSec * 8, (int)p_wf->nBlockAlign );
1165
1166         if( p_wf->wFormatTag == i_tag &&
1167             p_wf->nSamplesPerSec == p_enc->fmt_in.audio.i_rate &&
1168             p_wf->nChannels == p_enc->fmt_in.audio.i_channels &&
1169             p_wf->wBitsPerSample == p_enc->fmt_in.audio.i_bitspersample )
1170         {
1171             if( (int)p_wf->nAvgBytesPerSec <
1172                 p_enc->fmt_out.i_bitrate * 110 / 800 /* + 10% */ &&
1173                 p_wf->nAvgBytesPerSec > i_last_byterate )
1174             {
1175                 i_selected = i - 1;
1176                 i_last_byterate = p_wf->nAvgBytesPerSec;
1177                 msg_Dbg( p_enc, "selected entry %i (bitrate: %i)",
1178                          i_selected, p_wf->nAvgBytesPerSec * 8 );
1179             }
1180         }
1181
1182         DMOFreeMediaType( &dmo_type );
1183     }
1184
1185     if( i_selected < 0 )
1186     {
1187         msg_Err( p_enc, "couldn't find a matching ouput" );
1188         return VLC_EGENERIC;
1189     }
1190
1191     p_dmo->vt->GetOutputType( p_dmo, 0, i_selected, &dmo_type );
1192     p_wf = (WAVEFORMATEX *)dmo_type.pbFormat;
1193
1194     msg_Dbg( p_enc, "selected format: %i, sample rate:%i, "
1195              "channels: %i, bits per sample: %i, bitrate: %i, blockalign: %i",
1196              (int)p_wf->wFormatTag, (int)p_wf->nSamplesPerSec,
1197              (int)p_wf->nChannels, (int)p_wf->wBitsPerSample,
1198              (int)p_wf->nAvgBytesPerSec * 8, (int)p_wf->nBlockAlign );
1199
1200     p_enc->fmt_out.audio.i_rate = p_wf->nSamplesPerSec;
1201     p_enc->fmt_out.audio.i_channels = p_wf->nChannels;
1202     p_enc->fmt_out.audio.i_bitspersample = p_wf->wBitsPerSample;
1203     p_enc->fmt_out.audio.i_blockalign = p_wf->nBlockAlign;
1204     p_enc->fmt_out.i_bitrate = p_wf->nAvgBytesPerSec * 8;
1205
1206     if( p_wf->cbSize )
1207     {
1208         msg_Dbg( p_enc, "found cbSize: %i", p_wf->cbSize );
1209         p_enc->fmt_out.i_extra = p_wf->cbSize;
1210         p_enc->fmt_out.p_extra = malloc( p_enc->fmt_out.i_extra );
1211         memcpy( p_enc->fmt_out.p_extra, &p_wf[1], p_enc->fmt_out.i_extra );
1212     }
1213
1214     i_err = p_dmo->vt->SetOutputType( p_dmo, 0, &dmo_type, 0 );
1215     DMOFreeMediaType( &dmo_type );
1216
1217     if( i_err )
1218     {
1219         msg_Err( p_enc, "can't set DMO output type: %i", i_err );
1220         return VLC_EGENERIC;
1221     }
1222
1223     msg_Dbg( p_enc, "successfully set output type" );
1224
1225     /* Setup the input type */
1226     i = 0; i_selected = -1;
1227     while( !p_dmo->vt->GetInputType( p_dmo, 0, i++, &dmo_type ) )
1228     {
1229         p_wf = (WAVEFORMATEX *)dmo_type.pbFormat;
1230         msg_Dbg( p_enc, "available format :%i, sample rate: %i, channels: %i, "
1231                  "bits per sample: %i, bitrate: %i, blockalign: %i",
1232                  (int) p_wf->wFormatTag, (int)p_wf->nSamplesPerSec,
1233                  (int)p_wf->nChannels, (int)p_wf->wBitsPerSample,
1234                  (int)p_wf->nAvgBytesPerSec * 8, (int)p_wf->nBlockAlign );
1235
1236         if( p_wf->wFormatTag == WAVE_FORMAT_PCM &&
1237             p_wf->nSamplesPerSec == p_enc->fmt_in.audio.i_rate &&
1238             p_wf->nChannels == p_enc->fmt_in.audio.i_channels &&
1239             p_wf->wBitsPerSample == p_enc->fmt_in.audio.i_bitspersample )
1240         {
1241             i_selected = i - 1;
1242         }
1243
1244         DMOFreeMediaType( &dmo_type );
1245     }
1246
1247     if( i_selected < 0 )
1248     {
1249         msg_Err( p_enc, "couldn't find a matching input" );
1250         return VLC_EGENERIC;
1251     }
1252
1253     p_dmo->vt->GetInputType( p_dmo, 0, i_selected, &dmo_type );
1254     i_err = p_dmo->vt->SetInputType( p_dmo, 0, &dmo_type, 0 );
1255     DMOFreeMediaType( &dmo_type );
1256     if( i_err )
1257     {
1258         msg_Err( p_enc, "can't set DMO input type: %x", i_err );
1259         return VLC_EGENERIC;
1260     }
1261     msg_Dbg( p_enc, "successfully set input type" );
1262
1263     return VLC_SUCCESS;
1264 }
1265
1266 /*****************************************************************************
1267  * EncOpen: open dmo codec
1268  *****************************************************************************/
1269 static int EncOpen( vlc_object_t *p_this )
1270 {
1271     encoder_t *p_enc = (encoder_t*)p_this;
1272     encoder_sys_t *p_sys = NULL;
1273     IMediaObject *p_dmo = NULL;
1274     HINSTANCE hmsdmo_dll = NULL;
1275
1276 #ifdef LOADER
1277     ldt_fs_t *ldt_fs = Setup_LDT_Keeper();
1278 #else
1279     /* Initialize OLE/COM */
1280     CoInitialize( 0 );
1281 #endif /* LOADER */
1282
1283     if( LoadDMO( p_this, &hmsdmo_dll, &p_dmo, &p_enc->fmt_out, VLC_TRUE )
1284         != VLC_SUCCESS )
1285     {
1286         hmsdmo_dll = 0;
1287         p_dmo = 0;
1288         goto error;
1289     }
1290
1291     if( p_enc->fmt_in.i_cat == VIDEO_ES )
1292     {
1293         if( EncoderSetVideoType( p_enc, p_dmo ) != VLC_SUCCESS ) goto error;
1294     }
1295     else
1296     {
1297         if( EncoderSetAudioType( p_enc, p_dmo ) != VLC_SUCCESS ) goto error;
1298     }
1299
1300     /* Allocate the memory needed to store the decoder's structure */
1301     if( ( p_enc->p_sys = p_sys =
1302           (encoder_sys_t *)malloc(sizeof(encoder_sys_t)) ) == NULL )
1303     {
1304         msg_Err( p_enc, "out of memory" );
1305         goto error;
1306     }
1307
1308     p_sys->hmsdmo_dll = hmsdmo_dll;
1309     p_sys->p_dmo = p_dmo;
1310 #ifdef LOADER
1311     p_sys->ldt_fs = ldt_fs;
1312 #endif
1313
1314     /* Find out some properties of the inputput */
1315     {
1316         uint32_t i_size, i_align, dum;
1317
1318         if( p_dmo->vt->GetInputSizeInfo( p_dmo, 0, &i_size, &i_align, &dum ) )
1319             msg_Err( p_enc, "GetInputSizeInfo() failed" );
1320         else
1321             msg_Dbg( p_enc, "GetInputSizeInfo(): bytes %i, align %i, %i",
1322                      i_size, i_align, dum );
1323     }
1324
1325     /* Find out some properties of the output */
1326     {
1327         uint32_t i_size, i_align;
1328
1329         p_sys->i_min_output = 0;
1330         if( p_dmo->vt->GetOutputSizeInfo( p_dmo, 0, &i_size, &i_align ) )
1331         {
1332             msg_Err( p_enc, "GetOutputSizeInfo() failed" );
1333             goto error;
1334         }
1335         else
1336         {
1337             msg_Dbg( p_enc, "GetOutputSizeInfo(): bytes %i, align %i",
1338                      i_size, i_align );
1339             p_sys->i_min_output = i_size;
1340         }
1341     }
1342
1343     /* Set output properties */
1344     p_enc->fmt_out.i_cat = p_enc->fmt_out.i_cat;
1345     if( p_enc->fmt_out.i_cat == AUDIO_ES )
1346         date_Init( &p_sys->end_date, p_enc->fmt_out.audio.i_rate, 1 );
1347     else
1348         date_Init( &p_sys->end_date, 25 /* FIXME */, 1 );
1349
1350     return VLC_SUCCESS;
1351
1352  error:
1353
1354     if( p_dmo ) p_dmo->vt->Release( (IUnknown *)p_dmo );
1355     if( hmsdmo_dll ) FreeLibrary( hmsdmo_dll );
1356
1357 #ifdef LOADER
1358     Restore_LDT_Keeper( ldt_fs );
1359 #else
1360     /* Uninitialize OLE/COM */
1361     CoUninitialize();
1362 #endif /* LOADER */
1363
1364     if( p_sys ) free( p_sys );
1365
1366     return VLC_EGENERIC;
1367 }
1368
1369 /****************************************************************************
1370  * Encode: the whole thing
1371  ****************************************************************************/
1372 static block_t *EncodeBlock( encoder_t *p_enc, void *p_data )
1373 {
1374     encoder_sys_t *p_sys = p_enc->p_sys;
1375     CMediaBuffer *p_in;
1376     block_t *p_chain = NULL;
1377     block_t *p_block_in;
1378     uint32_t i_status;
1379     int i_result;
1380     mtime_t i_pts;
1381
1382     if( p_sys == NULL )
1383     {
1384         if( EncOpen( VLC_OBJECT(p_enc) ) )
1385         {
1386             msg_Err( p_enc, "EncOpen failed" );
1387             return NULL;
1388         }
1389         p_sys = p_enc->p_sys;
1390     }
1391
1392     if( !p_data ) return NULL;
1393
1394     if( p_enc->fmt_out.i_cat == VIDEO_ES )
1395     {
1396         /* Get picture data */
1397         int i_plane, i_line, i_width, i_src_stride;
1398         picture_t *p_pic = (picture_t *)p_data;
1399         uint8_t *p_dst;
1400
1401         int i_buffer = p_enc->fmt_in.video.i_width *
1402             p_enc->fmt_in.video.i_height *
1403             p_enc->fmt_in.video.i_bits_per_pixel / 8;
1404
1405         p_block_in = block_New( p_enc, i_buffer );
1406
1407         /* Copy picture stride by stride */
1408         p_dst = p_block_in->p_buffer;
1409         for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
1410         {
1411             uint8_t *p_src = p_pic->p[i_plane].p_pixels;
1412             i_width = p_pic->p[i_plane].i_visible_pitch;
1413             i_src_stride = p_pic->p[i_plane].i_pitch;
1414
1415             for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines;
1416                  i_line++ )
1417             {
1418                 p_enc->p_vlc->pf_memcpy( p_dst, p_src, i_width );
1419                 p_dst += i_width;
1420                 p_src += i_src_stride;
1421             }
1422         }
1423
1424         i_pts = p_pic->date;
1425     }
1426     else
1427     {
1428         aout_buffer_t *p_aout_buffer = (aout_buffer_t *)p_data;
1429         p_block_in = block_New( p_enc, p_aout_buffer->i_nb_bytes );
1430         memcpy( p_block_in->p_buffer, p_aout_buffer->p_buffer,
1431                 p_block_in->i_buffer );
1432
1433         i_pts = p_aout_buffer->start_date;
1434     }
1435
1436     /* Feed input to the DMO */
1437     p_in = CMediaBufferCreate( p_block_in, p_block_in->i_buffer, VLC_TRUE );
1438     i_result = p_sys->p_dmo->vt->ProcessInput( p_sys->p_dmo, 0,
1439        (IMediaBuffer *)p_in, DMO_INPUT_DATA_BUFFERF_TIME, i_pts * 10, 0 );
1440
1441     p_in->vt->Release( (IUnknown *)p_in );
1442     if( i_result == S_FALSE )
1443     {
1444         /* No output generated */
1445 #ifdef DMO_DEBUG
1446         msg_Dbg( p_enc, "ProcessInput(): no output generated "I64Fd, i_pts );
1447 #endif
1448         return NULL;
1449     }
1450     else if( i_result == DMO_E_NOTACCEPTING )
1451     {
1452         /* Need to call ProcessOutput */
1453         msg_Dbg( p_enc, "ProcessInput(): not accepting" );
1454     }
1455     else if( i_result != S_OK )
1456     {
1457         msg_Dbg( p_enc, "ProcessInput(): failed: %x", i_result );
1458         return NULL;
1459     }
1460
1461 #if DMO_DEBUG
1462     msg_Dbg( p_enc, "ProcessInput(): success" );
1463 #endif
1464
1465     /* Get output from the DMO */
1466     while( 1 )
1467     {
1468         DMO_OUTPUT_DATA_BUFFER db;
1469         block_t *p_block_out;
1470         CMediaBuffer *p_out;
1471
1472         p_block_out = block_New( p_enc, p_sys->i_min_output );
1473         p_block_out->i_buffer = 0;
1474         p_out = CMediaBufferCreate(p_block_out, p_sys->i_min_output, VLC_FALSE);
1475         memset( &db, 0, sizeof(db) );
1476         db.pBuffer = (IMediaBuffer *)p_out;
1477
1478         i_result = p_sys->p_dmo->vt->ProcessOutput( p_sys->p_dmo,
1479                                                     0, 1, &db, &i_status );
1480
1481         if( i_result != S_OK )
1482         {
1483             if( i_result != S_FALSE )
1484                 msg_Dbg( p_enc, "ProcessOutput(): failed: %x", i_result );
1485 #if DMO_DEBUG
1486             else
1487                 msg_Dbg( p_enc, "ProcessOutput(): no output" );
1488 #endif
1489
1490             p_out->vt->Release( (IUnknown *)p_out );
1491             block_Release( p_block_out );
1492             return p_chain;
1493         }
1494
1495         if( !p_block_out->i_buffer )
1496         {
1497 #if DMO_DEBUG
1498             msg_Dbg( p_enc, "ProcessOutput(): no output (i_buffer_out == 0)" );
1499 #endif
1500             p_out->vt->Release( (IUnknown *)p_out );
1501             block_Release( p_block_out );
1502             return p_chain;
1503         }
1504
1505         if( db.dwStatus & DMO_OUTPUT_DATA_BUFFERF_TIME )
1506         {
1507 #if DMO_DEBUG
1508             msg_Dbg( p_enc, "ProcessOutput(): pts: "I64Fd", "I64Fd,
1509                      i_pts, db.rtTimestamp / 10 );
1510 #endif
1511             i_pts = db.rtTimestamp / 10;
1512         }
1513
1514         if( db.dwStatus & DMO_OUTPUT_DATA_BUFFERF_TIMELENGTH )
1515         {
1516             p_block_out->i_length = db.rtTimelength / 10;
1517 #if DMO_DEBUG
1518             msg_Dbg( p_enc, "ProcessOutput(): length: "I64Fd,
1519                      p_block_out->i_length );
1520 #endif
1521         }
1522
1523         if( p_enc->fmt_out.i_cat == VIDEO_ES )
1524         {
1525             if( db.dwStatus & DMO_OUTPUT_DATA_BUFFERF_SYNCPOINT )
1526                 p_block_out->i_flags |= BLOCK_FLAG_TYPE_I;
1527             else
1528                 p_block_out->i_flags |= BLOCK_FLAG_TYPE_P;
1529         }
1530
1531         p_block_out->i_dts = p_block_out->i_pts = i_pts;
1532         block_ChainAppend( &p_chain, p_block_out );
1533     }
1534 }
1535
1536 /*****************************************************************************
1537  * EncoderClose: close codec
1538  *****************************************************************************/
1539 void EncoderClose( vlc_object_t *p_this )
1540 {
1541     encoder_t *p_enc = (encoder_t*)p_this;
1542     encoder_sys_t *p_sys = p_enc->p_sys;
1543
1544     if( !p_sys ) return;
1545
1546     if( p_sys->p_dmo ) p_sys->p_dmo->vt->Release( (IUnknown *)p_sys->p_dmo );
1547     FreeLibrary( p_sys->hmsdmo_dll );
1548
1549 #ifdef LOADER
1550 #if 0
1551     Restore_LDT_Keeper( p_sys->ldt_fs );
1552 #endif
1553 #else
1554     /* Uninitialize OLE/COM */
1555     CoUninitialize();
1556 #endif
1557
1558     free( p_sys );
1559 }