Package com.lti.civil

Examples of com.lti.civil.CaptureStream


    }
  }
 
  private static Format[] getFormats(CaptureSystem system, String deviceID) throws CaptureException
  {
    final CaptureStream captureStream = system.openCaptureDeviceStream(deviceID);
    final List<com.lti.civil.VideoFormat> formatList = captureStream.enumVideoFormats();
    final Format[] formats = new Format[formatList.size()];

    for (int j = 0; j < formatList.size(); j++)
    {
      formats[j] = net.sf.fmj.media.protocol.civil.DataSource.convertCivilFormat(formatList.get(j));
    }
    captureStream.dispose();

    return formats;
  }
View Full Code Here

TOP

Related Classes of com.lti.civil.CaptureStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.