Skip to content

Commit 1f132bc

Browse files
Paulchen-PantherPaulchen-Panther
Paulchen-Panther
authored and
Paulchen-Panther
committed
Fixes
remove Brindosch's V4L2 stream notifier adaption avoid compilation 'note' on GCC 6 ARM
1 parent 8c4b390 commit 1f132bc

File tree

3 files changed

+3
-21
lines changed

3 files changed

+3
-21
lines changed

CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,9 @@ CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
231231
CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
232232

233233
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
234+
if (CMAKE_COMPILER_IS_GNUCXX)
235+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-psabi")
236+
endif()
234237
if(COMPILER_SUPPORTS_CXX11)
235238
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
236239
elseif(COMPILER_SUPPORTS_CXX0X)

include/grabber/V4L2Grabber.h

-9
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
#include <hyperion/Grabber.h>
1515
#include <grabber/VideoStandard.h>
1616

17-
class QTimer;
18-
1917
/// Capture class for V4L2 devices
2018
///
2119
/// @see http://linuxtv.org/downloads/v4l-dvb-apis/capture-example.html
@@ -87,11 +85,6 @@ public slots:
8785
private slots:
8886
int read_frame();
8987

90-
///
91-
/// @brief Is called whenever the _readFrameAdaptTimer emits to unlock read_frame() through _readFrame bool
92-
///
93-
void unlockReadFrame() { _readFrame = true; };
94-
9588
private:
9689
void getV4Ldevices();
9790

@@ -167,6 +160,4 @@ private slots:
167160

168161
bool _initialized;
169162
bool _deviceAutoDiscoverEnabled;
170-
QTimer* _readFrameAdaptTimer;
171-
bool _readFrame = false;
172163
};

libsrc/grabber/v4l2/V4L2Grabber.cpp

-12
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
#include <QDirIterator>
2020
#include <QFileInfo>
21-
#include <QTimer>
2221

2322
#include "grabber/V4L2Grabber.h"
2423

@@ -52,12 +51,7 @@ V4L2Grabber::V4L2Grabber(const QString & device
5251
, _streamNotifier(nullptr)
5352
, _initialized(false)
5453
, _deviceAutoDiscoverEnabled(false)
55-
, _readFrameAdaptTimer(new QTimer(this))
5654
{
57-
// setup stream notify locker with 10hz
58-
connect(_readFrameAdaptTimer, &QTimer::timeout, this, &V4L2Grabber::unlockReadFrame);
59-
_readFrameAdaptTimer->setInterval(100);
60-
6155
setPixelDecimation(pixelDecimation);
6256
getV4Ldevices();
6357

@@ -77,7 +71,6 @@ void V4L2Grabber::uninit()
7771
{
7872
Debug(_log,"uninit grabber: %s", QSTRING_CSTR(_deviceName));
7973

80-
_readFrameAdaptTimer->stop();
8174
stop();
8275
uninit_device();
8376
close_device();
@@ -146,7 +139,6 @@ bool V4L2Grabber::init()
146139
opened = true;
147140
init_device(_videoStandard, _input);
148141
_initialized = true;
149-
_readFrameAdaptTimer->start();
150142
}
151143
}
152144
catch(std::exception& e)
@@ -715,10 +707,6 @@ void V4L2Grabber::stop_capturing()
715707

716708
int V4L2Grabber::read_frame()
717709
{
718-
// read_frame() is called with 25Hz, adapt to 10Hz. In the end it's up to the stream notifier if we get calls or not
719-
if(!_readFrame) return -1;
720-
_readFrame = false;
721-
722710
bool rc = false;
723711

724712
try

0 commit comments

Comments
 (0)