mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 09:31:26 +00:00
V4L/DVB (12276): Remove a useless check from dvb_dmx_swfilter_packet()
Values for 'pid' range from 0 to 0x1fff. Therefore 'feed->pid' can never be equal to both 'pid' and 0x2000. This makes the continue statement have no effect. Signed-off-by: Andreas Oberritter <obi@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
1cb662a314
commit
a4afd65870
@ -425,13 +425,9 @@ no_dvb_demux_tscheck:
|
||||
if ((DVR_FEED(feed)) && (dvr_done++))
|
||||
continue;
|
||||
|
||||
if (feed->pid == pid) {
|
||||
if (feed->pid == pid)
|
||||
dvb_dmx_swfilter_packet_type(feed, buf);
|
||||
if (DVR_FEED(feed))
|
||||
continue;
|
||||
}
|
||||
|
||||
if (feed->pid == 0x2000)
|
||||
else if (feed->pid == 0x2000)
|
||||
feed->cb.ts(buf, 188, NULL, 0, &feed->feed.ts, DMX_OK);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user