Skip to content

Commit

Permalink
Change filename on windows [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
sarxos committed Jul 13, 2012
1 parent 6849061 commit dac76c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -38,9 +38,9 @@
*
* @author Bartosz Firyn (SarXos)
*/
public class JmfDevice implements WebcamDevice {
public class JmfDeviceA implements WebcamDevice {

private static final Logger LOG = LoggerFactory.getLogger(JmfDevice.class);
private static final Logger LOG = LoggerFactory.getLogger(JmfDeviceA.class);

/**
* Control to control format.
Expand Down Expand Up @@ -138,7 +138,7 @@ public void controllerUpdate(ControllerEvent ce) {

private Dimension viewSize = null;

public JmfDevice(CaptureDeviceInfo cdi) {
public JmfDeviceA(CaptureDeviceInfo cdi) {
this.cdi = cdi;
}

Expand Down
Expand Up @@ -29,7 +29,7 @@ public List<WebcamDevice> getDevices() {

while (di.hasNext()) {
CaptureDeviceInfo cdi = (CaptureDeviceInfo) di.next();
devices.add(new JmfDevice(cdi));
devices.add(new JmfDeviceA(cdi));
}
}

Expand Down

0 comments on commit dac76c9

Please sign in to comment.