From d85bb6f0dcb3f65aa02e74e3e3f801cb08292eca Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Mon, 22 May 2017 18:30:14 +0200 Subject: [PATCH] mpegts mux: fix another copy-n-paste error in the 'Service ID' filter --- src/input/mpegts.h | 2 +- src/input/mpegts/mpegts_mux.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/input/mpegts.h b/src/input/mpegts.h index 7c918256f..dfbf07ba2 100644 --- a/src/input/mpegts.h +++ b/src/input/mpegts.h @@ -529,7 +529,7 @@ struct mpegts_mux char *mm_charset; int mm_pmt_ac3; int mm_eit_tsid_nocheck; - int mm_sid_filter; + uint16_t mm_sid_filter; /* * TSDEBUG diff --git a/src/input/mpegts/mpegts_mux.c b/src/input/mpegts/mpegts_mux.c index 49c4c693d..4ebffcc09 100644 --- a/src/input/mpegts/mpegts_mux.c +++ b/src/input/mpegts/mpegts_mux.c @@ -675,7 +675,7 @@ const idclass_t mpegts_mux_class = .opts = PO_HIDDEN | PO_EXPERT }, { - .type = PT_BOOL, + .type = PT_U16, .id = "sid_filter", .name = N_("Service ID"), .desc = N_("Use only this service ID, filter out others."), -- 2.47.2