2001-04-23 03:42:17 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2001-08-01 09:14:02 +00:00
|
|
|
#include <unistd.h>
|
2001-04-23 03:42:17 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
2001-08-17 00:40:25 +00:00
|
|
|
#include "mp_msg.h"
|
2001-09-26 21:35:14 +00:00
|
|
|
#include "help_mp.h"
|
2001-04-23 03:42:17 +00:00
|
|
|
|
|
|
|
#include "stream.h"
|
|
|
|
#include "demuxer.h"
|
|
|
|
|
|
|
|
#include "loader.h"
|
|
|
|
//#include "wine/mmreg.h"
|
2001-07-12 15:35:52 +00:00
|
|
|
#include "wine/vfw.h"
|
2001-04-23 03:42:17 +00:00
|
|
|
#include "wine/avifmt.h"
|
|
|
|
|
|
|
|
#include "codec-cfg.h"
|
|
|
|
#include "stheader.h"
|
|
|
|
|
2001-10-02 21:44:45 +00:00
|
|
|
#include "dll_init.h"
|
|
|
|
|
2001-04-23 03:42:17 +00:00
|
|
|
#include "libvo/img_format.h"
|
|
|
|
#include "linux/shmem.h"
|
|
|
|
|
2001-10-05 00:08:58 +00:00
|
|
|
extern int divx_quality;
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
// ACM audio and VfW video codecs initialization
|
|
|
|
// based on the avifile library [http://divx.euro.ru]
|
|
|
|
|
2001-04-06 16:31:18 +00:00
|
|
|
int init_acm_audio_codec(sh_audio_t *sh_audio){
|
2001-02-24 20:28:24 +00:00
|
|
|
HRESULT ret;
|
2001-04-15 14:33:49 +00:00
|
|
|
WAVEFORMATEX *in_fmt=sh_audio->wf;
|
2001-02-24 20:28:24 +00:00
|
|
|
unsigned long srcsize=0;
|
|
|
|
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_V,"======= Win32 (ACM) AUDIO Codec init =======\n");
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-06 01:18:59 +00:00
|
|
|
sh_audio->srcstream=NULL;
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-06 01:18:59 +00:00
|
|
|
sh_audio->o_wf.nChannels=in_fmt->nChannels;
|
|
|
|
sh_audio->o_wf.nSamplesPerSec=in_fmt->nSamplesPerSec;
|
|
|
|
sh_audio->o_wf.nAvgBytesPerSec=2*sh_audio->o_wf.nSamplesPerSec*sh_audio->o_wf.nChannels;
|
|
|
|
sh_audio->o_wf.wFormatTag=WAVE_FORMAT_PCM;
|
|
|
|
sh_audio->o_wf.nBlockAlign=2*in_fmt->nChannels;
|
|
|
|
sh_audio->o_wf.wBitsPerSample=16;
|
|
|
|
sh_audio->o_wf.cbSize=0;
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-07 21:27:57 +00:00
|
|
|
win32_codec_name = sh_audio->codec->dll;
|
2001-04-06 01:18:59 +00:00
|
|
|
ret=acmStreamOpen(&sh_audio->srcstream,(HACMDRIVER)NULL,
|
|
|
|
in_fmt,&sh_audio->o_wf,
|
2001-02-24 20:28:24 +00:00
|
|
|
NULL,0,0,0);
|
|
|
|
if(ret){
|
|
|
|
if(ret==ACMERR_NOTPOSSIBLE)
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_ERR,"ACM_Decoder: Unappropriate audio format\n");
|
2001-02-24 20:28:24 +00:00
|
|
|
else
|
2001-09-26 21:35:14 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_ERR,"ACM_Decoder: acmStreamOpen error: %d", (int)ret);
|
2001-04-06 01:18:59 +00:00
|
|
|
sh_audio->srcstream=NULL;
|
2001-02-24 20:28:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_V,"Audio codec opened OK! ;-)\n");
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-25 01:27:30 +00:00
|
|
|
acmStreamSize(sh_audio->srcstream, in_fmt->nBlockAlign, &srcsize, ACM_STREAMSIZEF_SOURCE);
|
2001-05-11 01:22:35 +00:00
|
|
|
//if(verbose) printf("Audio ACM output buffer min. size: %ld (reported by codec)\n",srcsize);
|
2001-05-10 03:39:54 +00:00
|
|
|
srcsize*=2;
|
2001-05-11 01:22:35 +00:00
|
|
|
//if(srcsize<MAX_OUTBURST) srcsize=MAX_OUTBURST;
|
|
|
|
if(!srcsize){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_WARN,"Warning! ACM codec reports srcsize=0\n");
|
2001-05-11 01:22:35 +00:00
|
|
|
srcsize=16384;
|
|
|
|
}
|
|
|
|
// limit srcsize to 4-16kb
|
|
|
|
//while(srcsize && srcsize<4096) srcsize*=2;
|
|
|
|
//while(srcsize>16384) srcsize/=2;
|
2001-04-06 01:18:59 +00:00
|
|
|
sh_audio->audio_out_minsize=srcsize; // audio output min. size
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_V,"Audio ACM output buffer min. size: %ld\n",srcsize);
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-05-10 03:39:54 +00:00
|
|
|
acmStreamSize(sh_audio->srcstream, srcsize, &srcsize, ACM_STREAMSIZEF_DESTINATION);
|
2001-04-06 01:18:59 +00:00
|
|
|
sh_audio->audio_in_minsize=srcsize; // audio input min. size
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_V,"Audio ACM input buffer min. size: %ld\n",srcsize);
|
2001-04-25 01:27:30 +00:00
|
|
|
|
|
|
|
if(srcsize<in_fmt->nBlockAlign) srcsize=in_fmt->nBlockAlign;
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-25 01:27:30 +00:00
|
|
|
sh_audio->a_in_buffer_size=2*sh_audio->audio_in_minsize;
|
2001-04-06 01:18:59 +00:00
|
|
|
sh_audio->a_in_buffer=malloc(sh_audio->a_in_buffer_size);
|
|
|
|
sh_audio->a_in_buffer_len=0;
|
2001-03-12 01:09:35 +00:00
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2001-05-11 01:22:35 +00:00
|
|
|
int acm_decode_audio(sh_audio_t *sh_audio, void* a_buffer,int minlen,int maxlen){
|
2001-03-12 01:09:35 +00:00
|
|
|
ACMSTREAMHEADER ash;
|
|
|
|
HRESULT hr;
|
|
|
|
DWORD srcsize=0;
|
2001-05-11 01:22:35 +00:00
|
|
|
DWORD len=minlen;
|
2001-04-06 01:18:59 +00:00
|
|
|
acmStreamSize(sh_audio->srcstream,len , &srcsize, ACM_STREAMSIZEF_DESTINATION);
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_DBG3,"acm says: srcsize=%ld (buffsize=%d) out_size=%d\n",srcsize,sh_audio->a_in_buffer_size,len);
|
2001-05-11 01:22:35 +00:00
|
|
|
|
|
|
|
if(srcsize<sh_audio->wf->nBlockAlign){
|
|
|
|
srcsize=sh_audio->wf->nBlockAlign;
|
|
|
|
acmStreamSize(sh_audio->srcstream, srcsize, &len, ACM_STREAMSIZEF_SOURCE);
|
|
|
|
if(len>maxlen) len=maxlen;
|
|
|
|
}
|
|
|
|
|
2001-04-06 01:18:59 +00:00
|
|
|
// if(srcsize==0) srcsize=((WAVEFORMATEX *)&sh_audio->o_wf_ext)->nBlockAlign;
|
|
|
|
if(srcsize>sh_audio->a_in_buffer_size) srcsize=sh_audio->a_in_buffer_size; // !!!!!!
|
|
|
|
if(sh_audio->a_in_buffer_len<srcsize){
|
|
|
|
sh_audio->a_in_buffer_len+=
|
|
|
|
demux_read_data(sh_audio->ds,&sh_audio->a_in_buffer[sh_audio->a_in_buffer_len],
|
|
|
|
srcsize-sh_audio->a_in_buffer_len);
|
2001-03-12 01:09:35 +00:00
|
|
|
}
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_DBG3,"acm convert %d -> %d bytes\n",sh_audio->a_in_buffer_len,len);
|
2001-03-12 01:09:35 +00:00
|
|
|
memset(&ash, 0, sizeof(ash));
|
|
|
|
ash.cbStruct=sizeof(ash);
|
|
|
|
ash.fdwStatus=0;
|
|
|
|
ash.dwUser=0;
|
2001-04-06 01:18:59 +00:00
|
|
|
ash.pbSrc=sh_audio->a_in_buffer;
|
|
|
|
ash.cbSrcLength=sh_audio->a_in_buffer_len;
|
2001-03-12 01:09:35 +00:00
|
|
|
ash.pbDst=a_buffer;
|
|
|
|
ash.cbDstLength=len;
|
2001-04-06 01:18:59 +00:00
|
|
|
hr=acmStreamPrepareHeader(sh_audio->srcstream,&ash,0);
|
2001-03-12 01:09:35 +00:00
|
|
|
if(hr){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_V,"ACM_Decoder: acmStreamPrepareHeader error %d\n",(int)hr);
|
2001-03-12 01:09:35 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2001-04-06 01:18:59 +00:00
|
|
|
hr=acmStreamConvert(sh_audio->srcstream,&ash,0);
|
2001-03-12 01:09:35 +00:00
|
|
|
if(hr){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_DBG2,"ACM_Decoder: acmStreamConvert error %d\n",(int)hr);
|
2001-04-25 01:27:30 +00:00
|
|
|
|
|
|
|
// return -1;
|
2001-03-12 01:09:35 +00:00
|
|
|
}
|
2001-07-29 00:38:56 +00:00
|
|
|
if(verbose>1)
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_DBG2,"acm converted %d -> %d\n",ash.cbSrcLengthUsed,ash.cbDstLengthUsed);
|
2001-04-06 01:18:59 +00:00
|
|
|
if(ash.cbSrcLengthUsed>=sh_audio->a_in_buffer_len){
|
|
|
|
sh_audio->a_in_buffer_len=0;
|
2001-03-12 01:09:35 +00:00
|
|
|
} else {
|
2001-04-06 01:18:59 +00:00
|
|
|
sh_audio->a_in_buffer_len-=ash.cbSrcLengthUsed;
|
|
|
|
memcpy(sh_audio->a_in_buffer,&sh_audio->a_in_buffer[ash.cbSrcLengthUsed],sh_audio->a_in_buffer_len);
|
2001-03-12 01:09:35 +00:00
|
|
|
}
|
|
|
|
len=ash.cbDstLengthUsed;
|
2001-04-06 01:18:59 +00:00
|
|
|
hr=acmStreamUnprepareHeader(sh_audio->srcstream,&ash,0);
|
2001-03-12 01:09:35 +00:00
|
|
|
if(hr){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_V,"ACM_Decoder: acmStreamUnprepareHeader error %d\n",(int)hr);
|
2001-03-12 01:09:35 +00:00
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2001-10-02 21:44:45 +00:00
|
|
|
int init_vfw_video_codec(sh_video_t *sh_video,int ex){
|
2001-02-24 20:28:24 +00:00
|
|
|
HRESULT ret;
|
2001-04-17 19:23:47 +00:00
|
|
|
int yuv=0;
|
2001-04-07 21:27:57 +00:00
|
|
|
unsigned int outfmt=sh_video->codec->outfmt[sh_video->outfmtidx];
|
2001-10-05 00:08:58 +00:00
|
|
|
unsigned char temp[1024];
|
|
|
|
int i;
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_V,"======= Win32 (VFW) VIDEO Codec init =======\n");
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-06 01:18:59 +00:00
|
|
|
memset(&sh_video->o_bih, 0, sizeof(BITMAPINFOHEADER));
|
|
|
|
sh_video->o_bih.biSize = sizeof(BITMAPINFOHEADER);
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-07 21:27:57 +00:00
|
|
|
win32_codec_name = sh_video->codec->dll;
|
2001-05-10 03:39:54 +00:00
|
|
|
// sh_video->hic = ICOpen( 0x63646976, sh_video->bih->biCompression, ICMODE_FASTDECOMPRESS);
|
|
|
|
sh_video->hic = ICOpen( 0x63646976, sh_video->bih->biCompression, ICMODE_DECOMPRESS);
|
2001-04-06 01:18:59 +00:00
|
|
|
if(!sh_video->hic){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_ERR,"ICOpen failed! unknown codec / wrong parameters?\n");
|
2001-02-24 20:28:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-04-06 01:18:59 +00:00
|
|
|
// sh_video->bih.biBitCount=32;
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-10-05 00:08:58 +00:00
|
|
|
// Note: DivX.DLL overwrites 4 bytes _AFTER_ the o_bih header, so it corrupts
|
|
|
|
// the sh_video struct content. We call it with an 1024-byte temp space and
|
|
|
|
// then copy out the data we need:
|
|
|
|
memset(temp,0x77,1024);
|
|
|
|
|
|
|
|
ret = ICDecompressGetFormat(sh_video->hic, sh_video->bih, temp);
|
2001-02-24 20:28:24 +00:00
|
|
|
if(ret){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_ERR,"ICDecompressGetFormat failed: Error %d\n", (int)ret);
|
2001-02-24 20:28:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_V,"ICDecompressGetFormat OK\n");
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-10-05 00:08:58 +00:00
|
|
|
memcpy(&sh_video->o_bih,temp,sizeof(sh_video->o_bih));
|
|
|
|
// for(i=0;i<1024;i++) printf("%02X ",temp[i]);
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
// printf("ICM_DECOMPRESS_QUERY=0x%X",ICM_DECOMPRESS_QUERY);
|
|
|
|
|
2001-04-06 01:18:59 +00:00
|
|
|
// sh_video->o_bih.biWidth=sh_video->bih.biWidth;
|
|
|
|
// sh_video->o_bih.biCompression = 0x32315659; // mmioFOURCC('U','Y','V','Y');
|
|
|
|
// ret=ICDecompressGetFormatSize(sh_video->hic,&sh_video->o_bih);
|
|
|
|
// sh_video->o_bih.biCompression = 3; //0x32315659;
|
|
|
|
// sh_video->o_bih.biCompression = mmioFOURCC('U','Y','V','Y');
|
|
|
|
// sh_video->o_bih.biCompression = mmioFOURCC('U','Y','V','Y');
|
|
|
|
// sh_video->o_bih.biCompression = mmioFOURCC('Y','U','Y','2');
|
|
|
|
// sh_video->o_bih.biPlanes=3;
|
|
|
|
// sh_video->o_bih.biBitCount=16;
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-05-06 21:43:45 +00:00
|
|
|
#if 0
|
|
|
|
// workaround for pegasus MJPEG:
|
|
|
|
if(!sh_video->o_bih.biWidth) sh_video->o_bih.biWidth=sh_video->bih->biWidth;
|
|
|
|
if(!sh_video->o_bih.biHeight) sh_video->o_bih.biHeight=sh_video->bih->biHeight;
|
|
|
|
if(!sh_video->o_bih.biPlanes) sh_video->o_bih.biPlanes=sh_video->bih->biPlanes;
|
|
|
|
#endif
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-14 17:55:20 +00:00
|
|
|
switch (outfmt) {
|
|
|
|
|
|
|
|
/* planar format */
|
|
|
|
case IMGFMT_YV12:
|
|
|
|
case IMGFMT_I420:
|
|
|
|
case IMGFMT_IYUV:
|
|
|
|
sh_video->o_bih.biBitCount=12;
|
2001-04-17 19:23:47 +00:00
|
|
|
yuv=1;
|
2001-04-16 01:35:44 +00:00
|
|
|
break;
|
2001-04-14 17:55:20 +00:00
|
|
|
|
|
|
|
/* packed format */
|
|
|
|
case IMGFMT_YUY2:
|
|
|
|
case IMGFMT_UYVY:
|
|
|
|
case IMGFMT_YVYU:
|
|
|
|
sh_video->o_bih.biBitCount=16;
|
2001-04-17 19:23:47 +00:00
|
|
|
yuv=1;
|
2001-04-14 17:55:20 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* rgb/bgr format */
|
|
|
|
case IMGFMT_RGB8:
|
|
|
|
case IMGFMT_BGR8:
|
|
|
|
sh_video->o_bih.biBitCount=8;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IMGFMT_RGB15:
|
|
|
|
case IMGFMT_RGB16:
|
|
|
|
case IMGFMT_BGR15:
|
|
|
|
case IMGFMT_BGR16:
|
|
|
|
sh_video->o_bih.biBitCount=16;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IMGFMT_RGB24:
|
|
|
|
case IMGFMT_BGR24:
|
|
|
|
sh_video->o_bih.biBitCount=24;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IMGFMT_RGB32:
|
|
|
|
case IMGFMT_BGR32:
|
|
|
|
sh_video->o_bih.biBitCount=32;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_ERR,"unsupported image format: 0x%x\n", outfmt);
|
2001-04-14 17:55:20 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-14 17:55:20 +00:00
|
|
|
sh_video->o_bih.biSizeImage = sh_video->o_bih.biWidth * sh_video->o_bih.biHeight * (sh_video->o_bih.biBitCount/8);
|
2001-05-06 21:43:45 +00:00
|
|
|
|
2001-04-14 17:55:20 +00:00
|
|
|
if(!(sh_video->codec->outflags[sh_video->outfmtidx]&CODECS_FLAG_FLIP)) {
|
2001-04-15 14:33:49 +00:00
|
|
|
sh_video->o_bih.biHeight=-sh_video->bih->biHeight; // flip image!
|
2001-04-14 17:55:20 +00:00
|
|
|
}
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-17 19:23:47 +00:00
|
|
|
if(yuv && !(sh_video->codec->outflags[sh_video->outfmtidx] & CODECS_FLAG_YUVHACK))
|
2001-04-14 17:55:20 +00:00
|
|
|
sh_video->o_bih.biCompression = outfmt;
|
2001-05-11 02:05:36 +00:00
|
|
|
else
|
|
|
|
sh_video->o_bih.biCompression = 0;
|
2001-02-24 20:28:24 +00:00
|
|
|
|
|
|
|
if(verbose) {
|
|
|
|
printf("Starting decompression, format:\n");
|
2001-04-23 23:14:58 +00:00
|
|
|
printf(" biSize %ld\n", sh_video->bih->biSize);
|
|
|
|
printf(" biWidth %ld\n", sh_video->bih->biWidth);
|
|
|
|
printf(" biHeight %ld\n", sh_video->bih->biHeight);
|
2001-04-15 14:33:49 +00:00
|
|
|
printf(" biPlanes %d\n", sh_video->bih->biPlanes);
|
|
|
|
printf(" biBitCount %d\n", sh_video->bih->biBitCount);
|
2001-04-23 23:14:58 +00:00
|
|
|
printf(" biCompression 0x%lx ('%.4s')\n", sh_video->bih->biCompression, (char *)&sh_video->bih->biCompression);
|
|
|
|
printf(" biSizeImage %ld\n", sh_video->bih->biSizeImage);
|
2001-02-24 20:28:24 +00:00
|
|
|
printf("Dest fmt:\n");
|
2001-04-23 23:14:58 +00:00
|
|
|
printf(" biSize %ld\n", sh_video->o_bih.biSize);
|
|
|
|
printf(" biWidth %ld\n", sh_video->o_bih.biWidth);
|
|
|
|
printf(" biHeight %ld\n", sh_video->o_bih.biHeight);
|
2001-04-06 01:18:59 +00:00
|
|
|
printf(" biPlanes %d\n", sh_video->o_bih.biPlanes);
|
|
|
|
printf(" biBitCount %d\n", sh_video->o_bih.biBitCount);
|
2001-04-23 23:14:58 +00:00
|
|
|
printf(" biCompression 0x%lx ('%.4s')\n", sh_video->o_bih.biCompression, (char *)&sh_video->o_bih.biCompression);
|
|
|
|
printf(" biSizeImage %ld\n", sh_video->o_bih.biSizeImage);
|
2001-02-24 20:28:24 +00:00
|
|
|
}
|
|
|
|
|
2001-07-08 17:20:46 +00:00
|
|
|
ret = ex ?
|
|
|
|
ICDecompressQueryEx(sh_video->hic, sh_video->bih, &sh_video->o_bih) :
|
|
|
|
ICDecompressQuery(sh_video->hic, sh_video->bih, &sh_video->o_bih);
|
2001-02-24 20:28:24 +00:00
|
|
|
if(ret){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_ERR,"ICDecompressQuery failed: Error %d\n", (int)ret);
|
2001-02-24 20:28:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_V,"ICDecompressQuery OK\n");
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-07-08 17:20:46 +00:00
|
|
|
ret = ex ?
|
|
|
|
ICDecompressBeginEx(sh_video->hic, sh_video->bih, &sh_video->o_bih) :
|
|
|
|
ICDecompressBegin(sh_video->hic, sh_video->bih, &sh_video->o_bih);
|
2001-02-24 20:28:24 +00:00
|
|
|
if(ret){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_ERR,"ICDecompressBegin failed: Error %d\n", (int)ret);
|
2001-02-24 20:28:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-10-02 21:44:45 +00:00
|
|
|
sh_video->our_out_buffer = (char*)memalign(64,sh_video->o_bih.biSizeImage);
|
2001-04-06 01:18:59 +00:00
|
|
|
if(!sh_video->our_out_buffer){
|
2001-09-26 21:35:14 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_ERR,MSGTR_NoMemForDecodedImage, sh_video->o_bih.biSizeImage);
|
2001-02-24 20:28:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-04-17 19:23:47 +00:00
|
|
|
if(yuv && sh_video->codec->outflags[sh_video->outfmtidx] & CODECS_FLAG_YUVHACK)
|
2001-04-16 03:01:46 +00:00
|
|
|
sh_video->o_bih.biCompression = outfmt;
|
2001-02-24 20:28:24 +00:00
|
|
|
|
|
|
|
// avi_header.our_in_buffer=malloc(avi_header.video.dwSuggestedBufferSize); // FIXME!!!!
|
2001-10-05 00:08:58 +00:00
|
|
|
|
|
|
|
ICSendMessage(sh_video->hic, ICM_USER+80, (long)(&divx_quality) ,NULL);
|
|
|
|
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_WIN32,MSGL_V,"VIDEO CODEC Init OK!!! ;-)\n");
|
2001-02-24 20:28:24 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2001-10-02 21:44:45 +00:00
|
|
|
|
2001-10-05 00:08:58 +00:00
|
|
|
int vfw_set_postproc(sh_video_t* sh_video,int quality){
|
|
|
|
// Works only with opendivx/divx4 based DLL
|
|
|
|
return ICSendMessage(sh_video->hic, ICM_USER+80, (long)(&quality) ,NULL);
|
|
|
|
}
|
|
|
|
|
2001-10-02 21:44:45 +00:00
|
|
|
int vfw_decode_video(sh_video_t* sh_video,void* start,int in_size,int drop_frame,int ex){
|
|
|
|
HRESULT ret;
|
|
|
|
|
|
|
|
sh_video->bih->biSizeImage = in_size;
|
|
|
|
|
|
|
|
if(ex)
|
|
|
|
ret = ICDecompressEx(sh_video->hic,
|
|
|
|
( (sh_video->ds->flags&1) ? 0 : ICDECOMPRESS_NOTKEYFRAME ) |
|
|
|
|
( (drop_frame==2 && !(sh_video->ds->flags&1))?(ICDECOMPRESS_HURRYUP|ICDECOMPRESS_PREROL):0 ) ,
|
|
|
|
sh_video->bih, start,
|
|
|
|
&sh_video->o_bih,
|
|
|
|
drop_frame ? 0 : sh_video->our_out_buffer);
|
|
|
|
else
|
|
|
|
ret = ICDecompress(sh_video->hic,
|
|
|
|
( (sh_video->ds->flags&1) ? 0 : ICDECOMPRESS_NOTKEYFRAME ) |
|
|
|
|
( (drop_frame==2 && !(sh_video->ds->flags&1))?(ICDECOMPRESS_HURRYUP|ICDECOMPRESS_PREROL):0 ) ,
|
|
|
|
sh_video->bih, start,
|
|
|
|
&sh_video->o_bih,
|
|
|
|
drop_frame ? 0 : sh_video->our_out_buffer);
|
|
|
|
|
|
|
|
return (int)ret;
|
|
|
|
}
|
|
|
|
|