Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
97823006
Commit
97823006
authored
Sep 26, 2006
by
Damien Fouilleul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- activex: more features and fully updated test.html for new APIs
parent
6ff95ea3
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
479 additions
and
771 deletions
+479
-771
activex/Makefile.am
activex/Makefile.am
+4
-6
activex/axvlc.idl
activex/axvlc.idl
+6
-16
activex/axvlc.inf.in
activex/axvlc.inf.in
+1
-1
activex/axvlc.tlb
activex/axvlc.tlb
+0
-0
activex/axvlc_idl.c
activex/axvlc_idl.c
+0
-1
activex/axvlc_idl.h
activex/axvlc_idl.h
+136
-300
activex/plugin.cpp
activex/plugin.cpp
+26
-15
activex/test.html
activex/test.html
+146
-89
activex/vlcconfiguration.cpp
activex/vlcconfiguration.cpp
+0
-235
activex/vlcconfiguration.h
activex/vlcconfiguration.h
+0
-87
activex/vlccontrol2.cpp
activex/vlccontrol2.cpp
+135
-10
activex/vlccontrol2.h
activex/vlccontrol2.h
+25
-11
No files found.
activex/Makefile.am
View file @
97823006
...
...
@@ -38,8 +38,6 @@ SOURCES_activex = \
viewobject.h
\
vlccontrol.cpp
\
vlccontrol.h
\
vlcconfiguration.cpp
\
vlcconfiguration.h
\
vlccontrol2.cpp
\
vlccontrol2.h
\
plugin.cpp
\
...
...
@@ -80,10 +78,10 @@ LDFLAGS_activex = `$(VLC_CONFIG) --libs activex vlc builtin`
libaxvlc_a_SOURCES
=
$(SOURCES_activex)
$(SOURCE_dll)
libaxvlc_a_CFLAGS
=
`
$(VLC_CONFIG)
--cflags
activex
`
libaxvlc_a_CXXFLAGS
=
`
$(VLC_CONFIG)
--cxxflags
activex
`
libaxvlc_a_DEPENDENCIES
=
axvlc.def
$(DATA_axvlc_rc)
libaxvlc_a_DEPENDENCIES
=
axvlc.def
$(DATA_axvlc_rc)
$(LIBRARIES_libvlc)
axvlc$(LIBEXT)
:
$(libaxvlc_a_OBJECTS)
\
$(libaxvlc_a_DEPENDENCIES) stamp-
pic
$(libaxvlc_a_DEPENDENCIES) stamp-
builtin
$(CXXLINK)
$(libaxvlc_a_OBJECTS)
$(DATA_axvlc_rc)
\
$(srcdir)
/axvlc.def
\
$(LIBRARIES_libvlc)
-shared
$(LIBRARIES_libvlc)
$(LDFLAGS_activex)
\
...
...
@@ -140,9 +138,9 @@ clean-stamp:
rm
-f
stamp-pic
if
BUILD_SHARED
stamp-
pic
:
stamp-
builtin
:
else
stamp-
pic
:
$(shell ${VLC_CONFIG} --target builtin)
stamp-
builtin
:
$(shell ${VLC_CONFIG} --target builtin)
endif
@
touch
$@
...
...
activex/axvlc.idl
View file @
97823006
...
...
@@ -208,7 +208,7 @@ library AXVLC
interface
IVLCInput
:
IDispatch
{
[
propget
,
helpstring
(
"Returns the clip length, in milliseconds."
)
]
HRESULT
length
(
[
out
,
retval
]
__int64
*
length
)
;
HRESULT
length
(
[
out
,
retval
]
double
*
length
)
;
[
propget
,
helpstring
(
"Returns/sets playback position in current clip. Position is ranging from 0.0 to 1.0."
)
]
HRESULT
position
(
[
out
,
retval
]
float
*
position
)
;
...
...
@@ -216,9 +216,9 @@ library AXVLC
HRESULT
position
(
[
in
]
float
position
)
;
[
propget
,
helpstring
(
"Returns/sets playback time in current clip, in milliseconds."
)
]
HRESULT
time
(
[
out
,
retval
]
__int64
*
time
)
;
HRESULT
time
(
[
out
,
retval
]
double
*
time
)
;
[
propput
,
helpstring
(
"Returns/sets playback time in the current clip, in milliseconds."
)
]
HRESULT
time
(
[
in
]
__int64
time
)
;
HRESULT
time
(
[
in
]
double
time
)
;
[
propget
,
helpstring
(
"Returns current playback state."
)
]
HRESULT
state
(
[
out
,
retval
]
int
*
state
)
;
...
...
@@ -301,12 +301,12 @@ library AXVLC
[
odl
,
uuid
(
15179
CD8
-
CC12
-
4242
-
A58E
-
E412217FF34
3
),
helpstring
(
"VLC Con
figuration options
"
),
uuid
(
2
D719729
-
5333
-
406
C
-
BF12
-
8
DE787FD65E
3
),
helpstring
(
"VLC Con
trol
"
),
dual
,
oleautomation
]
interface
IVLCCon
figuration
:
IDispatch
interface
IVLCCon
trol2
:
IDispatch
{
[
id
(
DISPID_AutoLoop
),
propget
,
helpstring
(
"Returns/sets a value that determines whether the playlist is looped"
)
]
HRESULT
AutoLoop
(
[
out
,
retval
]
VARIANT_BOOL
*
autoloop
)
;
...
...
@@ -345,17 +345,7 @@ library AXVLC
HRESULT
Volume
(
[
out
,
retval
]
int
*
volume
)
;
[
id
(
DISPID_Volume
),
propput
,
helpstring
(
"Returns/sets default audio volume."
)
]
HRESULT
Volume
(
[
in
]
int
volume
)
;
}
;
[
odl
,
uuid
(
2
D719729
-
5333
-
406
C
-
BF12
-
8
DE787FD65E3
),
helpstring
(
"VLC Control"
),
dual
,
oleautomation
]
interface
IVLCControl2
:
IVLCConfiguration
{
[
propget
,
helpstring
(
"Returns the audio object."
)
]
HRESULT
audio
(
[
out
,
retval
]
IVLCAudio
**
obj
)
;
...
...
activex/axvlc.inf.in
View file @
97823006
...
...
@@ -10,7 +10,7 @@
[axvlc.dll]
FileVersion=@VERSION_MAJOR@,@VERSION_MINOR@,@VERSION_REVISION@,0
clsid={
E23FE9C6-778E-49d4-B537-38FCDE4887D8
}
clsid={
9BE31822-FDAD-461B-AD51-BE1D1C159921
}
RegisterServer=no
Hook=runinstaller
...
...
activex/axvlc.tlb
View file @
97823006
No preview for this file type
activex/axvlc_idl.c
View file @
97823006
...
...
@@ -17,7 +17,6 @@ DEFINE_GUID(IID_IVLCAudio, 0x9e0bd17b, 0x2d3c, 0x4656, 0xb9,0x4d, 0x03,0x08,0x4f
DEFINE_GUID
(
IID_IVLCInput
,
0x49e0dbd1
,
0x9440
,
0x466c
,
0x9c
,
0x97
,
0x95
,
0xc6
,
0x71
,
0x90
,
0xc6
,
0x03
);
DEFINE_GUID
(
IID_IVLCPlaylist
,
0x54613049
,
0x40bf
,
0x4035
,
0x9e
,
0x70
,
0x0a
,
0x93
,
0x12
,
0xc0
,
0x18
,
0x8d
);
DEFINE_GUID
(
IID_IVLCVideo
,
0x0aaedf0b
,
0xd333
,
0x4b27
,
0xa0
,
0xc6
,
0xbb
,
0xf3
,
0x14
,
0x13
,
0xa4
,
0x2e
);
DEFINE_GUID
(
IID_IVLCConfiguration
,
0x15179cd8
,
0xcc12
,
0x4242
,
0xa5
,
0x8e
,
0xe4
,
0x12
,
0x21
,
0x7f
,
0xf3
,
0x43
);
DEFINE_GUID
(
IID_IVLCControl2
,
0x2d719729
,
0x5333
,
0x406c
,
0xbf
,
0x12
,
0x8d
,
0xe7
,
0x87
,
0xfd
,
0x65
,
0xe3
);
DEFINE_GUID
(
CLSID_VLCPlugin
,
0xe23fe9c6
,
0x778e
,
0x49d4
,
0xb5
,
0x37
,
0x38
,
0xfc
,
0xde
,
0x48
,
0x87
,
0xd8
);
DEFINE_GUID
(
CLSID_VLCPlugin2
,
0x9be31822
,
0xfdad
,
0x461b
,
0xad
,
0x51
,
0xbe
,
0x1d
,
0x1c
,
0x15
,
0x99
,
0x21
);
...
...
activex/axvlc_idl.h
View file @
97823006
...
...
@@ -940,7 +940,7 @@ DEFINE_GUID(IID_IVLCInput, 0x49e0dbd1, 0x9440, 0x466c, 0x9c,0x97, 0x95,0xc6,0x71
interface
IVLCInput
:
public
IDispatch
{
virtual
HRESULT
STDMETHODCALLTYPE
get_length
(
__int64
*
length
)
=
0
;
double
*
length
)
=
0
;
virtual
HRESULT
STDMETHODCALLTYPE
get_position
(
float
*
position
)
=
0
;
...
...
@@ -949,10 +949,10 @@ interface IVLCInput : public IDispatch
float
position
)
=
0
;
virtual
HRESULT
STDMETHODCALLTYPE
get_time
(
__int64
*
time
)
=
0
;
double
*
time
)
=
0
;
virtual
HRESULT
STDMETHODCALLTYPE
put_time
(
__int64
time
)
=
0
;
double
time
)
=
0
;
virtual
HRESULT
STDMETHODCALLTYPE
get_state
(
int
*
state
)
=
0
;
...
...
@@ -1019,7 +1019,7 @@ typedef struct IVLCInputVtbl {
/*** IVLCInput methods ***/
HRESULT
(
STDMETHODCALLTYPE
*
get_length
)(
IVLCInput
*
This
,
__int64
*
length
);
double
*
length
);
HRESULT
(
STDMETHODCALLTYPE
*
get_position
)(
IVLCInput
*
This
,
...
...
@@ -1031,11 +1031,11 @@ typedef struct IVLCInputVtbl {
HRESULT
(
STDMETHODCALLTYPE
*
get_time
)(
IVLCInput
*
This
,
__int64
*
time
);
double
*
time
);
HRESULT
(
STDMETHODCALLTYPE
*
put_time
)(
IVLCInput
*
This
,
__int64
time
);
double
time
);
HRESULT
(
STDMETHODCALLTYPE
*
get_state
)(
IVLCInput
*
This
,
...
...
@@ -1090,7 +1090,7 @@ interface IVLCInput {
HRESULT
CALLBACK
IVLCInput_get_length_Proxy
(
IVLCInput
*
This
,
__int64
*
length
);
double
*
length
);
void
__RPC_STUB
IVLCInput_get_length_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
...
...
@@ -1114,7 +1114,7 @@ void __RPC_STUB IVLCInput_put_position_Stub(
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCInput_get_time_Proxy
(
IVLCInput
*
This
,
__int64
*
time
);
double
*
time
);
void
__RPC_STUB
IVLCInput_get_time_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
...
...
@@ -1122,7 +1122,7 @@ void __RPC_STUB IVLCInput_get_time_Stub(
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCInput_put_time_Proxy
(
IVLCInput
*
This
,
__int64
time
);
double
time
);
void
__RPC_STUB
IVLCInput_put_time_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
...
...
@@ -1572,20 +1572,15 @@ void __RPC_STUB IVLCVideo_get_height_Stub(
#endif
/* __IVLCVideo_INTERFACE_DEFINED__ */
#ifndef __IVLCConfiguration_FWD_DEFINED__
#define __IVLCConfiguration_FWD_DEFINED__
typedef
interface
IVLCConfiguration
IVLCConfiguration
;
#endif
/*****************************************************************************
* IVLCCon
figuration
interface
* IVLCCon
trol2
interface
*/
#ifndef __IVLCCon
figuration
_INTERFACE_DEFINED__
#define __IVLCCon
figuration
_INTERFACE_DEFINED__
#ifndef __IVLCCon
trol2
_INTERFACE_DEFINED__
#define __IVLCCon
trol2
_INTERFACE_DEFINED__
DEFINE_GUID
(
IID_IVLCCon
figuration
,
0x15179cd8
,
0xcc12
,
0x4242
,
0xa5
,
0x8e
,
0xe4
,
0x12
,
0x21
,
0x7f
,
0xf3
,
0x4
3
);
DEFINE_GUID
(
IID_IVLCCon
trol2
,
0x2d719729
,
0x5333
,
0x406c
,
0xbf
,
0x12
,
0x8d
,
0xe7
,
0x87
,
0xfd
,
0x65
,
0xe
3
);
#if defined(__cplusplus) && !defined(CINTERFACE)
interface
IVLCCon
figuration
:
public
IDispatch
interface
IVLCCon
trol2
:
public
IDispatch
{
virtual
HRESULT
STDMETHODCALLTYPE
get_AutoLoop
(
VARIANT_BOOL
*
autoloop
)
=
0
;
...
...
@@ -1632,283 +1627,6 @@ interface IVLCConfiguration : public IDispatch
virtual
HRESULT
STDMETHODCALLTYPE
put_Volume
(
int
volume
)
=
0
;
};
#else
typedef
struct
IVLCConfigurationVtbl
{
BEGIN_INTERFACE
/*** IUnknown methods ***/
HRESULT
(
STDMETHODCALLTYPE
*
QueryInterface
)(
IVLCConfiguration
*
This
,
REFIID
riid
,
void
**
ppvObject
);
ULONG
(
STDMETHODCALLTYPE
*
AddRef
)(
IVLCConfiguration
*
This
);
ULONG
(
STDMETHODCALLTYPE
*
Release
)(
IVLCConfiguration
*
This
);
/*** IDispatch methods ***/
HRESULT
(
STDMETHODCALLTYPE
*
GetTypeInfoCount
)(
IVLCConfiguration
*
This
,
UINT
*
pctinfo
);
HRESULT
(
STDMETHODCALLTYPE
*
GetTypeInfo
)(
IVLCConfiguration
*
This
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
);
HRESULT
(
STDMETHODCALLTYPE
*
GetIDsOfNames
)(
IVLCConfiguration
*
This
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
LCID
lcid
,
DISPID
*
rgDispId
);
HRESULT
(
STDMETHODCALLTYPE
*
Invoke
)(
IVLCConfiguration
*
This
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
WORD
wFlags
,
DISPPARAMS
*
pDispParams
,
VARIANT
*
pVarResult
,
EXCEPINFO
*
pExcepInfo
,
UINT
*
puArgErr
);
/*** IVLCConfiguration methods ***/
HRESULT
(
STDMETHODCALLTYPE
*
get_AutoLoop
)(
IVLCConfiguration
*
This
,
VARIANT_BOOL
*
autoloop
);
HRESULT
(
STDMETHODCALLTYPE
*
put_AutoLoop
)(
IVLCConfiguration
*
This
,
VARIANT_BOOL
autoloop
);
HRESULT
(
STDMETHODCALLTYPE
*
get_AutoPlay
)(
IVLCConfiguration
*
This
,
VARIANT_BOOL
*
autoplay
);
HRESULT
(
STDMETHODCALLTYPE
*
put_AutoPlay
)(
IVLCConfiguration
*
This
,
VARIANT_BOOL
autoplay
);
HRESULT
(
STDMETHODCALLTYPE
*
get_BaseURL
)(
IVLCConfiguration
*
This
,
BSTR
*
url
);
HRESULT
(
STDMETHODCALLTYPE
*
put_BaseURL
)(
IVLCConfiguration
*
This
,
BSTR
url
);
HRESULT
(
STDMETHODCALLTYPE
*
get_StartTime
)(
IVLCConfiguration
*
This
,
int
*
seconds
);
HRESULT
(
STDMETHODCALLTYPE
*
put_StartTime
)(
IVLCConfiguration
*
This
,
int
seconds
);
HRESULT
(
STDMETHODCALLTYPE
*
get_MRL
)(
IVLCConfiguration
*
This
,
BSTR
*
mrl
);
HRESULT
(
STDMETHODCALLTYPE
*
put_MRL
)(
IVLCConfiguration
*
This
,
BSTR
mrl
);
HRESULT
(
STDMETHODCALLTYPE
*
get_VersionInfo
)(
IVLCConfiguration
*
This
,
BSTR
*
version
);
HRESULT
(
STDMETHODCALLTYPE
*
get_Visible
)(
IVLCConfiguration
*
This
,
VARIANT_BOOL
*
visible
);
HRESULT
(
STDMETHODCALLTYPE
*
put_Visible
)(
IVLCConfiguration
*
This
,
VARIANT_BOOL
visible
);
HRESULT
(
STDMETHODCALLTYPE
*
get_Volume
)(
IVLCConfiguration
*
This
,
int
*
volume
);
HRESULT
(
STDMETHODCALLTYPE
*
put_Volume
)(
IVLCConfiguration
*
This
,
int
volume
);
END_INTERFACE
}
IVLCConfigurationVtbl
;
interface
IVLCConfiguration
{
const
IVLCConfigurationVtbl
*
lpVtbl
;
};
#ifdef COBJMACROS
/*** IUnknown methods ***/
#define IVLCConfiguration_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
#define IVLCConfiguration_AddRef(p) (p)->lpVtbl->AddRef(p)
#define IVLCConfiguration_Release(p) (p)->lpVtbl->Release(p)
/*** IDispatch methods ***/
#define IVLCConfiguration_GetTypeInfoCount(p,a) (p)->lpVtbl->GetTypeInfoCount(p,a)
#define IVLCConfiguration_GetTypeInfo(p,a,b,c) (p)->lpVtbl->GetTypeInfo(p,a,b,c)
#define IVLCConfiguration_GetIDsOfNames(p,a,b,c,d,e) (p)->lpVtbl->GetIDsOfNames(p,a,b,c,d,e)
#define IVLCConfiguration_Invoke(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->Invoke(p,a,b,c,d,e,f,g,h)
/*** IVLCConfiguration methods ***/
#define IVLCConfiguration_get_AutoLoop(p,a) (p)->lpVtbl->get_AutoLoop(p,a)
#define IVLCConfiguration_put_AutoLoop(p,a) (p)->lpVtbl->put_AutoLoop(p,a)
#define IVLCConfiguration_get_AutoPlay(p,a) (p)->lpVtbl->get_AutoPlay(p,a)
#define IVLCConfiguration_put_AutoPlay(p,a) (p)->lpVtbl->put_AutoPlay(p,a)
#define IVLCConfiguration_get_BaseURL(p,a) (p)->lpVtbl->get_BaseURL(p,a)
#define IVLCConfiguration_put_BaseURL(p,a) (p)->lpVtbl->put_BaseURL(p,a)
#define IVLCConfiguration_get_StartTime(p,a) (p)->lpVtbl->get_StartTime(p,a)
#define IVLCConfiguration_put_StartTime(p,a) (p)->lpVtbl->put_StartTime(p,a)
#define IVLCConfiguration_get_MRL(p,a) (p)->lpVtbl->get_MRL(p,a)
#define IVLCConfiguration_put_MRL(p,a) (p)->lpVtbl->put_MRL(p,a)
#define IVLCConfiguration_get_VersionInfo(p,a) (p)->lpVtbl->get_VersionInfo(p,a)
#define IVLCConfiguration_get_Visible(p,a) (p)->lpVtbl->get_Visible(p,a)
#define IVLCConfiguration_put_Visible(p,a) (p)->lpVtbl->put_Visible(p,a)
#define IVLCConfiguration_get_Volume(p,a) (p)->lpVtbl->get_Volume(p,a)
#define IVLCConfiguration_put_Volume(p,a) (p)->lpVtbl->put_Volume(p,a)
#endif
#endif
HRESULT
CALLBACK
IVLCConfiguration_get_AutoLoop_Proxy
(
IVLCConfiguration
*
This
,
VARIANT_BOOL
*
autoloop
);
void
__RPC_STUB
IVLCConfiguration_get_AutoLoop_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_put_AutoLoop_Proxy
(
IVLCConfiguration
*
This
,
VARIANT_BOOL
autoloop
);
void
__RPC_STUB
IVLCConfiguration_put_AutoLoop_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_get_AutoPlay_Proxy
(
IVLCConfiguration
*
This
,
VARIANT_BOOL
*
autoplay
);
void
__RPC_STUB
IVLCConfiguration_get_AutoPlay_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_put_AutoPlay_Proxy
(
IVLCConfiguration
*
This
,
VARIANT_BOOL
autoplay
);
void
__RPC_STUB
IVLCConfiguration_put_AutoPlay_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_get_BaseURL_Proxy
(
IVLCConfiguration
*
This
,
BSTR
*
url
);
void
__RPC_STUB
IVLCConfiguration_get_BaseURL_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_put_BaseURL_Proxy
(
IVLCConfiguration
*
This
,
BSTR
url
);
void
__RPC_STUB
IVLCConfiguration_put_BaseURL_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_get_StartTime_Proxy
(
IVLCConfiguration
*
This
,
int
*
seconds
);
void
__RPC_STUB
IVLCConfiguration_get_StartTime_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_put_StartTime_Proxy
(
IVLCConfiguration
*
This
,
int
seconds
);
void
__RPC_STUB
IVLCConfiguration_put_StartTime_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_get_MRL_Proxy
(
IVLCConfiguration
*
This
,
BSTR
*
mrl
);
void
__RPC_STUB
IVLCConfiguration_get_MRL_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_put_MRL_Proxy
(
IVLCConfiguration
*
This
,
BSTR
mrl
);
void
__RPC_STUB
IVLCConfiguration_put_MRL_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_get_VersionInfo_Proxy
(
IVLCConfiguration
*
This
,
BSTR
*
version
);
void
__RPC_STUB
IVLCConfiguration_get_VersionInfo_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_get_Visible_Proxy
(
IVLCConfiguration
*
This
,
VARIANT_BOOL
*
visible
);
void
__RPC_STUB
IVLCConfiguration_get_Visible_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_put_Visible_Proxy
(
IVLCConfiguration
*
This
,
VARIANT_BOOL
visible
);
void
__RPC_STUB
IVLCConfiguration_put_Visible_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_get_Volume_Proxy
(
IVLCConfiguration
*
This
,
int
*
volume
);
void
__RPC_STUB
IVLCConfiguration_get_Volume_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCConfiguration_put_Volume_Proxy
(
IVLCConfiguration
*
This
,
int
volume
);
void
__RPC_STUB
IVLCConfiguration_put_Volume_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
#endif
/* __IVLCConfiguration_INTERFACE_DEFINED__ */
/*****************************************************************************
* IVLCControl2 interface
*/
#ifndef __IVLCControl2_INTERFACE_DEFINED__
#define __IVLCControl2_INTERFACE_DEFINED__
DEFINE_GUID
(
IID_IVLCControl2
,
0x2d719729
,
0x5333
,
0x406c
,
0xbf
,
0x12
,
0x8d
,
0xe7
,
0x87
,
0xfd
,
0x65
,
0xe3
);
#if defined(__cplusplus) && !defined(CINTERFACE)
interface
IVLCControl2
:
public
IVLCConfiguration
{
virtual
HRESULT
STDMETHODCALLTYPE
get_audio
(
IVLCAudio
**
obj
)
=
0
;
...
...
@@ -1968,7 +1686,7 @@ typedef struct IVLCControl2Vtbl {
EXCEPINFO
*
pExcepInfo
,
UINT
*
puArgErr
);
/*** IVLCCon
figuration
methods ***/
/*** IVLCCon
trol2
methods ***/
HRESULT
(
STDMETHODCALLTYPE
*
get_AutoLoop
)(
IVLCControl2
*
This
,
VARIANT_BOOL
*
autoloop
);
...
...
@@ -2029,7 +1747,6 @@ typedef struct IVLCControl2Vtbl {
IVLCControl2
*
This
,
int
volume
);
/*** IVLCControl2 methods ***/
HRESULT
(
STDMETHODCALLTYPE
*
get_audio
)(
IVLCControl2
*
This
,
IVLCAudio
**
obj
);
...
...
@@ -2062,7 +1779,7 @@ interface IVLCControl2 {
#define IVLCControl2_GetTypeInfo(p,a,b,c) (p)->lpVtbl->GetTypeInfo(p,a,b,c)
#define IVLCControl2_GetIDsOfNames(p,a,b,c,d,e) (p)->lpVtbl->GetIDsOfNames(p,a,b,c,d,e)
#define IVLCControl2_Invoke(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->Invoke(p,a,b,c,d,e,f,g,h)
/*** IVLCCon
figuration
methods ***/
/*** IVLCCon
trol2
methods ***/
#define IVLCControl2_get_AutoLoop(p,a) (p)->lpVtbl->get_AutoLoop(p,a)
#define IVLCControl2_put_AutoLoop(p,a) (p)->lpVtbl->put_AutoLoop(p,a)
#define IVLCControl2_get_AutoPlay(p,a) (p)->lpVtbl->get_AutoPlay(p,a)
...
...
@@ -2078,7 +1795,6 @@ interface IVLCControl2 {
#define IVLCControl2_put_Visible(p,a) (p)->lpVtbl->put_Visible(p,a)
#define IVLCControl2_get_Volume(p,a) (p)->lpVtbl->get_Volume(p,a)
#define IVLCControl2_put_Volume(p,a) (p)->lpVtbl->put_Volume(p,a)
/*** IVLCControl2 methods ***/
#define IVLCControl2_get_audio(p,a) (p)->lpVtbl->get_audio(p,a)
#define IVLCControl2_get_input(p,a) (p)->lpVtbl->get_input(p,a)
#define IVLCControl2_get_playlist(p,a) (p)->lpVtbl->get_playlist(p,a)
...
...
@@ -2087,6 +1803,126 @@ interface IVLCControl2 {
#endif
HRESULT
CALLBACK
IVLCControl2_get_AutoLoop_Proxy
(
IVLCControl2
*
This
,
VARIANT_BOOL
*
autoloop
);
void
__RPC_STUB
IVLCControl2_get_AutoLoop_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_put_AutoLoop_Proxy
(
IVLCControl2
*
This
,
VARIANT_BOOL
autoloop
);
void
__RPC_STUB
IVLCControl2_put_AutoLoop_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_get_AutoPlay_Proxy
(
IVLCControl2
*
This
,
VARIANT_BOOL
*
autoplay
);
void
__RPC_STUB
IVLCControl2_get_AutoPlay_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_put_AutoPlay_Proxy
(
IVLCControl2
*
This
,
VARIANT_BOOL
autoplay
);
void
__RPC_STUB
IVLCControl2_put_AutoPlay_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_get_BaseURL_Proxy
(
IVLCControl2
*
This
,
BSTR
*
url
);
void
__RPC_STUB
IVLCControl2_get_BaseURL_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_put_BaseURL_Proxy
(
IVLCControl2
*
This
,
BSTR
url
);
void
__RPC_STUB
IVLCControl2_put_BaseURL_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_get_StartTime_Proxy
(
IVLCControl2
*
This
,
int
*
seconds
);
void
__RPC_STUB
IVLCControl2_get_StartTime_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_put_StartTime_Proxy
(
IVLCControl2
*
This
,
int
seconds
);
void
__RPC_STUB
IVLCControl2_put_StartTime_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_get_MRL_Proxy
(
IVLCControl2
*
This
,
BSTR
*
mrl
);
void
__RPC_STUB
IVLCControl2_get_MRL_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_put_MRL_Proxy
(
IVLCControl2
*
This
,
BSTR
mrl
);
void
__RPC_STUB
IVLCControl2_put_MRL_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_get_VersionInfo_Proxy
(
IVLCControl2
*
This
,
BSTR
*
version
);
void
__RPC_STUB
IVLCControl2_get_VersionInfo_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_get_Visible_Proxy
(
IVLCControl2
*
This
,
VARIANT_BOOL
*
visible
);
void
__RPC_STUB
IVLCControl2_get_Visible_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_put_Visible_Proxy
(
IVLCControl2
*
This
,
VARIANT_BOOL
visible
);
void
__RPC_STUB
IVLCControl2_put_Visible_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_get_Volume_Proxy
(
IVLCControl2
*
This
,
int
*
volume
);
void
__RPC_STUB
IVLCControl2_get_Volume_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_put_Volume_Proxy
(
IVLCControl2
*
This
,
int
volume
);
void
__RPC_STUB
IVLCControl2_put_Volume_Stub
(
IRpcStubBuffer
*
This
,
IRpcChannelBuffer
*
pRpcChannelBuffer
,
PRPC_MESSAGE
pRpcMessage
,
DWORD
*
pdwStubPhase
);
HRESULT
CALLBACK
IVLCControl2_get_audio_Proxy
(
IVLCControl2
*
This
,
IVLCAudio
**
obj
);
...
...
activex/plugin.cpp
View file @
97823006
...
...
@@ -520,7 +520,7 @@ HRESULT VLCPlugin::onLoad(void)
if
(
UrlIsW
(
base_url
,
URLIS_URL
)
)
{
/* copy base URL */
_bstr_
m
rl
=
SysAllocString
(
base_url
);
_bstr_
baseu
rl
=
SysAllocString
(
base_url
);
}
CoTaskMemFree
(
base_url
);
}
...
...
@@ -630,6 +630,9 @@ HRESULT VLCPlugin::getVLC(libvlc_instance_t** pp_libvlc)
if
(
SysStringLen
(
_bstr_mrl
)
>
0
)
{
char
*
psz_mrl
=
NULL
;
if
(
SysStringLen
(
_bstr_baseurl
)
>
0
)
{
DWORD
len
=
INTERNET_MAX_URL_LENGTH
;
LPOLESTR
abs_url
=
(
LPOLESTR
)
CoTaskMemAlloc
(
sizeof
(
OLECHAR
)
*
len
);
if
(
NULL
!=
abs_url
)
...
...
@@ -648,6 +651,14 @@ HRESULT VLCPlugin::getVLC(libvlc_instance_t** pp_libvlc)
}
CoTaskMemFree
(
abs_url
);
}
}
else
{
/*
** baseURL is empty, assume MRL is absolute
*/
psz_mrl
=
CStrFromBSTR
(
CP_UTF8
,
_bstr_mrl
);
}
if
(
NULL
!=
psz_mrl
)
{
const
char
*
options
[
1
];
...
...
activex/test.html
View file @
97823006
...
...
@@ -44,8 +44,8 @@ Insert MSComctlLib.Slider.2 activex control
<DIV
id=
"info"
style=
"text-align:center"
>
-:--:--/-:--:--
</DIV>
</TD></TR>
<TR><TD
colspan=
"2"
>
<INPUT
type=
button
id=
"PlayOrPause"
value=
" Play "
onClick=
'doPlayOrPause()'
>
<INPUT
type=
button
value=
"Stop"
onClick=
'do
cument.getElementById("vlc").playlist.s
top();'
>
<INPUT
type=
button
id=
"PlayOrPause"
value=
" Play "
onClick=
'doPlayOrPause()
;
'
>
<INPUT
type=
button
value=
"Stop"
onClick=
'do
S
top();'
>
<INPUT
type=
button
value=
" << "
onClick=
'doPlaySlower();'
>
<INPUT
type=
button
value=
" >> "
onClick=
'doPlayFaster();'
>
...
...
@@ -53,7 +53,7 @@ Insert MSComctlLib.Slider.2 activex control
<INPUT
type=
button
value=
"Show"
onClick=
'document.getElementById("vlc").Visible = true;'
>
<INPUT
type=
button
value=
"Hide"
onClick=
'document.getElementById("vlc").Visible = false;'
>
<INPUT
type=
button
value=
"Version"
onClick=
'alert(document.getElementById("vlc").VersionInfo);'
>
<INPUT
type=
button
id=
"VersionBut"
value=
"Version"
onClick=
'alert(document.getElementById("vlc").VersionInfo);'
>
<SPAN
style=
"text-align:center"
>
Volume:
</SPAN>
<INPUT
type=
button
value=
" - "
onClick=
'updateVolume(-10)'
>
<SPAN
id=
"volumeTextField"
style=
"text-align: center"
>
--
</SPAN>
...
...
@@ -62,29 +62,22 @@ Insert MSComctlLib.Slider.2 activex control
</TD>
</TR>
</TABLE>
<SCRIPT
LANGUAGE=
"JS
cript"
>
<SCRIPT
language=
"javas
cript"
>
<!--
var sliderTimerId = 0;
var prevState = 0;
var monitorTimerId = 0;
var sliderScrolling = false;
document.onreadystatechange=onVLCStateChange;
function onVLCStateChange()
{
if( document.readyState == 'complete' )
{
updateVolume(0);
}
};
function updateVolume(deltaVol)
{
var vlc = document.getElementById("vlc");
vlc.audio.volume += deltaVol;
document.getElementById("volumeTextField").innerHTML = vlc.audio.volume+"%";
};
function formatTime(timeVal)
{
var timeHour =
timeVal
;
var timeHour =
Math.round(timeVal / 1000)
;
var timeSec = timeHour % 60;
if( timeSec < 10 )
timeSec = '0'+timeSec;
...
...
@@ -98,72 +91,86 @@ function formatTime(timeVal)
else
return timeMin+":"+timeSec;
};
function onPlay()
{
document.getElementById("PlayOrPause").value = "Pause";
};
function onPause()
{
document.getElementById("PlayOrPause").value = " Play ";
};
function onStop()
{
if( slider.Enabled )
{
slider.Value = slider.Min;
slider.Enabled = false;
}
info.innerText = "-:--:--/-:--:--";
document.getElementById("PlayOrPause").value = " Play ";
};
var liveFeedText = new Array("Live", "((Live))", "(( Live ))", "(( Live ))");
var liveFeedRoll = 0;
function doUpdate()
function monitor()
{
var vlc = document.getElementById("vlc");
if( vlc.playlist.isPlaying )
var newState = vlc.input.state;
if( prevState != newState )
{
if( ! sliderScrolling
)
if( newState == 0
)
{
if( vlc.input.length > 0 )
// current media has stopped
onStop();
}
else if( newState == 1 )
{
// seekable stream
slider.Enabled = true;
slider.Max = vlc.input.length;
slider.Value = vlc.input.time;
info.innerText = formatTime(vlc.input.time)+"/"+formatTime(vlc.input.length);
document.getElementById("PlayOrPause").Enabled = true;
// current media is openning/connecting
onOpen();
}
else {
// non-seekable "live" stream
if( slider.Enabled )
else if( newState == 2 )
{
slider.Value = slider.Min;
slider.Enabled = false
;
// current media is buffering data
onBuffer()
;
}
liveFeedRoll = liveFeedRoll & 3;
info.innerText = liveFeedText[liveFeedRoll++];
else if( newState == 3 )
{
// current media is now playing
onPlay();
}
else if( vlc.input.state == 4 )
{
// current media is now paused
onPause();
}
sliderTimerId = setTimeout("doUpdate()", 1000)
;
prevState = newState
;
}
else
else
if( newState == 3 )
{
onStop();
sliderTimerId = 0
;
// current media is playing
onPlaying()
;
}
monitorTimerId = setTimeout("monitor()", 1000);
};
/* actions */
function doGo(targetURL)
{
var vlc = document.getElementById("vlc");
var options = new Array(":vout-filter=deinterlace", ":deinterlace-mode=linear");
document.getElementById("vlc").playlist.add(targetURL, null, options);
vlc.playlist.clear();
vlc.playlist.add(targetURL, null, options);
vlc.playlist.play();
if( monitorTimerId == 0 )
{
monitor();
}
};
function doPlayOrPause()
{
var vlc = document.getElementById("vlc");
if( vlc.playlist.isPlaying )
{
vlc.playlist.togglePause();
}
else
{
vlc.playlist.play();
if( monitorTimerId == 0 )
{
monitor();
}
}
};
function doStop()
{
document.getElementById("vlc").playlist.stop();
if( monitorTimerId != 0 )
{
clearTimeout(monitorTimerId);
monitorTimerId = 0;
}
onStop();
};
function doPlaySlower()
{
...
...
@@ -175,51 +182,101 @@ function doPlayFaster()
var vlc = document.getElementById("vlc");
vlc.input.rate = vlc.input.rate * 2;
};
function vlc::Play()
/* events */
function onOpen()
{
document.getElementById("info").innerHTML = "Opening...";
document.getElementById("PlayOrPause").value = "Pause";
};
function onBuffer()
{
document.getElementById("info").innerHTML = "Buffering...";
document.getElementById("PlayOrPause").value = "Pause";
};
function onPlay()
{
onPlaying();
document.getElementById("PlayOrPause").value = "Pause";
};
var liveFeedText = new Array("Live", "((Live))", "(( Live ))", "(( Live ))");
var liveFeedRoll = 0;
function onPlaying()
{
if( ! sliderTimerId )
if( ! sliderScrolling )
{
var slider = document.getElementById("slider");
if( vlc.input.length > 0 )
{
sliderTimerId = setTimeout("doUpdate()", 1000);
// seekable media
slider.Enabled = true;
slider.Max = vlc.input.length/1000;
slider.Value = vlc.input.time/1000;
info.innerHTML = formatTime(vlc.input.time)+"/"+formatTime(vlc.input.length);
}
else
{
// non-seekable "live" media
if( slider.Enabled )
{
slider.Value = slider.Min;
slider.Enabled = false;
}
liveFeedRoll = liveFeedRoll & 3;
info.innerHTML = liveFeedText[liveFeedRoll++];
}
}
onPlay();
};
function vlc::Pause()
function onPause()
{
document.getElementById("PlayOrPause").value = " Play ";
};
function onStop()
{
if( slider
TimerI
d )
if( slider
.Enable
d )
{
clearTimeout(sliderTimerId)
slider
TimerId = 0
;
slider.Value = slider.Min;
slider
.Enabled = false
;
}
onPause();
document.getElementById("info").innerHTML = "-:--:--/-:--:--";
document.getElementById("PlayOrPause").value = " Play ";
};
function vlc::Stop()
//-->
</SCRIPT>
<SCRIPT
language=
"JScript"
>
<!--
document.onreadystatechange=onVLCStateChange;
function onVLCStateChange()
{
if(
sliderTimerId
)
if(
document.readyState == 'complete'
)
{
clearTimeout(sliderTimerId)
sliderTimerId = 0;
updateVolume(0);
}
onStop();
};
function slider::Scroll()
{
var newPos = slider.Value * 1000;
var vlc = document.getElementById("vlc");
slider.Text = formatTime(
slider.Value
);
info.inner
Text
= slider.Text+"/"+formatTime(vlc.input.length);
if(
vlc.Time != slider.Value
)
slider.Text = formatTime(
newPos
);
info.inner
HTML
= slider.Text+"/"+formatTime(vlc.input.length);
if(
(vlc.input.state == 3) && (vlc.input.time != newPos)
)
{
vlc.
Time = slider.Value
;
vlc.
input.time = newPos
;
}
sliderScrolling = true;
};
function slider::Change()
{
var newPos = slider.Value * 1000;
if( sliderScrolling )
{
sliderScrolling = false;
}
else if(
vlc.Time != slider.Value
)
else if(
(vlc.input.state == 3) && (vlc.input.time != newPos)
)
{
vlc.
Time = slider.Value
;
vlc.
input.time = newPos
;
}
};
//-->
...
...
activex/vlcconfiguration.cpp
deleted
100755 → 0
View file @
6ff95ea3
/*****************************************************************************
* VLCConfiguration.cpp: ActiveX control for VLC
*****************************************************************************
* Copyright (C) 2005 the VideoLAN team
*
* Authors: Damien Fouilleul <Damien.Fouilleul@laposte.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include "plugin.h"
#include "vlcconfiguration.h"
#include "utils.h"
using
namespace
std
;
VLCConfiguration
::~
VLCConfiguration
()
{
if
(
_p_typeinfo
)
_p_typeinfo
->
Release
();
};
HRESULT
VLCConfiguration
::
loadTypeInfo
(
void
)
{
HRESULT
hr
=
NOERROR
;
if
(
NULL
==
_p_typeinfo
)
{
ITypeLib
*
p_typelib
;
hr
=
_p_instance
->
getTypeLib
(
LOCALE_USER_DEFAULT
,
&
p_typelib
);
if
(
SUCCEEDED
(
hr
)
)
{
hr
=
p_typelib
->
GetTypeInfoOfGuid
(
IID_IVLCConfiguration
,
&
_p_typeinfo
);
if
(
FAILED
(
hr
)
)
{
_p_typeinfo
=
NULL
;
}
p_typelib
->
Release
();
}
}
return
hr
;
};
STDMETHODIMP
VLCConfiguration
::
GetTypeInfoCount
(
UINT
*
pctInfo
)
{
if
(
NULL
==
pctInfo
)
return
E_INVALIDARG
;
if
(
SUCCEEDED
(
loadTypeInfo
())
)
*
pctInfo
=
1
;
else
*
pctInfo
=
0
;
return
NOERROR
;
};
STDMETHODIMP
VLCConfiguration
::
GetTypeInfo
(
UINT
iTInfo
,
LCID
lcid
,
LPTYPEINFO
*
ppTInfo
)
{
if
(
NULL
==
ppTInfo
)
return
E_INVALIDARG
;
if
(
SUCCEEDED
(
loadTypeInfo
())
)
{
_p_typeinfo
->
AddRef
();
*
ppTInfo
=
_p_typeinfo
;
return
NOERROR
;
}
*
ppTInfo
=
NULL
;
return
E_NOTIMPL
;
};
STDMETHODIMP
VLCConfiguration
::
GetIDsOfNames
(
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
LCID
lcid
,
DISPID
*
rgDispID
)
{
if
(
SUCCEEDED
(
loadTypeInfo
())
)
{
return
DispGetIDsOfNames
(
_p_typeinfo
,
rgszNames
,
cNames
,
rgDispID
);
}
return
E_NOTIMPL
;
};
STDMETHODIMP
VLCConfiguration
::
Invoke
(
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
WORD
wFlags
,
DISPPARAMS
*
pDispParams
,
VARIANT
*
pVarResult
,
EXCEPINFO
*
pExcepInfo
,
UINT
*
puArgErr
)
{
if
(
SUCCEEDED
(
loadTypeInfo
())
)
{
return
DispInvoke
(
this
,
_p_typeinfo
,
dispIdMember
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
}
return
E_NOTIMPL
;
};
STDMETHODIMP
VLCConfiguration
::
get_AutoLoop
(
VARIANT_BOOL
*
autoloop
)
{
if
(
NULL
==
autoloop
)
return
E_POINTER
;
*
autoloop
=
_p_instance
->
getAutoLoop
()
?
VARIANT_TRUE
:
VARIANT_FALSE
;
return
S_OK
;
};
STDMETHODIMP
VLCConfiguration
::
put_AutoLoop
(
VARIANT_BOOL
autoloop
)
{
_p_instance
->
setAutoLoop
((
VARIANT_FALSE
!=
autoloop
)
?
TRUE
:
FALSE
);
return
S_OK
;
};
STDMETHODIMP
VLCConfiguration
::
get_AutoPlay
(
VARIANT_BOOL
*
autoplay
)
{
if
(
NULL
==
autoplay
)
return
E_POINTER
;
*
autoplay
=
_p_instance
->
getAutoPlay
()
?
VARIANT_TRUE
:
VARIANT_FALSE
;
return
S_OK
;
};
STDMETHODIMP
VLCConfiguration
::
put_AutoPlay
(
VARIANT_BOOL
autoplay
)
{
_p_instance
->
setAutoPlay
((
VARIANT_FALSE
!=
autoplay
)
?
TRUE
:
FALSE
);
return
S_OK
;
};
STDMETHODIMP
VLCConfiguration
::
get_BaseURL
(
BSTR
*
url
)
{
if
(
NULL
==
url
)
return
E_POINTER
;
*
url
=
SysAllocStringLen
(
_p_instance
->
getBaseURL
(),
SysStringLen
(
_p_instance
->
getBaseURL
()));
return
NOERROR
;
};
STDMETHODIMP
VLCConfiguration
::
put_BaseURL
(
BSTR
mrl
)
{
_p_instance
->
setBaseURL
(
mrl
);
return
S_OK
;
};
STDMETHODIMP
VLCConfiguration
::
get_MRL
(
BSTR
*
mrl
)
{
if
(
NULL
==
mrl
)
return
E_POINTER
;
*
mrl
=
SysAllocStringLen
(
_p_instance
->
getMRL
(),
SysStringLen
(
_p_instance
->
getMRL
()));
return
NOERROR
;
};
STDMETHODIMP
VLCConfiguration
::
put_MRL
(
BSTR
mrl
)
{
_p_instance
->
setMRL
(
mrl
);
return
S_OK
;
};
STDMETHODIMP
VLCConfiguration
::
get_StartTime
(
int
*
seconds
)
{
if
(
NULL
==
seconds
)
return
E_POINTER
;
*
seconds
=
_p_instance
->
getStartTime
();
return
S_OK
;
};
STDMETHODIMP
VLCConfiguration
::
put_StartTime
(
int
seconds
)
{
_p_instance
->
setStartTime
(
seconds
);
return
NOERROR
;
};
STDMETHODIMP
VLCConfiguration
::
get_VersionInfo
(
BSTR
*
version
)
{
if
(
NULL
==
version
)
return
E_POINTER
;
const
char
*
versionStr
=
VLC_Version
();
if
(
NULL
!=
versionStr
)
{
*
version
=
BSTRFromCStr
(
_p_instance
->
getCodePage
(),
versionStr
);
return
NULL
==
*
version
?
E_OUTOFMEMORY
:
NOERROR
;
}
*
version
=
NULL
;
return
E_FAIL
;
};
STDMETHODIMP
VLCConfiguration
::
get_Visible
(
VARIANT_BOOL
*
isVisible
)
{
if
(
NULL
==
isVisible
)
return
E_POINTER
;
*
isVisible
=
_p_instance
->
getVisible
()
?
VARIANT_TRUE
:
VARIANT_FALSE
;
return
NOERROR
;
};
STDMETHODIMP
VLCConfiguration
::
put_Visible
(
VARIANT_BOOL
isVisible
)
{
_p_instance
->
setVisible
(
isVisible
!=
VARIANT_FALSE
);
return
NOERROR
;
};
STDMETHODIMP
VLCConfiguration
::
get_Volume
(
int
*
volume
)
{
if
(
NULL
==
volume
)
return
E_POINTER
;
*
volume
=
_p_instance
->
getVolume
();
return
NOERROR
;
};
STDMETHODIMP
VLCConfiguration
::
put_Volume
(
int
volume
)
{
_p_instance
->
setVolume
(
volume
);
return
NOERROR
;
};
activex/vlcconfiguration.h
deleted
100755 → 0
View file @
6ff95ea3
/*****************************************************************************
* VLCConfiguration.h: ActiveX control for VLC
*****************************************************************************
* Copyright (C) 2005 the VideoLAN team
*
* Authors: Damien Fouilleul <Damien.Fouilleul@laposte.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _VLCCONFIGURATION_H_
#define _VLCCONFIGURATION_H_
#include "axvlc_idl.h"
class
VLCConfiguration
:
public
IVLCConfiguration
{
public:
VLCConfiguration
(
VLCPlugin
*
p_instance
)
:
_p_instance
(
p_instance
),
_p_typeinfo
(
NULL
)
{};
virtual
~
VLCConfiguration
();
// IUnknown methods
STDMETHODIMP
QueryInterface
(
REFIID
riid
,
void
**
ppv
)
{
if
(
NULL
==
ppv
)
return
E_POINTER
;
if
(
(
IID_IUnknown
==
riid
)
||
(
IID_IDispatch
==
riid
)
||
(
IID_IVLCConfiguration
==
riid
)
)
{
AddRef
();
*
ppv
=
reinterpret_cast
<
LPVOID
>
(
this
);
return
NOERROR
;
}
return
_p_instance
->
pUnkOuter
->
QueryInterface
(
riid
,
ppv
);
};
STDMETHODIMP_
(
ULONG
)
AddRef
(
void
)
{
return
_p_instance
->
pUnkOuter
->
AddRef
();
};
STDMETHODIMP_
(
ULONG
)
Release
(
void
)
{
return
_p_instance
->
pUnkOuter
->
Release
();
};
// IDispatch methods
STDMETHODIMP
GetTypeInfoCount
(
UINT
*
);
STDMETHODIMP
GetTypeInfo
(
UINT
,
LCID
,
LPTYPEINFO
*
);
STDMETHODIMP
GetIDsOfNames
(
REFIID
,
LPOLESTR
*
,
UINT
,
LCID
,
DISPID
*
);
STDMETHODIMP
Invoke
(
DISPID
,
REFIID
,
LCID
,
WORD
,
DISPPARAMS
*
,
VARIANT
*
,
EXCEPINFO
*
,
UINT
*
);
/* IVLCConfiguration methods */
STDMETHODIMP
get_AutoLoop
(
VARIANT_BOOL
*
autoloop
);
STDMETHODIMP
put_AutoLoop
(
VARIANT_BOOL
autoloop
);
STDMETHODIMP
get_AutoPlay
(
VARIANT_BOOL
*
autoplay
);
STDMETHODIMP
put_AutoPlay
(
VARIANT_BOOL
autoplay
);
STDMETHODIMP
get_BaseURL
(
BSTR
*
url
);
STDMETHODIMP
put_BaseURL
(
BSTR
url
);
STDMETHODIMP
get_MRL
(
BSTR
*
mrl
);
STDMETHODIMP
put_MRL
(
BSTR
mrl
);
STDMETHODIMP
get_StartTime
(
int
*
seconds
);
STDMETHODIMP
put_StartTime
(
int
seconds
);
STDMETHODIMP
get_VersionInfo
(
BSTR
*
version
);
STDMETHODIMP
get_Visible
(
VARIANT_BOOL
*
visible
);
STDMETHODIMP
put_Visible
(
VARIANT_BOOL
visible
);
STDMETHODIMP
get_Volume
(
int
*
volume
);
STDMETHODIMP
put_Volume
(
int
volume
);
protected:
virtual
HRESULT
loadTypeInfo
();
private:
VLCPlugin
*
_p_instance
;
ITypeInfo
*
_p_typeinfo
;
};
#endif
activex/vlccontrol2.cpp
View file @
97823006
...
...
@@ -148,8 +148,6 @@ STDMETHODIMP VLCAudio::put_mute(VARIANT_BOOL mute)
return
hr
;
};
#include <iostream>
STDMETHODIMP
VLCAudio
::
get_volume
(
int
*
volume
)
{
if
(
NULL
==
volume
)
...
...
@@ -163,7 +161,6 @@ STDMETHODIMP VLCAudio::get_volume(int* volume)
libvlc_exception_init
(
&
ex
);
*
volume
=
libvlc_audio_get_volume
(
p_libvlc
,
&
ex
);
cerr
<<
"volume is "
<<
*
volume
;
if
(
libvlc_exception_raised
(
&
ex
)
)
{
libvlc_exception_clear
(
&
ex
);
...
...
@@ -293,7 +290,7 @@ STDMETHODIMP VLCInput::Invoke(DISPID dispIdMember, REFIID riid,
return
E_NOTIMPL
;
};
STDMETHODIMP
VLCInput
::
get_length
(
__int64
*
length
)
STDMETHODIMP
VLCInput
::
get_length
(
double
*
length
)
{
if
(
NULL
==
length
)
return
E_POINTER
;
...
...
@@ -308,7 +305,7 @@ STDMETHODIMP VLCInput::get_length(__int64* length)
libvlc_input_t
*
p_input
=
libvlc_playlist_get_input
(
p_libvlc
,
&
ex
);
if
(
!
libvlc_exception_raised
(
&
ex
)
)
{
*
length
=
(
__int64
)
libvlc_input_get_length
(
p_input
,
&
ex
);
*
length
=
(
double
)
libvlc_input_get_length
(
p_input
,
&
ex
);
libvlc_input_free
(
p_input
);
if
(
!
libvlc_exception_raised
(
&
ex
)
)
{
...
...
@@ -374,7 +371,7 @@ STDMETHODIMP VLCInput::put_position(float position)
return
hr
;
};
STDMETHODIMP
VLCInput
::
get_time
(
__int64
*
time
)
STDMETHODIMP
VLCInput
::
get_time
(
double
*
time
)
{
if
(
NULL
==
time
)
return
E_POINTER
;
...
...
@@ -389,7 +386,7 @@ STDMETHODIMP VLCInput::get_time(__int64* time)
libvlc_input_t
*
p_input
=
libvlc_playlist_get_input
(
p_libvlc
,
&
ex
);
if
(
!
libvlc_exception_raised
(
&
ex
)
)
{
*
time
=
libvlc_input_get_time
(
p_input
,
&
ex
);
*
time
=
(
double
)
libvlc_input_get_time
(
p_input
,
&
ex
);
libvlc_input_free
(
p_input
);
if
(
!
libvlc_exception_raised
(
&
ex
)
)
{
...
...
@@ -402,7 +399,7 @@ STDMETHODIMP VLCInput::get_time(__int64* time)
return
hr
;
};
STDMETHODIMP
VLCInput
::
put_time
(
__int64
time
)
STDMETHODIMP
VLCInput
::
put_time
(
double
time
)
{
libvlc_instance_t
*
p_libvlc
;
HRESULT
hr
=
_p_instance
->
getVLC
(
&
p_libvlc
);
...
...
@@ -414,7 +411,7 @@ STDMETHODIMP VLCInput::put_time(__int64 time)
libvlc_input_t
*
p_input
=
libvlc_playlist_get_input
(
p_libvlc
,
&
ex
);
if
(
!
libvlc_exception_raised
(
&
ex
)
)
{
libvlc_input_set_time
(
p_input
,
time
,
&
ex
);
libvlc_input_set_time
(
p_input
,
(
vlc_int64_t
)
time
,
&
ex
);
libvlc_input_free
(
p_input
);
if
(
!
libvlc_exception_raised
(
&
ex
)
)
{
...
...
@@ -1103,7 +1100,6 @@ STDMETHODIMP VLCVideo::get_height(int* height)
/*******************************************************************************/
VLCControl2
::
VLCControl2
(
VLCPlugin
*
p_instance
)
:
VLCConfiguration
(
p_instance
),
_p_instance
(
p_instance
),
_p_typeinfo
(
NULL
),
_p_vlcaudio
(
NULL
),
...
...
@@ -1198,6 +1194,135 @@ STDMETHODIMP VLCControl2::Invoke(DISPID dispIdMember, REFIID riid,
return
E_NOTIMPL
;
};
STDMETHODIMP
VLCControl2
::
get_AutoLoop
(
VARIANT_BOOL
*
autoloop
)
{
if
(
NULL
==
autoloop
)
return
E_POINTER
;
*
autoloop
=
_p_instance
->
getAutoLoop
()
?
VARIANT_TRUE
:
VARIANT_FALSE
;
return
S_OK
;
};
STDMETHODIMP
VLCControl2
::
put_AutoLoop
(
VARIANT_BOOL
autoloop
)
{
_p_instance
->
setAutoLoop
((
VARIANT_FALSE
!=
autoloop
)
?
TRUE
:
FALSE
);
return
S_OK
;
};
STDMETHODIMP
VLCControl2
::
get_AutoPlay
(
VARIANT_BOOL
*
autoplay
)
{
if
(
NULL
==
autoplay
)
return
E_POINTER
;
*
autoplay
=
_p_instance
->
getAutoPlay
()
?
VARIANT_TRUE
:
VARIANT_FALSE
;
return
S_OK
;
};
STDMETHODIMP
VLCControl2
::
put_AutoPlay
(
VARIANT_BOOL
autoplay
)
{
_p_instance
->
setAutoPlay
((
VARIANT_FALSE
!=
autoplay
)
?
TRUE
:
FALSE
);
return
S_OK
;
};
STDMETHODIMP
VLCControl2
::
get_BaseURL
(
BSTR
*
url
)
{
if
(
NULL
==
url
)
return
E_POINTER
;
*
url
=
SysAllocStringLen
(
_p_instance
->
getBaseURL
(),
SysStringLen
(
_p_instance
->
getBaseURL
()));
return
NOERROR
;
};
STDMETHODIMP
VLCControl2
::
put_BaseURL
(
BSTR
mrl
)
{
_p_instance
->
setBaseURL
(
mrl
);
return
S_OK
;
};
STDMETHODIMP
VLCControl2
::
get_MRL
(
BSTR
*
mrl
)
{
if
(
NULL
==
mrl
)
return
E_POINTER
;
*
mrl
=
SysAllocStringLen
(
_p_instance
->
getMRL
(),
SysStringLen
(
_p_instance
->
getMRL
()));
return
NOERROR
;
};
STDMETHODIMP
VLCControl2
::
put_MRL
(
BSTR
mrl
)
{
_p_instance
->
setMRL
(
mrl
);
return
S_OK
;
};
STDMETHODIMP
VLCControl2
::
get_StartTime
(
int
*
seconds
)
{
if
(
NULL
==
seconds
)
return
E_POINTER
;
*
seconds
=
_p_instance
->
getStartTime
();
return
S_OK
;
};
STDMETHODIMP
VLCControl2
::
put_StartTime
(
int
seconds
)
{
_p_instance
->
setStartTime
(
seconds
);
return
NOERROR
;
};
STDMETHODIMP
VLCControl2
::
get_VersionInfo
(
BSTR
*
version
)
{
if
(
NULL
==
version
)
return
E_POINTER
;
const
char
*
versionStr
=
VLC_Version
();
if
(
NULL
!=
versionStr
)
{
*
version
=
BSTRFromCStr
(
_p_instance
->
getCodePage
(),
versionStr
);
return
NULL
==
*
version
?
E_OUTOFMEMORY
:
NOERROR
;
}
*
version
=
NULL
;
return
E_FAIL
;
};
STDMETHODIMP
VLCControl2
::
get_Visible
(
VARIANT_BOOL
*
isVisible
)
{
if
(
NULL
==
isVisible
)
return
E_POINTER
;
*
isVisible
=
_p_instance
->
getVisible
()
?
VARIANT_TRUE
:
VARIANT_FALSE
;
return
NOERROR
;
};
STDMETHODIMP
VLCControl2
::
put_Visible
(
VARIANT_BOOL
isVisible
)
{
_p_instance
->
setVisible
(
isVisible
!=
VARIANT_FALSE
);
return
NOERROR
;
};
STDMETHODIMP
VLCControl2
::
get_Volume
(
int
*
volume
)
{
if
(
NULL
==
volume
)
return
E_POINTER
;
*
volume
=
_p_instance
->
getVolume
();
return
NOERROR
;
};
STDMETHODIMP
VLCControl2
::
put_Volume
(
int
volume
)
{
_p_instance
->
setVolume
(
volume
);
return
NOERROR
;
};
STDMETHODIMP
VLCControl2
::
get_audio
(
IVLCAudio
**
obj
)
{
if
(
NULL
==
obj
)
...
...
activex/vlccontrol2.h
View file @
97823006
...
...
@@ -24,7 +24,6 @@
#define _VLCCONTROL2_H_
#include "axvlc_idl.h"
#include "vlcconfiguration.h"
class
VLCAudio
:
public
IVLCAudio
{
...
...
@@ -67,7 +66,7 @@ public:
STDMETHODIMP
toggleMute
();
protected:
virtual
HRESULT
loadTypeInfo
();
HRESULT
loadTypeInfo
();
private:
VLCPlugin
*
_p_instance
;
...
...
@@ -110,11 +109,11 @@ public:
STDMETHODIMP
Invoke
(
DISPID
,
REFIID
,
LCID
,
WORD
,
DISPPARAMS
*
,
VARIANT
*
,
EXCEPINFO
*
,
UINT
*
);
// IVLCInput methods
STDMETHODIMP
get_length
(
__int64
*
);
STDMETHODIMP
get_length
(
double
*
);
STDMETHODIMP
get_position
(
float
*
);
STDMETHODIMP
put_position
(
float
);
STDMETHODIMP
get_time
(
__int64
*
);
STDMETHODIMP
put_time
(
__int64
);
STDMETHODIMP
get_time
(
double
*
);
STDMETHODIMP
put_time
(
double
);
STDMETHODIMP
get_state
(
int
*
);
STDMETHODIMP
get_rate
(
float
*
);
STDMETHODIMP
put_rate
(
float
);
...
...
@@ -122,7 +121,7 @@ public:
STDMETHODIMP
get_hasVout
(
VARIANT_BOOL
*
);
protected:
virtual
HRESULT
loadTypeInfo
();
HRESULT
loadTypeInfo
();
private:
VLCPlugin
*
_p_instance
;
...
...
@@ -177,7 +176,7 @@ public:
STDMETHODIMP
removeItem
(
int
);
protected:
virtual
HRESULT
loadTypeInfo
();
HRESULT
loadTypeInfo
();
private:
VLCPlugin
*
_p_instance
;
...
...
@@ -225,7 +224,7 @@ public:
STDMETHODIMP
get_height
(
int
*
);
protected:
virtual
HRESULT
loadTypeInfo
();
HRESULT
loadTypeInfo
();
private:
VLCPlugin
*
_p_instance
;
...
...
@@ -233,7 +232,7 @@ private:
};
class
VLCControl2
:
public
VLCConfiguration
class
VLCControl2
:
public
IVLCControl2
{
public:
...
...
@@ -248,7 +247,6 @@ public:
return
E_POINTER
;
if
(
(
IID_IUnknown
==
riid
)
||
(
IID_IDispatch
==
riid
)
||
(
IID_IVLCConfiguration
==
riid
)
||
(
IID_IVLCControl2
==
riid
)
)
{
AddRef
();
...
...
@@ -268,13 +266,29 @@ public:
STDMETHODIMP
Invoke
(
DISPID
,
REFIID
,
LCID
,
WORD
,
DISPPARAMS
*
,
VARIANT
*
,
EXCEPINFO
*
,
UINT
*
);
// IVLCControl2 methods
STDMETHODIMP
get_AutoLoop
(
VARIANT_BOOL
*
autoloop
);
STDMETHODIMP
put_AutoLoop
(
VARIANT_BOOL
autoloop
);
STDMETHODIMP
get_AutoPlay
(
VARIANT_BOOL
*
autoplay
);
STDMETHODIMP
put_AutoPlay
(
VARIANT_BOOL
autoplay
);
STDMETHODIMP
get_BaseURL
(
BSTR
*
url
);
STDMETHODIMP
put_BaseURL
(
BSTR
url
);
STDMETHODIMP
get_MRL
(
BSTR
*
mrl
);
STDMETHODIMP
put_MRL
(
BSTR
mrl
);
STDMETHODIMP
get_StartTime
(
int
*
seconds
);
STDMETHODIMP
put_StartTime
(
int
seconds
);
STDMETHODIMP
get_VersionInfo
(
BSTR
*
version
);
STDMETHODIMP
get_Visible
(
VARIANT_BOOL
*
visible
);
STDMETHODIMP
put_Visible
(
VARIANT_BOOL
visible
);
STDMETHODIMP
get_Volume
(
int
*
volume
);
STDMETHODIMP
put_Volume
(
int
volume
);
STDMETHODIMP
get_audio
(
IVLCAudio
**
);
STDMETHODIMP
get_input
(
IVLCInput
**
);
STDMETHODIMP
get_playlist
(
IVLCPlaylist
**
);
STDMETHODIMP
get_video
(
IVLCVideo
**
);
protected:
virtual
HRESULT
loadTypeInfo
();
HRESULT
loadTypeInfo
();
private:
VLCPlugin
*
_p_instance
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment