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-Tag: v4.2.3~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d85bb6f0dcb3f65aa02e74e3e3f801cb08292eca;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 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."),