mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
f5317bc2d9
Former-commit-id: 590029949b79689ea05409149677e51b748cb64f
12 lines
231 B
C++
12 lines
231 B
C++
|
|
// BlackBorders includes
|
|
#include <blackborder/BlackBorderDetector.h>
|
|
|
|
using namespace hyperion;
|
|
|
|
BlackBorderDetector::BlackBorderDetector(uint8_t blackborderThreshold) :
|
|
_blackborderThreshold(blackborderThreshold)
|
|
{
|
|
// empty
|
|
}
|