From: Jaroslav Kysela Date: Mon, 22 May 2017 16:30:14 +0000 (+0200) Subject: mpegts mux: fix another copy-n-paste error in the 'Service ID' filter X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88298e9565f79ca5d1a341d02044718d454febad;p=thirdparty%2Ftvheadend.git mpegts mux: fix another copy-n-paste error in the 'Service ID' filter --- diff --git a/src/input/mpegts.h b/src/input/mpegts.h index 9c34b7b74..9f5970c1b 100644 --- a/src/input/mpegts.h +++ b/src/input/mpegts.h @@ -533,7 +533,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."),