summaryrefslogtreecommitdiffhomepage
path: root/video
AgeCommit message (Collapse)Author
2019-03-28actually expand __COUNTER__Stanislaw Halik
2019-03-20video/camera: document stride == 0Stanislaw Halik
2019-03-18video: add support for camera modulesStanislaw Halik
Issue: #910
2019-02-22video/widget: fix mutex starvationStanislaw Halik
Get rid of contention in `preview_size' and `set_image'. After switching the Qt mutex to non-recursive, turns out the writer thread preempts the UI thread to the point of freezing the entire thing. Mutex fairness is an implementation detail and we must assume unfair mutexes in the worst case.
2019-02-21do less global memory fences in atomicsStanislaw Halik
2019-02-17video/widget: fix wrongly-sized QImageStanislaw Halik
Reported by: @Slion Issue: #874
2019-02-11video/widget: externalize opencv codeStanislaw Halik
2019-02-11video: remove Patrick's copyrightStanislaw Halik
The file was completely rewritten some time ago.
2019-02-11video: less namespace pollutionStanislaw Halik
2019-02-11cv/video-widget: make it work without opencvStanislaw Halik