annotate loader/dshow/DS_VideoDecoder.c @ 22381:6cabac4d35b5

tv driver loading rework. As a side effect "-tv driver=help" option is implemented.
author voroshil
date Thu, 01 Mar 2007 18:38:00 +0000
parents 68125c62b6eb
children 49f01f8fbd60
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
1 /********************************************************
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
2
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
3 DirectShow Video decoder implementation
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
4 Copyright 2000 Eugene Kuznetsov (divx@euro.ru)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
5
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
6 *********************************************************/
9967
b0d1b415320c cygwin support patch by Sascha Sommer and some fixes by me
alex
parents: 9581
diff changeset
7 #include "config.h"
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
8 #include "guids.h"
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
9 #include "interfaces.h"
7472
c4434bdf6e51 tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents: 7316
diff changeset
10 #include "registry.h"
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
11
3946
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
12 #ifndef NOAVIFILE_HEADERS
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
13 #include "videodecoder.h"
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
14 #else
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
15 #include "libwin32.h"
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
16 #endif
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
17 #include "DS_Filter.h"
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
18
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
19 struct _DS_VideoDecoder
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
20 {
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
21 IVideoDecoder iv;
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
22
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
23 DS_Filter* m_pDS_Filter;
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
24 AM_MEDIA_TYPE m_sOurType, m_sDestType;
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
25 VIDEOINFOHEADER* m_sVhdr;
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
26 VIDEOINFOHEADER* m_sVhdr2;
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
27 int m_Caps;//CAPS m_Caps; // capabilities of DirectShow decoder
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
28 int m_iLastQuality; // remember last quality as integer
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
29 int m_iMinBuffers;
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
30 int m_iMaxAuto;
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
31 int m_bIsDivX; // for speed
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
32 int m_bIsDivX4; // for speed
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
33 };
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
34
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
35 #include "DS_VideoDecoder.h"
3946
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
36
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
37 #include "../wine/winerror.h"
9967
b0d1b415320c cygwin support patch by Sascha Sommer and some fixes by me
alex
parents: 9581
diff changeset
38 #ifdef WIN32_LOADER
8451
fb88ccbc5ccc compiler warning fixes
arpi
parents: 7472
diff changeset
39 #include "../ldt_keeper.h"
9967
b0d1b415320c cygwin support patch by Sascha Sommer and some fixes by me
alex
parents: 9581
diff changeset
40 #endif
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
41
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
42 #ifndef NOAVIFILE_HEADERS
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
43 #define VFW_E_NOT_RUNNING 0x80040226
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
44 #include "fourcc.h"
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
45 #include "except.h"
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
46 #endif
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
47
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
48 #include <unistd.h>
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
49 #include <fcntl.h>
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
50 #include <errno.h>
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
51 #include <sys/types.h>
9978
11cee15b1a8f last mingw32 support patch by Sascha Sommer
alex
parents: 9967
diff changeset
52 #ifndef __MINGW32__
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
53 #include <sys/mman.h>
9978
11cee15b1a8f last mingw32 support patch by Sascha Sommer
alex
parents: 9967
diff changeset
54 #endif
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
55 #include <stdio.h>
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
56 #include <stdlib.h> // labs
2072
4b3f3f850896 killed unneeded dependency on c++ headers
arpi
parents: 2069
diff changeset
57
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
58 // strcmp((const char*)info.dll,...) is used instead of (... == ...)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
59 // so Arpi could use char* pointer in his simplified DS_VideoDecoder class
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
60
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
61 #define false 0
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
62 #define true 1
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
63
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
64 int DS_VideoDecoder_GetCapabilities(DS_VideoDecoder *this)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
65 {return this->m_Caps;}
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
66
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
67 typedef struct _ct ct;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
68
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
69 struct _ct {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
70 unsigned int bits;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
71 fourcc_t fcc;
8451
fb88ccbc5ccc compiler warning fixes
arpi
parents: 7472
diff changeset
72 const GUID *subtype;
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
73 int cap;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
74 };
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
75
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
76 static ct check[] = {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
77 {16, fccYUY2, &MEDIASUBTYPE_YUY2, CAP_YUY2},
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
78 {12, fccIYUV, &MEDIASUBTYPE_IYUV, CAP_IYUV},
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
79 {16, fccUYVY, &MEDIASUBTYPE_UYVY, CAP_UYVY},
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
80 {12, fccYV12, &MEDIASUBTYPE_YV12, CAP_YV12},
6527
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
81 //{16, fccYV12, &MEDIASUBTYPE_YV12, CAP_YV12},
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
82 {16, fccYVYU, &MEDIASUBTYPE_YVYU, CAP_YVYU},
6527
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
83 {12, fccI420, &MEDIASUBTYPE_I420, CAP_I420},
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
84 {9, fccYVU9, &MEDIASUBTYPE_YVU9, CAP_YVU9},
9581
0ef45318414a a warning fix and rgb15/16 support by Sascha Sommer
alex
parents: 9503
diff changeset
85 {0, 0, 0, 0},
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
86 };
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
87
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
88
3444
0c0042de1f95 API changes - now fully compatible with C++ version
arpi
parents: 3063
diff changeset
89 DS_VideoDecoder * DS_VideoDecoder_Open(char* dllname, GUID* guid, BITMAPINFOHEADER * format, int flip, int maxauto)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
90 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
91 DS_VideoDecoder *this;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
92 HRESULT result;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
93 ct* c;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
94
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
95 this = malloc(sizeof(DS_VideoDecoder));
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
96 memset( this, 0, sizeof(DS_VideoDecoder));
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
97
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
98 this->m_sVhdr2 = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
99 this->m_iLastQuality = -1;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
100 this->m_iMaxAuto = maxauto;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
101
9967
b0d1b415320c cygwin support patch by Sascha Sommer and some fixes by me
alex
parents: 9581
diff changeset
102 #ifdef WIN32_LOADER
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
103 Setup_LDT_Keeper();
9967
b0d1b415320c cygwin support patch by Sascha Sommer and some fixes by me
alex
parents: 9581
diff changeset
104 #endif
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
105
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
106 //memset(&m_obh, 0, sizeof(m_obh));
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
107 //m_obh.biSize = sizeof(m_obh);
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
108 /*try*/
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
109 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
110 unsigned int bihs;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
111
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
112 bihs = (format->biSize < (int) sizeof(BITMAPINFOHEADER)) ?
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
113 sizeof(BITMAPINFOHEADER) : format->biSize;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
114
18878
3bf0d70b4c7f rm unnecesary casts from void* - part 2
reynaldo
parents: 9978
diff changeset
115 this->iv.m_bh = malloc(bihs);
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
116 memcpy(this->iv.m_bh, format, bihs);
22187
88b36fd17976 Precent overflow of this->m_sVhdr->bmiHeader buffer, may have been
rtogni
parents: 22001
diff changeset
117 this->iv.m_bh->biSize = bihs;
4205
c42ab0e5bbbc possible sig11 fixed - noticed by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents: 3978
diff changeset
118
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
119 this->iv.m_State = STOP;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
120 //this->iv.m_pFrame = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
121 this->iv.m_Mode = DIRECT;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
122 this->iv.m_iDecpos = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
123 this->iv.m_iPlaypos = -1;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
124 this->iv.m_fQuality = 0.0f;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
125 this->iv.m_bCapable16b = true;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
126
4205
c42ab0e5bbbc possible sig11 fixed - noticed by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents: 3978
diff changeset
127 bihs += sizeof(VIDEOINFOHEADER) - sizeof(BITMAPINFOHEADER);
18878
3bf0d70b4c7f rm unnecesary casts from void* - part 2
reynaldo
parents: 9978
diff changeset
128 this->m_sVhdr = malloc(bihs);
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
129 memset(this->m_sVhdr, 0, bihs);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
130 memcpy(&this->m_sVhdr->bmiHeader, this->iv.m_bh, this->iv.m_bh->biSize);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
131 this->m_sVhdr->rcSource.left = this->m_sVhdr->rcSource.top = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
132 this->m_sVhdr->rcSource.right = this->m_sVhdr->bmiHeader.biWidth;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
133 this->m_sVhdr->rcSource.bottom = this->m_sVhdr->bmiHeader.biHeight;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
134 //this->m_sVhdr->rcSource.right = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
135 //this->m_sVhdr->rcSource.bottom = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
136 this->m_sVhdr->rcTarget = this->m_sVhdr->rcSource;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
137
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
138 this->m_sOurType.majortype = MEDIATYPE_Video;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
139 this->m_sOurType.subtype = MEDIATYPE_Video;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
140 this->m_sOurType.subtype.f1 = this->m_sVhdr->bmiHeader.biCompression;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
141 this->m_sOurType.formattype = FORMAT_VideoInfo;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
142 this->m_sOurType.bFixedSizeSamples = false;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
143 this->m_sOurType.bTemporalCompression = true;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
144 this->m_sOurType.pUnk = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
145 this->m_sOurType.cbFormat = bihs;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
146 this->m_sOurType.pbFormat = (char*)this->m_sVhdr;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
147
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
148 this->m_sVhdr2 = (VIDEOINFOHEADER*)(malloc(sizeof(VIDEOINFOHEADER)+12));
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
149 memcpy(this->m_sVhdr2, this->m_sVhdr, sizeof(VIDEOINFOHEADER));
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
150 memset((char*)this->m_sVhdr2 + sizeof(VIDEOINFOHEADER), 0, 12);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
151 this->m_sVhdr2->bmiHeader.biCompression = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
152 this->m_sVhdr2->bmiHeader.biBitCount = 24;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
153
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
154 memset(&this->m_sDestType, 0, sizeof(this->m_sDestType));
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
155 this->m_sDestType.majortype = MEDIATYPE_Video;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
156 this->m_sDestType.subtype = MEDIASUBTYPE_RGB24;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
157 this->m_sDestType.formattype = FORMAT_VideoInfo;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
158 this->m_sDestType.bFixedSizeSamples = true;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
159 this->m_sDestType.bTemporalCompression = false;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
160 this->m_sDestType.lSampleSize = labs(this->m_sVhdr2->bmiHeader.biWidth*this->m_sVhdr2->bmiHeader.biHeight
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
161 * ((this->m_sVhdr2->bmiHeader.biBitCount + 7) / 8));
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
162 this->m_sVhdr2->bmiHeader.biSizeImage = this->m_sDestType.lSampleSize;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
163 this->m_sDestType.pUnk = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
164 this->m_sDestType.cbFormat = sizeof(VIDEOINFOHEADER);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
165 this->m_sDestType.pbFormat = (char*)this->m_sVhdr2;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
166
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
167 memset(&this->iv.m_obh, 0, sizeof(this->iv.m_obh));
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
168 memcpy(&this->iv.m_obh, this->iv.m_bh, sizeof(this->iv.m_obh) < (unsigned) this->iv.m_bh->biSize
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
169 ? sizeof(this->iv.m_obh) : (unsigned) this->iv.m_bh->biSize);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
170 this->iv.m_obh.biBitCount=24;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
171 this->iv.m_obh.biSize = sizeof(BITMAPINFOHEADER);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
172 this->iv.m_obh.biCompression = 0; //BI_RGB
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
173 //this->iv.m_obh.biHeight = labs(this->iv.m_obh.biHeight);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
174 this->iv.m_obh.biSizeImage = labs(this->iv.m_obh.biWidth * this->iv.m_obh.biHeight)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
175 * ((this->iv.m_obh.biBitCount + 7) / 8);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
176
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
177
3444
0c0042de1f95 API changes - now fully compatible with C++ version
arpi
parents: 3063
diff changeset
178 this->m_pDS_Filter = DS_FilterCreate(dllname, guid, &this->m_sOurType, &this->m_sDestType);
3456
ebab4801241f do not fault if Filter_Create failed
alex
parents: 3444
diff changeset
179
ebab4801241f do not fault if Filter_Create failed
alex
parents: 3444
diff changeset
180 if (!this->m_pDS_Filter)
ebab4801241f do not fault if Filter_Create failed
alex
parents: 3444
diff changeset
181 {
ebab4801241f do not fault if Filter_Create failed
alex
parents: 3444
diff changeset
182 printf("Failed to create DirectShow filter\n");
ebab4801241f do not fault if Filter_Create failed
alex
parents: 3444
diff changeset
183 return 0;
ebab4801241f do not fault if Filter_Create failed
alex
parents: 3444
diff changeset
184 }
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
185
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
186 if (!flip)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
187 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
188 this->iv.m_obh.biHeight *= -1;
3466
b6caac381405 avifile merge
arpi
parents: 3456
diff changeset
189 this->m_sVhdr2->bmiHeader.biHeight = this->iv.m_obh.biHeight;
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
190 result = this->m_pDS_Filter->m_pOutputPin->vt->QueryAccept(this->m_pDS_Filter->m_pOutputPin, &this->m_sDestType);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
191 if (result)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
192 {
3466
b6caac381405 avifile merge
arpi
parents: 3456
diff changeset
193 printf("Decoder does not support upside-down RGB frames\n");
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
194 this->iv.m_obh.biHeight *= -1;
3466
b6caac381405 avifile merge
arpi
parents: 3456
diff changeset
195 this->m_sVhdr2->bmiHeader.biHeight = this->iv.m_obh.biHeight;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
196 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
197 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
198
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
199 memcpy( &this->iv.m_decoder, &this->iv.m_obh, sizeof(this->iv.m_obh) );
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
200
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
201 switch (this->iv.m_bh->biCompression)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
202 {
6527
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
203 #if 0
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
204 case fccDIV3:
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
205 case fccDIV4:
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
206 case fccDIV5:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
207 case fccDIV6:
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
208 case fccMP42:
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
209 case fccWMV2:
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
210 //YV12 seems to be broken for DivX :-) codec
3060
33989b5b8d02 xine's bugs fixed - YV50 yv12 and setup_fs
arpi
parents: 3059
diff changeset
211 // case fccIV50:
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
212 //produces incorrect picture
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
213 //m_Caps = (CAPS) (m_Caps & ~CAP_YV12);
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
214 //m_Caps = CAP_UYVY;//CAP_YUY2; // | CAP_I420;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
215 //m_Caps = CAP_I420;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
216 this->m_Caps = (CAP_YUY2 | CAP_UYVY);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
217 break;
6527
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
218 #endif
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
219 default:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
220
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
221 this->m_Caps = CAP_NONE;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
222
6527
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
223 printf("Decoder supports the following YUV formats: ");
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
224 for (c = check; c->bits; c++)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
225 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
226 this->m_sVhdr2->bmiHeader.biBitCount = c->bits;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
227 this->m_sVhdr2->bmiHeader.biCompression = c->fcc;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
228 this->m_sDestType.subtype = *c->subtype;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
229 result = this->m_pDS_Filter->m_pOutputPin->vt->QueryAccept(this->m_pDS_Filter->m_pOutputPin, &this->m_sDestType);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
230 if (!result)
6527
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
231 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
232 this->m_Caps = (this->m_Caps | c->cap);
8451
fb88ccbc5ccc compiler warning fixes
arpi
parents: 7472
diff changeset
233 printf("%.4s ", (char *)&c->fcc);
6527
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
234 }
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
235 }
6527
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
236 printf("\n");
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
237 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
238
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
239 if (this->m_Caps != CAP_NONE)
6527
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
240 printf("Decoder is capable of YUV output (flags 0x%x)\n", (int)this->m_Caps);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
241
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
242 this->m_sVhdr2->bmiHeader.biBitCount = 24;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
243 this->m_sVhdr2->bmiHeader.biCompression = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
244 this->m_sDestType.subtype = MEDIASUBTYPE_RGB24;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
245
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
246 this->m_iMinBuffers = this->iv.VBUFSIZE;
3444
0c0042de1f95 API changes - now fully compatible with C++ version
arpi
parents: 3063
diff changeset
247 this->m_bIsDivX = (strcmp(dllname, "divxcvki.ax") == 0
0c0042de1f95 API changes - now fully compatible with C++ version
arpi
parents: 3063
diff changeset
248 || strcmp(dllname, "divx_c32.ax") == 0
0c0042de1f95 API changes - now fully compatible with C++ version
arpi
parents: 3063
diff changeset
249 || strcmp(dllname, "wmvds32.ax") == 0
0c0042de1f95 API changes - now fully compatible with C++ version
arpi
parents: 3063
diff changeset
250 || strcmp(dllname, "wmv8ds32.ax") == 0);
0c0042de1f95 API changes - now fully compatible with C++ version
arpi
parents: 3063
diff changeset
251 this->m_bIsDivX4 = (strcmp(dllname, "divxdec.ax") == 0);
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
252 if (this->m_bIsDivX)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
253 this->iv.VBUFSIZE += 7;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
254 else if (this->m_bIsDivX4)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
255 this->iv.VBUFSIZE += 9;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
256 }
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
257 /*catch (FatalError& error)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
258 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
259 delete[] m_sVhdr;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
260 delete[] m_sVhdr2;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
261 delete m_pDS_Filter;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
262 throw;
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
263 }*/
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
264 return this;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
265 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
266
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
267 void DS_VideoDecoder_Destroy(DS_VideoDecoder *this)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
268 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
269 DS_VideoDecoder_StopInternal(this);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
270 this->iv.m_State = STOP;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
271 free(this->m_sVhdr);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
272 free(this->m_sVhdr2);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
273 DS_Filter_Destroy(this->m_pDS_Filter);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
274 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
275
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
276 void DS_VideoDecoder_StartInternal(DS_VideoDecoder *this)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
277 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
278 ALLOCATOR_PROPERTIES props, props1;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
279 Debug printf("DS_VideoDecoder_StartInternal\n");
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
280 //cout << "DSSTART" << endl;
22304
254733f57707 Fixed loading of VoxWare and wma9sp binary audio codecs using dshow engine.
voroshil
parents: 22187
diff changeset
281 this->m_pDS_Filter->m_pAll->vt->Commit(this->m_pDS_Filter->m_pAll);
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
282 this->m_pDS_Filter->Start(this->m_pDS_Filter);
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
283
3957
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
284 this->iv.m_State = START;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
285 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
286
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
287 void DS_VideoDecoder_StopInternal(DS_VideoDecoder *this)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
288 {
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
289 this->m_pDS_Filter->Stop(this->m_pDS_Filter);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
290 //??? why was this here ??? m_pOurOutput->SetFramePointer(0);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
291 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
292
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
293 int DS_VideoDecoder_DecodeInternal(DS_VideoDecoder *this, const void* src, int size, int is_keyframe, char* pImage)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
294 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
295 IMediaSample* sample = 0;
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
296 char* ptr;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
297 int result;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
298
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
299 Debug printf("DS_VideoDecoder_DecodeInternal(%p,%p,%d,%d,%p)\n",this,src,size,is_keyframe,pImage);
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
300
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
301 this->m_pDS_Filter->m_pAll->vt->GetBuffer(this->m_pDS_Filter->m_pAll, &sample, 0, 0, 0);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
302
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
303 if (!sample)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
304 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
305 Debug printf("ERROR: null sample\n");
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
306 return -1;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
307 }
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
308
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
309 //cout << "DECODE " << (void*) pImage << " d: " << (void*) pImage->Data() << endl;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
310 if (pImage)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
311 {
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
312 this->m_pDS_Filter->m_pOurOutput->SetPointer2(this->m_pDS_Filter->m_pOurOutput,pImage);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
313 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
314
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
315
3466
b6caac381405 avifile merge
arpi
parents: 3456
diff changeset
316 sample->vt->SetActualDataLength(sample, size);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
317 sample->vt->GetPointer(sample, (BYTE **)&ptr);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
318 memcpy(ptr, src, size);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
319 sample->vt->SetSyncPoint(sample, is_keyframe);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
320 sample->vt->SetPreroll(sample, pImage ? 0 : 1);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
321 // sample->vt->SetMediaType(sample, &m_sOurType);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
322
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
323 // FIXME: - crashing with YV12 at this place decoder will crash
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
324 // while doing this call
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
325 // %FS register was not setup for calling into win32 dll. Are all
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
326 // crashes inside ...->Receive() fixed now?
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
327 //
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
328 // nope - but this is surely helpfull - I'll try some more experiments
9967
b0d1b415320c cygwin support patch by Sascha Sommer and some fixes by me
alex
parents: 9581
diff changeset
329 #ifdef WIN32_LOADER
3060
33989b5b8d02 xine's bugs fixed - YV50 yv12 and setup_fs
arpi
parents: 3059
diff changeset
330 Setup_FS_Segment();
9967
b0d1b415320c cygwin support patch by Sascha Sommer and some fixes by me
alex
parents: 9581
diff changeset
331 #endif
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
332 #if 0
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
333 if (!this->m_pDS_Filter || !this->m_pDS_Filter->m_pImp
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
334 || !this->m_pDS_Filter->m_pImp->vt
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
335 || !this->m_pDS_Filter->m_pImp->vt->Receive)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
336 printf("DecodeInternal ERROR???\n");
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
337 #endif
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
338 result = this->m_pDS_Filter->m_pImp->vt->Receive(this->m_pDS_Filter->m_pImp, sample);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
339 if (result)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
340 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
341 Debug printf("DS_VideoDecoder::DecodeInternal() error putting data into input pin %x\n", result);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
342 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
343
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
344 sample->vt->Release((IUnknown*)sample);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
345
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
346 #if 0
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
347 if (this->m_bIsDivX)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
348 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
349 int q;
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
350 IHidden* hidden=(IHidden*)((int)this->m_pDS_Filter->m_pFilter + 0xb8);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
351 // always check for actual value
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
352 // this seems to be the only way to know the actual value
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
353 hidden->vt->GetSmth2(hidden, &this->m_iLastQuality);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
354 if (this->m_iLastQuality > 9)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
355 this->m_iLastQuality -= 10;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
356
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
357 if (this->m_iLastQuality < 0)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
358 this->m_iLastQuality = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
359 else if (this->m_iLastQuality > this->m_iMaxAuto)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
360 this->m_iLastQuality = this->m_iMaxAuto;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
361
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
362 //cout << " Qual: " << this->m_iLastQuality << endl;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
363 this->iv.m_fQuality = this->m_iLastQuality / 4.0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
364 }
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
365 else if (this->m_bIsDivX4)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
366 {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
367
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
368 // maybe access methods directly to safe some cpu cycles...
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
369 DS_VideoDecoder_GetValue(this, "Postprocessing", this->m_iLastQuality);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
370 if (this->m_iLastQuality < 0)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
371 this->m_iLastQuality = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
372 else if (this->m_iLastQuality > this->m_iMaxAuto)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
373 this->m_iLastQuality = this->m_iMaxAuto;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
374
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
375 //cout << " Qual: " << m_iLastQuality << endl;
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
376 this->iv.m_fQuality = this->m_iLastQuality / 6.0;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
377 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
378
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
379 if (this->iv.m_Mode == -1 ) // ???BUFFERED_QUALITY_AUTO)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
380 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
381 // adjust Quality - depends on how many cached frames we have
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
382 int buffered = this->iv.m_iDecpos - this->iv.m_iPlaypos;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
383
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
384 if (this->m_bIsDivX || this->m_bIsDivX4)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
385 {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
386 int to = buffered - this->m_iMinBuffers;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
387 if (to < 0)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
388 to = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
389 if (to != this->m_iLastQuality)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
390 {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
391 if (to > this->m_iMaxAuto)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
392 to = this->m_iMaxAuto;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
393 if (this->m_iLastQuality != to)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
394 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
395 if (this->m_bIsDivX)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
396 {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
397 IHidden* hidden=(IHidden*)((int)this->m_pDS_Filter->m_pFilter + 0xb8);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
398 hidden->vt->SetSmth(hidden, to, 0);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
399 }
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
400 else
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
401 DS_VideoDecoder_SetValue(this, "Postprocessing", to);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
402 #ifndef QUIET
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
403 //printf("Switching quality %d -> %d b:%d\n",m_iLastQuality, to, buffered);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
404 #endif
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
405 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
406 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
407 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
408 }
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
409 #endif
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
410
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
411 return 0;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
412 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
413
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
414 /*
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
415 * bits == 0 - leave unchanged
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
416 */
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
417 //int SetDestFmt(DS_VideoDecoder * this, int bits = 24, fourcc_t csp = 0);
3946
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
418 int DS_VideoDecoder_SetDestFmt(DS_VideoDecoder *this, int bits, unsigned int csp)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
419 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
420 HRESULT result;
22307
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
421 ALLOCATOR_PROPERTIES props,props1;
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
422 int should_test=1;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
423 int stoped = 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
424
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
425 Debug printf("DS_VideoDecoder_SetDestFmt (%p, %d, %d)\n",this,bits,(int)csp);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
426
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
427 /* if (!CImage::Supported(csp, bits))
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
428 return -1;
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
429 */
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
430 // BitmapInfo temp = m_obh;
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
431
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
432 if (!csp) // RGB
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
433 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
434 int ok = true;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
435
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
436 switch (bits)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
437 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
438 case 15:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
439 this->m_sDestType.subtype = MEDIASUBTYPE_RGB555;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
440 break;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
441 case 16:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
442 this->m_sDestType.subtype = MEDIASUBTYPE_RGB565;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
443 break;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
444 case 24:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
445 this->m_sDestType.subtype = MEDIASUBTYPE_RGB24;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
446 break;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
447 case 32:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
448 this->m_sDestType.subtype = MEDIASUBTYPE_RGB32;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
449 break;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
450 default:
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
451 ok = false;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
452 break;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
453 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
454
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
455 if (ok) {
9581
0ef45318414a a warning fix and rgb15/16 support by Sascha Sommer
alex
parents: 9503
diff changeset
456 if (bits == 15)
0ef45318414a a warning fix and rgb15/16 support by Sascha Sommer
alex
parents: 9503
diff changeset
457 this->iv.m_obh.biBitCount=16;
0ef45318414a a warning fix and rgb15/16 support by Sascha Sommer
alex
parents: 9503
diff changeset
458 else
0ef45318414a a warning fix and rgb15/16 support by Sascha Sommer
alex
parents: 9503
diff changeset
459 this->iv.m_obh.biBitCount=bits;
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
460 if( bits == 15 || bits == 16 ) {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
461 this->iv.m_obh.biSize=sizeof(BITMAPINFOHEADER)+12;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
462 this->iv.m_obh.biCompression=3;//BI_BITFIELDS
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
463 this->iv.m_obh.biSizeImage=abs((int)(2*this->iv.m_obh.biWidth*this->iv.m_obh.biHeight));
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
464 }
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
465
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
466 if( bits == 16 ) {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
467 this->iv.m_obh.colors[0]=0xF800;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
468 this->iv.m_obh.colors[1]=0x07E0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
469 this->iv.m_obh.colors[2]=0x001F;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
470 } else if ( bits == 15 ) {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
471 this->iv.m_obh.colors[0]=0x7C00;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
472 this->iv.m_obh.colors[1]=0x03E0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
473 this->iv.m_obh.colors[2]=0x001F;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
474 } else {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
475 this->iv.m_obh.biSize = sizeof(BITMAPINFOHEADER);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
476 this->iv.m_obh.biCompression = 0; //BI_RGB
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
477 //this->iv.m_obh.biHeight = labs(this->iv.m_obh.biHeight);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
478 this->iv.m_obh.biSizeImage = labs(this->iv.m_obh.biWidth * this->iv.m_obh.biHeight)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
479 * ((this->iv.m_obh.biBitCount + 7) / 8);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
480 }
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
481 }
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
482 //.biSizeImage=abs(temp.biWidth*temp.biHeight*((temp.biBitCount+7)/8));
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
483 } else
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
484 { // YUV
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
485 int ok = true;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
486 switch (csp)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
487 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
488 case fccYUY2:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
489 this->m_sDestType.subtype = MEDIASUBTYPE_YUY2;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
490 break;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
491 case fccYV12:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
492 this->m_sDestType.subtype = MEDIASUBTYPE_YV12;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
493 break;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
494 case fccIYUV:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
495 this->m_sDestType.subtype = MEDIASUBTYPE_IYUV;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
496 break;
6527
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
497 case fccI420:
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
498 this->m_sDestType.subtype = MEDIASUBTYPE_I420;
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
499 break;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
500 case fccUYVY:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
501 this->m_sDestType.subtype = MEDIASUBTYPE_UYVY;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
502 break;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
503 case fccYVYU:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
504 this->m_sDestType.subtype = MEDIASUBTYPE_YVYU;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
505 break;
6527
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
506 case fccYVU9:
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
507 this->m_sDestType.subtype = MEDIASUBTYPE_YVU9;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
508 default:
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
509 ok = false;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
510 break;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
511 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
512
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
513 if (ok) {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
514 if (csp != 0 && csp != 3 && this->iv.m_obh.biHeight > 0)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
515 this->iv.m_obh.biHeight *= -1; // YUV formats uses should have height < 0
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
516 this->iv.m_obh.biSize = sizeof(BITMAPINFOHEADER);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
517 this->iv.m_obh.biCompression=csp;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
518 this->iv.m_obh.biBitCount=bits;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
519 this->iv.m_obh.biSizeImage=labs(this->iv.m_obh.biBitCount*
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
520 this->iv.m_obh.biWidth*this->iv.m_obh.biHeight)>>3;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
521 }
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
522 }
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
523 this->m_sDestType.lSampleSize = this->iv.m_obh.biSizeImage;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
524 memcpy(&(this->m_sVhdr2->bmiHeader), &this->iv.m_obh, sizeof(this->iv.m_obh));
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
525 this->m_sVhdr2->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
526 if (this->m_sVhdr2->bmiHeader.biCompression == 3)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
527 this->m_sDestType.cbFormat = sizeof(VIDEOINFOHEADER) + 12;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
528 else
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
529 this->m_sDestType.cbFormat = sizeof(VIDEOINFOHEADER);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
530
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
531
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
532 switch(csp)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
533 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
534 case fccYUY2:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
535 if(!(this->m_Caps & CAP_YUY2))
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
536 should_test=false;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
537 break;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
538 case fccYV12:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
539 if(!(this->m_Caps & CAP_YV12))
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
540 should_test=false;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
541 break;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
542 case fccIYUV:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
543 if(!(this->m_Caps & CAP_IYUV))
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
544 should_test=false;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
545 break;
6527
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
546 case fccI420:
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
547 if(!(this->m_Caps & CAP_I420))
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
548 should_test=false;
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
549 break;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
550 case fccUYVY:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
551 if(!(this->m_Caps & CAP_UYVY))
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
552 should_test=false;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
553 break;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
554 case fccYVYU:
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
555 if(!(this->m_Caps & CAP_YVYU))
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
556 should_test=false;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
557 break;
6527
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
558 case fccYVU9:
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
559 if(!(this->m_Caps & CAP_YVU9))
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
560 should_test=false;
1baa35e06053 yvu9 and if09 support. fixed i420,iyuv handling
alex
parents: 4205
diff changeset
561 break;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
562 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
563 if(should_test)
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
564 result = this->m_pDS_Filter->m_pOutputPin->vt->QueryAccept(this->m_pDS_Filter->m_pOutputPin, &this->m_sDestType);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
565 else
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
566 result = -1;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
567
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
568 if (result != 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
569 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
570 if (csp)
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
571 printf("Warning: unsupported color space\n");
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
572 else
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
573 printf("Warning: unsupported bit depth\n");
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
574
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
575 this->m_sDestType.lSampleSize = this->iv.m_decoder.biSizeImage;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
576 memcpy(&(this->m_sVhdr2->bmiHeader), &this->iv.m_decoder, sizeof(this->iv.m_decoder));
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
577 this->m_sVhdr2->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
578 if (this->m_sVhdr2->bmiHeader.biCompression == 3)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
579 this->m_sDestType.cbFormat = sizeof(VIDEOINFOHEADER) + 12;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
580 else
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
581 this->m_sDestType.cbFormat = sizeof(VIDEOINFOHEADER);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
582
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
583 return -1;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
584 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
585
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
586 memcpy( &this->iv.m_decoder, &this->iv.m_obh, sizeof(this->iv.m_obh));
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
587
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
588 // m_obh=temp;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
589 // if(csp)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
590 // m_obh.biBitCount=BitmapInfo::BitCount(csp);
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
591 this->iv.m_bh->biBitCount = bits;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
592
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
593 //DS_VideoDecoder_Restart(this);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
594
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
595 if (this->iv.m_State == START)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
596 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
597 DS_VideoDecoder_StopInternal(this);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
598 this->iv.m_State = STOP;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
599 stoped = true;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
600 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
601
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
602 this->m_pDS_Filter->m_pInputPin->vt->Disconnect(this->m_pDS_Filter->m_pInputPin);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
603 this->m_pDS_Filter->m_pOutputPin->vt->Disconnect(this->m_pDS_Filter->m_pOutputPin);
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
604 this->m_pDS_Filter->m_pOurOutput->SetNewFormat(this->m_pDS_Filter->m_pOurOutput,&this->m_sDestType);
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
605 result = this->m_pDS_Filter->m_pInputPin->vt->ReceiveConnection(this->m_pDS_Filter->m_pInputPin,
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
606 this->m_pDS_Filter->m_pOurInput,
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
607 &this->m_sOurType);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
608 if (result)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
609 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
610 printf("Error reconnecting input pin 0x%x\n", (int)result);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
611 return -1;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
612 }
22307
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
613
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
614 if(this->m_pDS_Filter->m_pAll)
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
615 this->m_pDS_Filter->m_pAll->vt->Release(this->m_pDS_Filter->m_pAll);
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
616 this->m_pDS_Filter->m_pAll=MemAllocatorCreate();
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
617 if (!this->m_pDS_Filter->m_pAll)
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
618 {
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
619 printf("Call to MemAllocatorCreate failed\n");
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
620 return -1;
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
621 }
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
622 //Seting allocator property according to our media type
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
623 props.cBuffers=1;
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
624 props.cbBuffer=this->m_sDestType.lSampleSize;
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
625 props.cbAlign=1;
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
626 props.cbPrefix=0;
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
627 this->m_pDS_Filter->m_pAll->vt->SetProperties(this->m_pDS_Filter->m_pAll, &props, &props1);
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
628 //Notify remote pin about choosed allocator
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
629 this->m_pDS_Filter->m_pImp->vt->NotifyAllocator(this->m_pDS_Filter->m_pImp, this->m_pDS_Filter->m_pAll, 0);
68125c62b6eb Fix loading of mpeg4ds direct show video codec under win32, broken in r22322
voroshil
parents: 22304
diff changeset
630
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
631 result = this->m_pDS_Filter->m_pOutputPin->vt->ReceiveConnection(this->m_pDS_Filter->m_pOutputPin,
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
632 (IPin *)this->m_pDS_Filter->m_pOurOutput,
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
633 &this->m_sDestType);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
634 if (result)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
635 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
636 printf("Error reconnecting output pin 0x%x\n", (int)result);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
637 return -1;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
638 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
639
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
640 if (stoped)
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
641 {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
642 DS_VideoDecoder_StartInternal(this);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
643 this->iv.m_State = START;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
644 }
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
645
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
646 return 0;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
647 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
648
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
649
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
650 int DS_VideoDecoder_SetDirection(DS_VideoDecoder *this, int d)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
651 {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
652 this->iv.m_obh.biHeight = (d) ? this->iv.m_bh->biHeight : -this->iv.m_bh->biHeight;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
653 this->m_sVhdr2->bmiHeader.biHeight = this->iv.m_obh.biHeight;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
654 return 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
655 }
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
656
3946
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
657 int DS_VideoDecoder_GetValue(DS_VideoDecoder *this, const char* name, int* value)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
658 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
659 /*
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
660 if (m_bIsDivX4)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
661 {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
662 IDivxFilterInterface* pIDivx;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
663 if (m_pDS_Filter->m_pFilter->vt->QueryInterface((IUnknown*)m_pDS_Filter->m_pFilter, &IID_IDivxFilterInterface, (void**)&pIDivx))
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
664 {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
665 Debug printf("No such interface\n");
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
666 return -1;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
667 }
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
668 if (strcmp(name, "Postprocessing") == 0)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
669 {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
670 pIDivx->vt->get_PPLevel(pIDivx, &value);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
671 value /= 10;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
672 }
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
673 else if (strcmp(name, "Brightness") == 0)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
674 pIDivx->vt->get_Brightness(pIDivx, &value);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
675 else if (strcmp(name, "Contrast") == 0)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
676 pIDivx->vt->get_Contrast(pIDivx, &value);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
677 else if (strcmp(name, "Saturation") == 0)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
678 pIDivx->vt->get_Saturation(pIDivx, &value);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
679 else if (strcmp(name, "MaxAuto") == 0)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
680 value = m_iMaxAuto;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
681 pIDivx->vt->Release((IUnknown*)pIDivx);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
682 return 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
683 }
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
684 else if (m_bIsDivX)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
685 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
686 if (m_State != START)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
687 return VFW_E_NOT_RUNNING;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
688 // brightness 87
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
689 // contrast 74
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
690 // hue 23
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
691 // saturation 20
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
692 // post process mode 0
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
693 // get1 0x01
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
694 // get2 10
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
695 // get3=set2 86
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
696 // get4=set3 73
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
697 // get5=set4 19
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
698 // get6=set5 23
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
699 IHidden* hidden=(IHidden*)((int)m_pDS_Filter->m_pFilter+0xb8);
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
700 if (strcmp(name, "Quality") == 0)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
701 {
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
702 #warning NOT SURE
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
703 int r = hidden->vt->GetSmth2(hidden, &value);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
704 if (value >= 10)
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
705 value -= 10;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
706 return 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
707 }
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
708 if (strcmp(name, "Brightness") == 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
709 return hidden->vt->GetSmth3(hidden, &value);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
710 if (strcmp(name, "Contrast") == 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
711 return hidden->vt->GetSmth4(hidden, &value);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
712 if (strcmp(name, "Hue") == 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
713 return hidden->vt->GetSmth6(hidden, &value);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
714 if (strcmp(name, "Saturation") == 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
715 return hidden->vt->GetSmth5(hidden, &value);
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
716 if (strcmp(name, "MaxAuto") == 0)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
717 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
718 value = m_iMaxAuto;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
719 return 0;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
720 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
721 }
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
722 else if (strcmp((const char*)record.dll, "ir50_32.dll") == 0)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
723 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
724 IHidden2* hidden = 0;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
725 if (m_pDS_Filter->m_pFilter->vt->QueryInterface((IUnknown*)m_pDS_Filter->m_pFilter, &IID_Iv50Hidden, (void**)&hidden))
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
726 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
727 Debug printf("No such interface\n");
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
728 return -1;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
729 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
730 #warning FIXME
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
731 int recordpar[30];
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
732 recordpar[0]=0x7c;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
733 recordpar[1]=fccIV50;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
734 recordpar[2]=0x10005;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
735 recordpar[3]=2;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
736 recordpar[4]=1;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
737 recordpar[5]=0x80000000;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
738
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
739 if (strcmp(name, "Brightness") == 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
740 recordpar[5]|=0x20;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
741 else if (strcmp(name, "Saturation") == 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
742 recordpar[5]|=0x40;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
743 else if (strcmp(name, "Contrast") == 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
744 recordpar[5]|=0x80;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
745 if (!recordpar[5])
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
746 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
747 hidden->vt->Release((IUnknown*)hidden);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
748 return -1;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
749 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
750 if (hidden->vt->DecodeSet(hidden, recordpar))
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
751 return -1;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
752
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
753 if (strcmp(name, "Brightness") == 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
754 value = recordpar[18];
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
755 else if (strcmp(name, "Saturation") == 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
756 value = recordpar[19];
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
757 else if (strcmp(name, "Contrast") == 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
758 value = recordpar[20];
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
759
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
760 hidden->vt->Release((IUnknown*)hidden);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
761 }
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
762 */
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
763 return 0;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
764 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
765
3946
c00db356082f headers cleanup
arpi
parents: 3466
diff changeset
766 int DS_VideoDecoder_SetValue(DS_VideoDecoder *this, const char* name, int value)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
767 {
3957
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
768 if (this->m_bIsDivX4) {
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
769 IDivxFilterInterface* pIDivx=NULL;
3978
2ba1d0ca9dce debug--
arpi
parents: 3957
diff changeset
770 // printf("DS_SetValue for DIVX4, name=%s value=%d\n",name,value);
3957
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
771 if (this->m_pDS_Filter->m_pFilter->vt->QueryInterface((IUnknown*)this->m_pDS_Filter->m_pFilter, &IID_IDivxFilterInterface, (void**)&pIDivx))
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
772 {
3957
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
773 printf("No such interface\n");
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
774 return -1;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
775 }
6801
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
776 if (strcasecmp(name, "Postprocessing") == 0)
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
777 pIDivx->vt->put_PPLevel(pIDivx, value * 10);
6801
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
778 else if (strcasecmp(name, "Brightness") == 0)
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
779 pIDivx->vt->put_Brightness(pIDivx, value);
6801
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
780 else if (strcasecmp(name, "Contrast") == 0)
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
781 pIDivx->vt->put_Contrast(pIDivx, value);
6801
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
782 else if (strcasecmp(name, "Saturation") == 0)
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
783 pIDivx->vt->put_Saturation(pIDivx, value);
6801
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
784 else if (strcasecmp(name, "MaxAuto") == 0)
3957
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
785 this->m_iMaxAuto = value;
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
786 pIDivx->vt->Release((IUnknown*)pIDivx);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
787 //printf("Set %s %d\n", name, value);
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
788 return 0;
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
789 }
3957
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
790
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
791 if (this->m_bIsDivX) {
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
792 IHidden* hidden;
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
793 if (this->iv.m_State != START)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
794 return VFW_E_NOT_RUNNING;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
795
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
796 //cout << "set value " << name << " " << value << endl;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
797 // brightness 87
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
798 // contrast 74
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
799 // hue 23
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
800 // saturation 20
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
801 // post process mode 0
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
802 // get1 0x01
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
803 // get2 10
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
804 // get3=set2 86
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
805 // get4=set3 73
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
806 // get5=set4 19
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
807 // get6=set5 23
3957
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
808 hidden = (IHidden*)((int)this->m_pDS_Filter->m_pFilter + 0xb8);
7316
e09428ee353f disable annonying debug printf (autoq)
atmos4
parents: 6801
diff changeset
809 //printf("DS_SetValue for DIVX, name=%s value=%d\n",name,value);
6801
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
810 if (strcasecmp(name, "Quality") == 0)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
811 {
3957
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
812 this->m_iLastQuality = value;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
813 return hidden->vt->SetSmth(hidden, value, 0);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
814 }
6801
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
815 if (strcasecmp(name, "Brightness") == 0)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
816 return hidden->vt->SetSmth2(hidden, value, 0);
6801
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
817 if (strcasecmp(name, "Contrast") == 0)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
818 return hidden->vt->SetSmth3(hidden, value, 0);
6801
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
819 if (strcasecmp(name, "Saturation") == 0)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
820 return hidden->vt->SetSmth4(hidden, value, 0);
6801
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
821 if (strcasecmp(name, "Hue") == 0)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
822 return hidden->vt->SetSmth5(hidden, value, 0);
6801
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
823 if (strcasecmp(name, "MaxAuto") == 0)
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
824 {
3957
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
825 this->m_iMaxAuto = value;
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
826 }
3957
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
827 return 0;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
828 }
3957
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
829 #if 0
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
830 if (strcmp((const char*)record.dll, "ir50_32.dll") == 0)
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
831 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
832 IHidden2* hidden = 0;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
833 if (m_pDS_Filter->m_pFilter->vt->QueryInterface((IUnknown*)m_pDS_Filter->m_pFilter, &IID_Iv50Hidden, (void**)&hidden))
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
834 {
3059
24fa494bedb1 imported from xine
arpi
parents: 2875
diff changeset
835 Debug printf("No such interface\n");
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
836 return -1;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
837 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
838 int recordpar[30];
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
839 recordpar[0]=0x7c;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
840 recordpar[1]=fccIV50;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
841 recordpar[2]=0x10005;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
842 recordpar[3]=2;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
843 recordpar[4]=1;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
844 recordpar[5]=0x80000000;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
845 if (strcmp(name, "Brightness") == 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
846 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
847 recordpar[5]|=0x20;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
848 recordpar[18]=value;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
849 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
850 else if (strcmp(name, "Saturation") == 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
851 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
852 recordpar[5]|=0x40;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
853 recordpar[19]=value;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
854 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
855 else if (strcmp(name, "Contrast") == 0)
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
856 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
857 recordpar[5]|=0x80;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
858 recordpar[20]=value;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
859 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
860 if(!recordpar[5])
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
861 {
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
862 hidden->vt->Release((IUnknown*)hidden);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
863 return -1;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
864 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
865 HRESULT result = hidden->vt->DecodeSet(hidden, recordpar);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
866 hidden->vt->Release((IUnknown*)hidden);
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
867
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
868 return result;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
869 }
3957
49290522ab06 SetValue fixed, iv_State=START enabled (silly xine developers disabled for unknown reason)
arpi
parents: 3946
diff changeset
870 #endif
3978
2ba1d0ca9dce debug--
arpi
parents: 3957
diff changeset
871 // printf("DS_SetValue for ????, name=%s value=%d\n",name,value);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
872 return 0;
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
873 }
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
874 /*
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
875 vim: vi* sux.
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
876 */
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
877
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
878 int DS_SetAttr_DivX(char* attribute, int value){
7472
c4434bdf6e51 tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents: 7316
diff changeset
879 int result, status, newkey;
6801
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
880 if(strcasecmp(attribute, "Quality")==0){
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
881 char* keyname="SOFTWARE\\Microsoft\\Scrunch";
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
882 result=RegCreateKeyExA(HKEY_CURRENT_USER, keyname, 0, 0, 0, 0, 0, &newkey, &status);
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
883 if(result!=0)
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
884 {
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
885 printf("VideoDecoder::SetExtAttr: registry failure\n");
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
886 return -1;
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
887 }
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
888 result=RegSetValueExA(newkey, "Current Post Process Mode", 0, REG_DWORD, &value, 4);
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
889 if(result!=0)
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
890 {
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
891 printf("VideoDecoder::SetExtAttr: error writing value\n");
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
892 return -1;
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
893 }
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
894 value=-1;
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
895 result=RegSetValueExA(newkey, "Force Post Process Mode", 0, REG_DWORD, &value, 4);
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
896 if(result!=0)
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
897 {
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
898 printf("VideoDecoder::SetExtAttr: error writing value\n");
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
899 return -1;
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
900 }
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
901 RegCloseKey(newkey);
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
902 return 0;
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
903 }
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
904
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
905 if(
6801
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
906 (strcasecmp(attribute, "Saturation")==0) ||
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
907 (strcasecmp(attribute, "Hue")==0) ||
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
908 (strcasecmp(attribute, "Contrast")==0) ||
7847b993acf3 SetValue: ignore case of 'item'
arpi
parents: 6527
diff changeset
909 (strcasecmp(attribute, "Brightness")==0)
3063
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
910 )
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
911 {
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
912 char* keyname="SOFTWARE\\Microsoft\\Scrunch\\Video";
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
913 result=RegCreateKeyExA(HKEY_CURRENT_USER, keyname, 0, 0, 0, 0, 0, &newkey, &status);
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
914 if(result!=0)
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
915 {
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
916 printf("VideoDecoder::SetExtAttr: registry failure\n");
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
917 return -1;
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
918 }
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
919 result=RegSetValueExA(newkey, attribute, 0, REG_DWORD, &value, 4);
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
920 if(result!=0)
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
921 {
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
922 printf("VideoDecoder::SetExtAttr: error writing value\n");
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
923 return -1;
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
924 }
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
925 RegCloseKey(newkey);
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
926 return 0;
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
927 }
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
928
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
929 printf("Unknown attribute!\n");
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
930 return -200;
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
931 }
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
932
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
933
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
934
004e3199fee0 mplayer integration
arpi
parents: 3060
diff changeset
935