From f40f5945f0182fd3c3f0978967b8b7e238276f08 Mon Sep 17 00:00:00 2001
From: Gary Buhrmaster <gary.buhrmaster@gmail.com>
Date: Tue, 14 Jul 2020 15:07:11 +0000
Subject: [PATCH 4/7] remove unneeded definitions
commit 50310355 removed the member variable that required
the QMap, and the definition that the QMap required.
---
mythtv/libs/libmythtv/recorders/v4lchannel.h | 4 ----
1 file changed, 4 deletions(-)
diff --git a/mythtv/libs/libmythtv/recorders/v4lchannel.h b/mythtv/libs/libmythtv/recorders/v4lchannel.h
index db4e5ef969..365faa7ff1 100644
a
|
b
|
|
11 | 11 | |
12 | 12 | #ifdef USING_V4L2 |
13 | 13 | #include "videodev2.h" // needed for v4l2_std_id type |
14 | | #else |
15 | | using v4l2_std_id = uint64_t; |
16 | 14 | #endif |
17 | 15 | |
18 | 16 | using namespace std; |
… |
… |
using namespace std;
|
21 | 19 | |
22 | 20 | class TVRec; |
23 | 21 | |
24 | | using VidModV4L2 = QMap<int,v4l2_std_id>; |
25 | | |
26 | 22 | /** \class V4LChannel |
27 | 23 | * \brief Implements tuning for TV cards using the V4L driver API, |
28 | 24 | * both versions 1 and 2. |