mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
avformat/mpegts: Do not add pid if its already there with add_pid_to_pmt()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
716674b151
commit
a6593f7cc6
1 changed files with 6 additions and 0 deletions
|
|
@ -299,11 +299,17 @@ static void add_pid_to_pmt(MpegTSContext *ts, unsigned int programid,
|
|||
unsigned int pid)
|
||||
{
|
||||
struct Program *p = get_program(ts, programid);
|
||||
int i;
|
||||
if (!p)
|
||||
return;
|
||||
|
||||
if (p->nb_pids >= MAX_PIDS_PER_PROGRAM)
|
||||
return;
|
||||
|
||||
for (i = 0; i < MAX_PIDS_PER_PROGRAM; i++)
|
||||
if (p->pids[i] == pid)
|
||||
return;
|
||||
|
||||
p->pids[p->nb_pids++] = pid;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue