Fix video stream reception. Remove debugging info.

This commit is contained in:
Cameron Gutman
2013-09-22 03:22:58 -04:00
parent fbbf572c9d
commit 3aad899a07
5 changed files with 125 additions and 65 deletions
+6 -6
View File
@@ -49,6 +49,12 @@ public class NvConnection {
performHandshake();
beginControlStream();
startController();
//new NvAudioStream().start();
new NvVideoStream().start(host);
controlStream.startJitterPackets();
} catch (XmlPullParserException e) {
e.printStackTrace();
displayToast(e.getMessage());
@@ -131,10 +137,4 @@ public class NvConnection {
System.out.println("Starting input");
inputStream = new NvController(host);
}
public void doShit() throws XmlPullParserException, IOException
{
new NvAudioStream().start();
new NvVideoStream().start(host);
}
}