-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RGBA format and fixed RGB debayer with vertical flip #53
base: master
Are you sure you want to change the base?
Commits on Dec 13, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 4174be6 - Browse repository at this point
Copy the full SHA 4174be6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 74eb6db - Browse repository at this point
Copy the full SHA 74eb6dbView commit details
Commits on Jul 24, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 8ee5939 - Browse repository at this point
Copy the full SHA 8ee5939View commit details -
Moved libusb header include from ps3eye.h to ps3eye.cpp. FIxes issue …
…where library user needs to have libusb include folder in path. With this change only the PS3EYEDriver need to know about libusb.
Configuration menu - View commit details
-
Copy full SHA for 0ce231f - Browse repository at this point
Copy the full SHA 0ce231fView commit details -
Mute PS3 eye debug messages and move debug macro to ps3eye.cpp to ens…
…ure library user doesn't get a conflicting define for 'debug', which is pretty generic.
Configuration menu - View commit details
-
Copy full SHA for 11a1ea0 - Browse repository at this point
Copy the full SHA 11a1ea0View commit details -
Removed unnecessary includes from ps3eye.h for faster compile speeds …
…in other projects.
Configuration menu - View commit details
-
Copy full SHA for 9dde406 - Browse repository at this point
Copy the full SHA 9dde406View commit details -
Detach kernel driver, as on Linux the operating system has a kernel d…
…river for the PS3 eye camera, preventing us from using the device otherwise.
Configuration menu - View commit details
-
Copy full SHA for 3ff2b2f - Browse repository at this point
Copy the full SHA 3ff2b2fView commit details -
Configuration menu - View commit details
-
Copy full SHA for df0c1f9 - Browse repository at this point
Copy the full SHA df0c1f9View commit details -
Configuration menu - View commit details
-
Copy full SHA for ab506c9 - Browse repository at this point
Copy the full SHA ab506c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 541e70d - Browse repository at this point
Copy the full SHA 541e70dView commit details -
Configuration menu - View commit details
-
Copy full SHA for b0e235a - Browse repository at this point
Copy the full SHA b0e235aView commit details -
Configuration menu - View commit details
-
Copy full SHA for c24e363 - Browse repository at this point
Copy the full SHA c24e363View commit details -
Configuration menu - View commit details
-
Copy full SHA for 440c08f - Browse repository at this point
Copy the full SHA 440c08fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 75d2f2f - Browse repository at this point
Copy the full SHA 75d2f2fView commit details -
- Don't call cancel_transfer when stopping transfers. It's enough jus…
…t to stop calling submit_transfer. - Renamed cancelTransfers to endTransfers.
Configuration menu - View commit details
-
Copy full SHA for 530fbc1 - Browse repository at this point
Copy the full SHA 530fbc1View commit details -
- Added space to end microphone test.
- Added grayscale test to see if crash after mic test in debayer code persists..
Configuration menu - View commit details
-
Copy full SHA for fb0ecab - Browse repository at this point
Copy the full SHA fb0ecabView commit details -
Configuration menu - View commit details
-
Copy full SHA for 86089c6 - Browse repository at this point
Copy the full SHA 86089c6View commit details -
- Added some comments. - Improved shutdown in case of error. - Use libusb error/success codes instead of comparing against 0. - Code cleanups and readability improvenents.
Configuration menu - View commit details
-
Copy full SHA for 8a54e67 - Browse repository at this point
Copy the full SHA 8a54e67View commit details -
- Renamed debug(..) to debugMessage(..).
- Made a few constant 'static const int' versus a define.
Configuration menu - View commit details
-
Copy full SHA for bf9774b - Browse repository at this point
Copy the full SHA bf9774bView commit details -
- Use the condition variable approach to signal the number of active …
…transfers has reached zero. - Bumped the packet size to 256 bytes, to avoid overflow conditions due to the device sending more data than we can store. - Added logging for the case where a transfer has ended while status is not COMPLETED.
Configuration menu - View commit details
-
Copy full SHA for 447b814 - Browse repository at this point
Copy the full SHA 447b814View commit details -
- Added a helpful text for Macos to help resolve kernel driver confli…
…cts. - Bumped packet size (again).
Configuration menu - View commit details
-
Copy full SHA for d139b25 - Browse repository at this point
Copy the full SHA d139b25View commit details -
Configuration menu - View commit details
-
Copy full SHA for 17c339c - Browse repository at this point
Copy the full SHA 17c339cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3a2d6bd - Browse repository at this point
Copy the full SHA 3a2d6bdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5947665 - Browse repository at this point
Copy the full SHA 5947665View commit details -
- Drawing of the captured audio waveform is now faster. - Combined audio and video test. It works!
Configuration menu - View commit details
-
Copy full SHA for 572b121 - Browse repository at this point
Copy the full SHA 572b121View commit details -
Configuration menu - View commit details
-
Copy full SHA for cea3290 - Browse repository at this point
Copy the full SHA cea3290View commit details -
Added summation of the four microphones to the audio history and draw…
… it on screen. The summed channel effective does some pretty good noise reduction!
Configuration menu - View commit details
-
Copy full SHA for 04c33a3 - Browse repository at this point
Copy the full SHA 04c33a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f9cded - Browse repository at this point
Copy the full SHA 4f9cdedView commit details -
Configuration menu - View commit details
-
Copy full SHA for f1836d5 - Browse repository at this point
Copy the full SHA f1836d5View commit details -
Fix for potential race condition, due to the way transfers are freed …
…during shutdown. It's illegal to free a transfer from within the transfer callback. Doing so can result in undefined behavior. From the docs of libusb_free_transfer, "It is not legal to free an active transfer (one which has been submitted and has not yet completed)." I've moved to free calls until after all transfers have finished.
Configuration menu - View commit details
-
Copy full SHA for cb99c2c - Browse repository at this point
Copy the full SHA cb99c2cView commit details -
Fix for accessing invalid read buffer areas in debayer code, due to t…
…rying to debayer one row too many. It should run until height-2, as a single source row expands to two rows in the destination buffer. At the end the last row is already copied from the row at height-2 to height-1. Verified it works by visually inspecting the last row using a test app.
Configuration menu - View commit details
-
Copy full SHA for d88d96a - Browse repository at this point
Copy the full SHA d88d96aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b3dc66 - Browse repository at this point
Copy the full SHA 6b3dc66View commit details -
Configuration menu - View commit details
-
Copy full SHA for e97a3d9 - Browse repository at this point
Copy the full SHA e97a3d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b425e3 - Browse repository at this point
Copy the full SHA 2b425e3View commit details -
Configuration menu - View commit details
-
Copy full SHA for cac9b10 - Browse repository at this point
Copy the full SHA cac9b10View commit details -
Configuration menu - View commit details
-
Copy full SHA for c58b212 - Browse repository at this point
Copy the full SHA c58b212View commit details
Commits on Jul 29, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 7b22e67 - Browse repository at this point
Copy the full SHA 7b22e67View commit details
Commits on Aug 7, 2018
-
Fix for issue where tabbing apps on Macos could cause 'unknown errors…
…' to stop the microphone USB transfers. When encountering an error submitting the new transfer, try a few times until it works. Macos sometimes returns a 'iso too old' result when trying to submit a transfer, which just means we need to transfer again using a more recent frame.
Configuration menu - View commit details
-
Copy full SHA for df2e02f - Browse repository at this point
Copy the full SHA df2e02fView commit details
Commits on Aug 17, 2018
-
Configuration menu - View commit details
-
Copy full SHA for e8600c4 - Browse repository at this point
Copy the full SHA e8600c4View commit details -
- Added stress test (shift + T).
- Show little green/red circles to indicate PS3 eye and mic are up and running.
Configuration menu - View commit details
-
Copy full SHA for a23706c - Browse repository at this point
Copy the full SHA a23706cView commit details
Commits on Aug 25, 2018
-
Configuration menu - View commit details
-
Copy full SHA for e800094 - Browse repository at this point
Copy the full SHA e800094View commit details
Commits on Oct 19, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 280f77d - Browse repository at this point
Copy the full SHA 280f77dView commit details
Commits on Oct 26, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 66de7ad - Browse repository at this point
Copy the full SHA 66de7adView commit details
Commits on Oct 30, 2018
-
Configuration menu - View commit details
-
Copy full SHA for dd220c1 - Browse repository at this point
Copy the full SHA dd220c1View commit details
Commits on Nov 20, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 6cbacbf - Browse repository at this point
Copy the full SHA 6cbacbfView commit details
Commits on Dec 17, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 83f9680 - Browse repository at this point
Copy the full SHA 83f9680View commit details
Commits on Dec 19, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 120b3f7 - Browse repository at this point
Copy the full SHA 120b3f7View commit details
Commits on Jan 15, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 8b8e433 - Browse repository at this point
Copy the full SHA 8b8e433View commit details
Commits on Feb 14, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 63ae536 - Browse repository at this point
Copy the full SHA 63ae536View commit details
Commits on Feb 22, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 58b03da - Browse repository at this point
Copy the full SHA 58b03daView commit details