From 4f1baf393ecfcbb5978a8b7334af6fe5edab13ad Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Mon, 7 Nov 2011 19:00:45 +0100 Subject: [PATCH] libtriple: fix cDemux::pesFilter for teletext Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/e142b3d98acfa95c3ed8b5707bf7fd8705972380 Author: Stefan Seyfried Date: 2011-11-07 (Mon, 07 Nov 2011) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- lib/libtriple/dmx_td.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/libtriple/dmx_td.cpp b/lib/libtriple/dmx_td.cpp index 28dea00d3..a0aac16b7 100644 --- a/lib/libtriple/dmx_td.cpp +++ b/lib/libtriple/dmx_td.cpp @@ -455,6 +455,7 @@ bool cDemux::pesFilter(const unsigned short pid) flt.unloader.threshold = 8; // 1k, teletext flt.pesType = DMX_PES_OTHER; flt.output = OUT_MEMORY; + break; case DMX_TP_CHANNEL: /* must be measure == true or we would have returned above */ flt.output = OUT_MEMORY; @@ -462,6 +463,7 @@ bool cDemux::pesFilter(const unsigned short pid) flt.unloader.threshold = 1; flt.unloader.unloader_type = UNLOADER_TYPE_MEASURE_DUMMY; ioctl(fd, DEMUX_SET_MEASURE_TIME, 250000); + break; default: flt.pesType = DMX_PES_OTHER; }