diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-16 02:06:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-09 01:13:58 +0200 |
commit | 71a3ad42b8c9e2bfeb5d4987d57780e0f8dc434c (patch) | |
tree | 3e0bd727bb6fb7da2e32128dbf6f4740e650161f | |
parent | ec29aec618546c9bd7661d18804335c08fa102e6 (diff) | |
download | ffmpeg-71a3ad42b8c9e2bfeb5d4987d57780e0f8dc434c.tar.gz |
avformat/mpegts: Remove redundant check
Fixes part of Ticket3466
Found-by: Andrey_Karpov / PVS-Studio
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit ff6fa0b4b980fc5b9f7653d7b159ae02c3d95210)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/mpegts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index b808c40162..8cd81d6d47 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -1229,7 +1229,7 @@ static void m4sl_cb(MpegTSFilter *filter, const uint8_t *section, int section_le AVStream *st; if (ts->pids[pid]->es_id != mp4_descr[i].es_id) continue; - if (!(ts->pids[pid] && ts->pids[pid]->type == MPEGTS_PES)) { + if (ts->pids[pid]->type != MPEGTS_PES) { av_log(s, AV_LOG_ERROR, "pid %x is not PES\n", pid); continue; } |