Skip to content

Commit 3ac1847

Browse files
diogosalazarFlole998
authored andcommitted
tvhdhomerun: Add ISDB to type check in tvhdhomerun_device_create
This commit adds support for ISDB in the type check of the tvhdhomerun_device_create function in tvhdhomerun.c. This allows the function to handle ISDB type devices, which previously would have been changed to a DVB device on startup every time despite overrides.
1 parent 5432361 commit 3ac1847

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/input/mpegts/tvhdhomerun/tvhdhomerun.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,7 @@ static void tvhdhomerun_device_create(struct hdhomerun_discover_device_t *dInfo)
329329
type = dvb_str2type(override_type);
330330
if ( ! ( type == DVB_TYPE_C || type == DVB_TYPE_T ||
331331
type == DVB_TYPE_ATSC_T || type == DVB_TYPE_ATSC_C ||
332+
type == DVB_TYPE_ISDB_T || type == DVB_TYPE_ISDB_C ||
332333
type == DVB_TYPE_CABLECARD ) ) {
333334
type = DVB_TYPE_C;
334335
}

0 commit comments

Comments
 (0)