USBCamera, HTTPCamera: Name functions consistent with classes.

This commit is contained in:
Peter Johnson
2016-10-15 23:07:28 -07:00
parent 70531762b9
commit 9caa0af4d9
10 changed files with 34 additions and 34 deletions

View File

@@ -13,6 +13,6 @@ public class HTTPCamera extends VideoSource {
/// @param name Source name (arbitrary unique identifier)
/// @param url Camera URL (e.g. "http://10.x.y.11/video/stream.mjpg")
public HTTPCamera(String name, String url) {
super(CameraServerJNI.createHTTPSource(name, url));
super(CameraServerJNI.createHTTPCamera(name, url));
}
}