Mercurial > mplayer.hg
annotate dll_init.c @ 630:5177e1ef2943
*** empty log message ***
author | gabucino |
---|---|
date | Tue, 24 Apr 2001 23:07:03 +0000 |
parents | eda2df9f985d |
children | 1e6e08593762 |
rev | line source |
---|---|
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
1 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
2 #include <stdio.h> |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
3 #include <stdlib.h> |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
4 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
5 #include "config.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
6 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
7 extern int verbose; // defined in mplayer.c |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
8 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
9 #include "stream.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
10 #include "demuxer.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
11 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
12 #include "loader.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
13 //#include "wine/mmreg.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
14 //#include "wine/vfw.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
15 #include "wine/avifmt.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
16 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
17 #include "codec-cfg.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
18 #include "stheader.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
19 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
20 #include "libvo/img_format.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
21 #include "linux/shmem.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
22 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
23 extern char* win32_codec_name; // must be set before calling DrvOpen() !!! |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
24 |
1 | 25 // ACM audio and VfW video codecs initialization |
26 // based on the avifile library [http://divx.euro.ru] | |
27 | |
296 | 28 int init_acm_audio_codec(sh_audio_t *sh_audio){ |
1 | 29 HRESULT ret; |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
414
diff
changeset
|
30 WAVEFORMATEX *in_fmt=sh_audio->wf; |
1 | 31 unsigned long srcsize=0; |
32 | |
33 if(verbose) printf("======= Win32 (ACM) AUDIO Codec init =======\n"); | |
34 | |
291 | 35 sh_audio->srcstream=NULL; |
1 | 36 |
37 // if(in_fmt->nSamplesPerSec==0){ printf("Bad WAVE header!\n");exit(1); } | |
38 // MSACM_RegisterAllDrivers(); | |
39 | |
291 | 40 sh_audio->o_wf.nChannels=in_fmt->nChannels; |
41 sh_audio->o_wf.nSamplesPerSec=in_fmt->nSamplesPerSec; | |
42 sh_audio->o_wf.nAvgBytesPerSec=2*sh_audio->o_wf.nSamplesPerSec*sh_audio->o_wf.nChannels; | |
43 sh_audio->o_wf.wFormatTag=WAVE_FORMAT_PCM; | |
44 sh_audio->o_wf.nBlockAlign=2*in_fmt->nChannels; | |
45 sh_audio->o_wf.wBitsPerSample=16; | |
46 sh_audio->o_wf.cbSize=0; | |
1 | 47 |
303 | 48 win32_codec_name = sh_audio->codec->dll; |
291 | 49 ret=acmStreamOpen(&sh_audio->srcstream,(HACMDRIVER)NULL, |
50 in_fmt,&sh_audio->o_wf, | |
1 | 51 NULL,0,0,0); |
52 if(ret){ | |
53 if(ret==ACMERR_NOTPOSSIBLE) | |
54 printf("ACM_Decoder: Unappropriate audio format\n"); | |
55 else | |
603 | 56 printf("ACM_Decoder: acmStreamOpen error %d", (int)ret); |
291 | 57 sh_audio->srcstream=NULL; |
1 | 58 return 0; |
59 } | |
60 if(verbose) printf("Audio codec opened OK! ;-)\n"); | |
61 | |
62 srcsize=in_fmt->nBlockAlign; | |
291 | 63 acmStreamSize(sh_audio->srcstream, srcsize, &srcsize, ACM_STREAMSIZEF_SOURCE); |
1 | 64 if(srcsize<OUTBURST) srcsize=OUTBURST; |
291 | 65 sh_audio->audio_out_minsize=srcsize; // audio output min. size |
603 | 66 if(verbose) printf("Audio ACM output buffer min. size: %ld\n",srcsize); |
1 | 67 |
291 | 68 acmStreamSize(sh_audio->srcstream, srcsize, &srcsize, ACM_STREAMSIZEF_DESTINATION); |
69 sh_audio->audio_in_minsize=srcsize; // audio input min. size | |
603 | 70 if(verbose) printf("Audio ACM input buffer min. size: %ld\n",srcsize); |
1 | 71 |
291 | 72 sh_audio->a_in_buffer_size=sh_audio->audio_in_minsize; |
73 sh_audio->a_in_buffer=malloc(sh_audio->a_in_buffer_size); | |
74 sh_audio->a_in_buffer_len=0; | |
92 | 75 |
1 | 76 return 1; |
77 } | |
78 | |
291 | 79 int acm_decode_audio(sh_audio_t *sh_audio, void* a_buffer,int len){ |
92 | 80 ACMSTREAMHEADER ash; |
81 HRESULT hr; | |
82 DWORD srcsize=0; | |
291 | 83 acmStreamSize(sh_audio->srcstream,len , &srcsize, ACM_STREAMSIZEF_DESTINATION); |
603 | 84 if(verbose>=3)printf("acm says: srcsize=%ld (buffsize=%d) out_size=%d\n",srcsize,sh_audio->a_in_buffer_size,len); |
291 | 85 // if(srcsize==0) srcsize=((WAVEFORMATEX *)&sh_audio->o_wf_ext)->nBlockAlign; |
86 if(srcsize>sh_audio->a_in_buffer_size) srcsize=sh_audio->a_in_buffer_size; // !!!!!! | |
87 if(sh_audio->a_in_buffer_len<srcsize){ | |
88 sh_audio->a_in_buffer_len+= | |
89 demux_read_data(sh_audio->ds,&sh_audio->a_in_buffer[sh_audio->a_in_buffer_len], | |
90 srcsize-sh_audio->a_in_buffer_len); | |
92 | 91 } |
92 memset(&ash, 0, sizeof(ash)); | |
93 ash.cbStruct=sizeof(ash); | |
94 ash.fdwStatus=0; | |
95 ash.dwUser=0; | |
291 | 96 ash.pbSrc=sh_audio->a_in_buffer; |
97 ash.cbSrcLength=sh_audio->a_in_buffer_len; | |
92 | 98 ash.pbDst=a_buffer; |
99 ash.cbDstLength=len; | |
291 | 100 hr=acmStreamPrepareHeader(sh_audio->srcstream,&ash,0); |
92 | 101 if(hr){ |
603 | 102 printf("ACM_Decoder: acmStreamPrepareHeader error %d\n",(int)hr); |
92 | 103 return -1; |
104 } | |
291 | 105 hr=acmStreamConvert(sh_audio->srcstream,&ash,0); |
92 | 106 if(hr){ |
603 | 107 printf("ACM_Decoder: acmStreamConvert error %d\n",(int)hr); |
92 | 108 return -1; |
109 } | |
110 //printf("ACM convert %d -> %d (buf=%d)\n",ash.cbSrcLengthUsed,ash.cbDstLengthUsed,a_in_buffer_len); | |
291 | 111 if(ash.cbSrcLengthUsed>=sh_audio->a_in_buffer_len){ |
112 sh_audio->a_in_buffer_len=0; | |
92 | 113 } else { |
291 | 114 sh_audio->a_in_buffer_len-=ash.cbSrcLengthUsed; |
115 memcpy(sh_audio->a_in_buffer,&sh_audio->a_in_buffer[ash.cbSrcLengthUsed],sh_audio->a_in_buffer_len); | |
92 | 116 } |
117 len=ash.cbDstLengthUsed; | |
291 | 118 hr=acmStreamUnprepareHeader(sh_audio->srcstream,&ash,0); |
92 | 119 if(hr){ |
603 | 120 printf("ACM_Decoder: acmStreamUnprepareHeader error %d\n",(int)hr); |
92 | 121 } |
122 return len; | |
123 } | |
124 | |
125 | |
1 | 126 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
489
diff
changeset
|
127 int init_video_codec(sh_video_t *sh_video){ |
1 | 128 HRESULT ret; |
489
2bb59b7c748a
BGR modes with VfW codecs fixed - biCompression must be 0 for BGR...
arpi_esp
parents:
469
diff
changeset
|
129 int yuv=0; |
303 | 130 unsigned int outfmt=sh_video->codec->outfmt[sh_video->outfmtidx]; |
1 | 131 |
132 if(verbose) printf("======= Win32 (VFW) VIDEO Codec init =======\n"); | |
133 | |
291 | 134 memset(&sh_video->o_bih, 0, sizeof(BITMAPINFOHEADER)); |
135 sh_video->o_bih.biSize = sizeof(BITMAPINFOHEADER); | |
1 | 136 |
303 | 137 win32_codec_name = sh_video->codec->dll; |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
414
diff
changeset
|
138 sh_video->hic = ICOpen( 0x63646976, sh_video->bih->biCompression, ICMODE_FASTDECOMPRESS); |
291 | 139 // sh_video->hic = ICOpen( 0x63646976, sh_video->bih.biCompression, ICMODE_DECOMPRESS); |
140 if(!sh_video->hic){ | |
1 | 141 printf("ICOpen failed! unknown codec / wrong parameters?\n"); |
142 return 0; | |
143 } | |
144 | |
291 | 145 // sh_video->bih.biBitCount=32; |
1 | 146 |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
414
diff
changeset
|
147 ret = ICDecompressGetFormat(sh_video->hic, sh_video->bih, &sh_video->o_bih); |
1 | 148 if(ret){ |
603 | 149 printf("ICDecompressGetFormat failed: Error %d\n", (int)ret); |
1 | 150 return 0; |
151 } | |
152 if(verbose) printf("ICDecompressGetFormat OK\n"); | |
153 | |
154 // printf("ICM_DECOMPRESS_QUERY=0x%X",ICM_DECOMPRESS_QUERY); | |
155 | |
291 | 156 // sh_video->o_bih.biWidth=sh_video->bih.biWidth; |
157 // sh_video->o_bih.biCompression = 0x32315659; // mmioFOURCC('U','Y','V','Y'); | |
158 // ret=ICDecompressGetFormatSize(sh_video->hic,&sh_video->o_bih); | |
159 // sh_video->o_bih.biCompression = 3; //0x32315659; | |
160 // sh_video->o_bih.biCompression = mmioFOURCC('U','Y','V','Y'); | |
161 // sh_video->o_bih.biCompression = mmioFOURCC('U','Y','V','Y'); | |
162 // sh_video->o_bih.biCompression = mmioFOURCC('Y','U','Y','2'); | |
163 // sh_video->o_bih.biPlanes=3; | |
164 // sh_video->o_bih.biBitCount=16; | |
1 | 165 |
408 | 166 |
167 switch (outfmt) { | |
168 | |
169 /* planar format */ | |
170 case IMGFMT_YV12: | |
171 case IMGFMT_I420: | |
172 case IMGFMT_IYUV: | |
173 sh_video->o_bih.biBitCount=12; | |
489
2bb59b7c748a
BGR modes with VfW codecs fixed - biCompression must be 0 for BGR...
arpi_esp
parents:
469
diff
changeset
|
174 yuv=1; |
467 | 175 break; |
1 | 176 |
408 | 177 /* packed format */ |
178 case IMGFMT_YUY2: | |
179 case IMGFMT_UYVY: | |
180 case IMGFMT_YVYU: | |
181 sh_video->o_bih.biBitCount=16; | |
489
2bb59b7c748a
BGR modes with VfW codecs fixed - biCompression must be 0 for BGR...
arpi_esp
parents:
469
diff
changeset
|
182 yuv=1; |
408 | 183 break; |
303 | 184 |
408 | 185 /* rgb/bgr format */ |
186 case IMGFMT_RGB8: | |
187 case IMGFMT_BGR8: | |
188 sh_video->o_bih.biBitCount=8; | |
189 break; | |
1 | 190 |
408 | 191 case IMGFMT_RGB15: |
192 case IMGFMT_RGB16: | |
193 case IMGFMT_BGR15: | |
194 case IMGFMT_BGR16: | |
195 sh_video->o_bih.biBitCount=16; | |
196 break; | |
197 | |
198 case IMGFMT_RGB24: | |
199 case IMGFMT_BGR24: | |
200 sh_video->o_bih.biBitCount=24; | |
201 break; | |
202 | |
203 case IMGFMT_RGB32: | |
204 case IMGFMT_BGR32: | |
205 sh_video->o_bih.biBitCount=32; | |
206 break; | |
1 | 207 |
408 | 208 default: |
209 printf("unsupported image format: 0x%x\n", outfmt); | |
210 return 0; | |
211 } | |
212 | |
213 sh_video->o_bih.biSizeImage = sh_video->o_bih.biWidth * sh_video->o_bih.biHeight * (sh_video->o_bih.biBitCount/8); | |
1 | 214 |
408 | 215 if(!(sh_video->codec->outflags[sh_video->outfmtidx]&CODECS_FLAG_FLIP)) { |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
414
diff
changeset
|
216 sh_video->o_bih.biHeight=-sh_video->bih->biHeight; // flip image! |
408 | 217 } |
1 | 218 |
489
2bb59b7c748a
BGR modes with VfW codecs fixed - biCompression must be 0 for BGR...
arpi_esp
parents:
469
diff
changeset
|
219 if(yuv && !(sh_video->codec->outflags[sh_video->outfmtidx] & CODECS_FLAG_YUVHACK)) |
408 | 220 sh_video->o_bih.biCompression = outfmt; |
1 | 221 |
222 if(verbose) { | |
223 printf("Starting decompression, format:\n"); | |
603 | 224 printf(" biSize %ld\n", sh_video->bih->biSize); |
225 printf(" biWidth %ld\n", sh_video->bih->biWidth); | |
226 printf(" biHeight %ld\n", sh_video->bih->biHeight); | |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
414
diff
changeset
|
227 printf(" biPlanes %d\n", sh_video->bih->biPlanes); |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
414
diff
changeset
|
228 printf(" biBitCount %d\n", sh_video->bih->biBitCount); |
603 | 229 printf(" biCompression 0x%lx ('%.4s')\n", sh_video->bih->biCompression, (char *)&sh_video->bih->biCompression); |
230 printf(" biSizeImage %ld\n", sh_video->bih->biSizeImage); | |
1 | 231 printf("Dest fmt:\n"); |
603 | 232 printf(" biSize %ld\n", sh_video->o_bih.biSize); |
233 printf(" biWidth %ld\n", sh_video->o_bih.biWidth); | |
234 printf(" biHeight %ld\n", sh_video->o_bih.biHeight); | |
291 | 235 printf(" biPlanes %d\n", sh_video->o_bih.biPlanes); |
236 printf(" biBitCount %d\n", sh_video->o_bih.biBitCount); | |
603 | 237 printf(" biCompression 0x%lx ('%.4s')\n", sh_video->o_bih.biCompression, (char *)&sh_video->o_bih.biCompression); |
238 printf(" biSizeImage %ld\n", sh_video->o_bih.biSizeImage); | |
1 | 239 } |
240 | |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
414
diff
changeset
|
241 ret = ICDecompressQuery(sh_video->hic, sh_video->bih, &sh_video->o_bih); |
1 | 242 if(ret){ |
603 | 243 printf("ICDecompressQuery failed: Error %d\n", (int)ret); |
1 | 244 return 0; |
245 } | |
246 if(verbose) printf("ICDecompressQuery OK\n"); | |
247 | |
248 | |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
414
diff
changeset
|
249 ret = ICDecompressBegin(sh_video->hic, sh_video->bih, &sh_video->o_bih); |
1 | 250 if(ret){ |
603 | 251 printf("ICDecompressBegin failed: Error %d\n", (int)ret); |
1 | 252 return 0; |
253 } | |
254 | |
255 #if 0 | |
256 | |
291 | 257 //sh_video->hic |
1 | 258 //ICSendMessage(HIC hic,unsigned int msg,long lParam1,long lParam2) |
259 { int i; | |
260 for(i=73;i<256;i++){ | |
261 printf("Calling ICM_USER+%d function...",i);fflush(stdout); | |
291 | 262 ret = ICSendMessage(sh_video->hic,ICM_USER+i,NULL,NULL); |
1 | 263 printf(" ret=%d\n",ret); |
264 } | |
265 } | |
266 #endif | |
267 | |
414 | 268 sh_video->our_out_buffer = shmem_alloc(sh_video->o_bih.biSizeImage); |
291 | 269 if(!sh_video->our_out_buffer){ |
603 | 270 printf("not enough memory for decoded picture buffer (%ld bytes)\n", sh_video->o_bih.biSizeImage); |
1 | 271 return 0; |
272 } | |
273 | |
489
2bb59b7c748a
BGR modes with VfW codecs fixed - biCompression must be 0 for BGR...
arpi_esp
parents:
469
diff
changeset
|
274 if(yuv && sh_video->codec->outflags[sh_video->outfmtidx] & CODECS_FLAG_YUVHACK) |
469 | 275 sh_video->o_bih.biCompression = outfmt; |
1 | 276 |
277 // avi_header.our_in_buffer=malloc(avi_header.video.dwSuggestedBufferSize); // FIXME!!!! | |
278 | |
279 if(verbose) printf("VIDEO CODEC Init OK!!! ;-)\n"); | |
280 return 1; | |
281 } |