CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Oct 2009
    Posts
    5

    Preventing Camera Driver Deadlock

    I have a Creative Web cam. I want to access it's driver using multiple applications at the same instance. Is there anyway possible? Do I have to code a new driver which can mask this driver to prevent its deadlock ? Has anyone tried this using CPP?

    Please Help !

  2. #2
    Join Date
    Oct 2002
    Location
    Timisoara, Romania
    Posts
    14,360

    Re: Preventing Camera Driver Deadlock

    Does the driver limits the connections to the cam?
    Marius Bancila
    Home Page
    My CodeGuru articles

    I do not offer technical support via PM or e-mail. Please use vbBulletin codes.

  3. #3
    Join Date
    Mar 2003
    Location
    India {Mumbai};
    Posts
    3,871

    Re: Preventing Camera Driver Deadlock

    As per my knowledge, webcams allow only one application to take control.
    My latest article: Explicating the new C++ standard (C++0x)

    Do rate the posts you find useful.

  4. #4
    Join Date
    Oct 2009
    Posts
    5

    Re: Preventing Camera Driver Deadlock

    I don't think its 'impossible' to prevent locking of camera driver. Because there is an application called 'Screencamera' which is basically a desktop sharing application but it has its own driver through which we can connect to other webcams & using its (Screencamera driver) we can access the webcam any number of times simultaneously.

  5. #5
    Join Date
    Mar 2003
    Location
    India {Mumbai};
    Posts
    3,871

    Re: Preventing Camera Driver Deadlock

    ...application but it has its own driver through which we can connect to other webcams & using its (Screencamera driver) we can access the webcam any number of times simultaneously.
    You have one webcam or multiple. With some driver software we can definitely access multiple cameras, from multiple applications.
    My latest article: Explicating the new C++ standard (C++0x)

    Do rate the posts you find useful.

  6. #6
    Join Date
    Oct 2009
    Posts
    5

    Re: Preventing Camera Driver Deadlock

    I have only a single webcam & want to access simultaneously

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured