Re: Help - registering directshow filter in Pocket PC device
- From: "Michton" <y.michel.david@xxxxxxxxx>
- Date: 31 Mar 2007 23:14:28 -0700
On Mar 29, 3:25 am, "Gary Daniels [MS]" <gary...@xxxxxxxxxxxxxxxxxxxx>
wrote:
.ax is just the extension that Windows XP/Vista/etc. use to indicate
DirectShow filters. If you want to use the .ax extension you can just rename
your .dll. Windows CE/Mobile DirectShow will accept filters with either
extension and treat them the same.
Gary Daniels
Windows CE Multimedia and Graphics
This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use.
"Michton" <y.michel.da...@xxxxxxxxx> wrote in message
news:1174503986.219740.242290@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
On Feb 8, 3:42 pm, hazzy <h...@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote:
thanx buddy
can i do like this
HINSTANCE hDLL = LoadLibrary("somefilter.ax");
if(NULL == hDLL)
{
// error
DWORD error = GetLastError();
TRACE1("LoadLibrary() Failed with: %i\n", error);
return FALSE;
}
typedef HRESULT (CALLBACK *HCRET)(void);
HCRET lpfnDllRegisterServer;
lpfnDllRegisterServer =
(HCRET)GetProcAddress(hDLL, "DllRegisterServer");
if(NULL == lpfnDllRegisterServer)
{
// error
DWORD error = GetLastError();
TRACE1("GetProcAddress() Failed with %i\n", error);
return FALSE;
}
or anything more is required
thanx n Regards
Hazzy
"Amit" wrote:
Hi,
Write another application (exe) which calls the DllRegsiterServer
function
that is exported by the dll.
LoadLibrary()
GetProcAddress(DllRegisterServer)..
--
Thanks and Regards
Amit Ranjan
blog:http://amitranjan.wordpress.com
"hazzy" wrote:
Hello Everybody
can anyone help me how can we register the directshow filter(
transform
filter) in Pocket PC device.
In system, we can register it via Regsvr32 i.e.regsvr32 <full path of
target>
but how can i do the same in device...
or there another way so that we can use directshow filter ( our own
written
filter) in device.
thanks in advance
looking for your response
Hazzy- Hide quoted text -
- Show quoted text -
Hi
Thank you for your question and answer.
How did you generate a ".ax" extension ? Only by renaming a DLL?
Something else in Settings ?
(I just succcessed to compile (!!) the NullRenderer from Gary Daniel)
Thank you.- Hide quoted text -
- Show quoted text -
Gary the White Angel.
Thank you for your help.
I could not compile the CSampleGrabber at all on CE5.0. Have you
working version of this essential Code for me?
Thank you VEEEERRRRRRYYYYYYYYYYY MUCH!!!
Michel
.
- Follow-Ups:
- Re: Help - registering directshow filter in Pocket PC device
- From: Gary Daniels [MS]
- Re: Help - registering directshow filter in Pocket PC device
- Prev by Date: Re: i need to save Power!
- Next by Date: Re: i need to save Power!
- Previous by thread: Re: i need to save Power!
- Next by thread: Re: Help - registering directshow filter in Pocket PC device
- Index(es):
Relevant Pages
|