Closed GoogleCodeExporter closed 8 years ago
Looked at the source and for the cmdFileCapture the doCapture method was not
being
called. Added this to get file capture to work. I also needed to add
-Xheapsize:32M
to the run options for the emulator to avoid out of memory problem on load.
} else if (c == this.cmdFileCapture) {
this.oCaptureFromFile = true;
try {
doCapture();
} catch (jjil.core.Error e) {
reportJjilError(e);
}
// don't restart player -- we just use the file instead of
// the videoControl when we capture
}
Original comment by willi...@gmail.com
on 15 Jul 2008 at 6:00
The "Capture from file" option, like the other capture options, changes the
source of
the image capture. It doesn't actually do the capture until you hit the Enter
button
on the phone. So I think the code should stay as it is. It might be better to
reword
things -- e.g., "Switch to file" but I'd rather not rebuild the app just for
this.
Original comment by jonaw...@gmail.com
on 17 Jul 2008 at 6:28
Original issue reported on code.google.com by
willi...@gmail.com
on 15 Jul 2008 at 5:32