avformat/mpegts: dont clear programs during probing
Fixes Ticket 3763 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -138,6 +138,7 @@ struct MpegTSContext {
|
||||
int64_t last_pos;
|
||||
|
||||
int skip_changes;
|
||||
int skip_clear;
|
||||
|
||||
/******************************************/
|
||||
/* private mpegts data */
|
||||
@@ -177,6 +178,8 @@ static const AVOption mpegts_options[] = {
|
||||
{.i64 = 0}, 0, 0, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_EXPORT | AV_OPT_FLAG_READONLY },
|
||||
{"skip_changes", "Skip changing / adding streams / programs.", offsetof(MpegTSContext, skip_changes), AV_OPT_TYPE_INT,
|
||||
{.i64 = 0}, 0, 1, 0 },
|
||||
{"skip_clear", "Skip clearing programs.", offsetof(MpegTSContext, skip_clear), AV_OPT_TYPE_INT,
|
||||
{.i64 = 0}, 0, 1, 0 },
|
||||
{ NULL },
|
||||
};
|
||||
|
||||
@@ -1931,7 +1934,7 @@ static void pat_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
|
||||
for (i = 0; i < ts->nb_prg; i++)
|
||||
if (ts->prg[i].id == ts->stream->programs[j]->id)
|
||||
break;
|
||||
if (i==ts->nb_prg)
|
||||
if (i==ts->nb_prg && !ts->skip_clear)
|
||||
clear_avprogram(ts, ts->stream->programs[j]->id);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user