summaryrefslogtreecommitdiff
path: root/src/libw32dll/DirectShow/DS_VideoDecoder.c
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2003-12-24 16:55:35 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2003-12-24 16:55:35 +0000
commit875b71e7f35c15b6f86c9b8183d24aa2a941123d (patch)
tree99e2851fd659deb09ec531140e7cfa8fccefd8d3 /src/libw32dll/DirectShow/DS_VideoDecoder.c
parent94c8fa4b865b80a1113ece12d8596dcaf647aac0 (diff)
downloadxine-lib-875b71e7f35c15b6f86c9b8183d24aa2a941123d.tar.gz
xine-lib-875b71e7f35c15b6f86c9b8183d24aa2a941123d.tar.bz2
time for some Christmas presents...
libw32 compiles here without a single compiler warning CVS patchset: 5946 CVS date: 2003/12/24 16:55:35
Diffstat (limited to 'src/libw32dll/DirectShow/DS_VideoDecoder.c')
-rw-r--r--src/libw32dll/DirectShow/DS_VideoDecoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libw32dll/DirectShow/DS_VideoDecoder.c b/src/libw32dll/DirectShow/DS_VideoDecoder.c
index 75f28127d..e34659f91 100644
--- a/src/libw32dll/DirectShow/DS_VideoDecoder.c
+++ b/src/libw32dll/DirectShow/DS_VideoDecoder.c
@@ -65,7 +65,7 @@ typedef struct _ct ct;
struct _ct {
unsigned int bits;
fourcc_t fcc;
- GUID *subtype;
+ const GUID *subtype;
int cap;
};
@@ -228,7 +228,7 @@ DS_VideoDecoder * DS_VideoDecoder_Open(char* dllname, GUID* guid, BITMAPINFOHEAD
if (!result)
{
this->m_Caps = (this->m_Caps | c->cap);
- printf("%.4s ", &c->fcc);
+ printf("%.4s ", (char *)&c->fcc);
}
}
printf("\n");