fftools/ffmpeg_demux: reindent after previous commit

This commit is contained in:
Anton Khirnov 2023-05-07 18:15:39 +02:00
parent 9429624a76
commit fd980b2615
1 changed files with 10 additions and 10 deletions

View File

@ -527,17 +527,17 @@ static void readrate_sleep(Demuxer *d)
static void discard_unused_programs(InputFile *ifile)
{
for (int j = 0; j < ifile->ctx->nb_programs; j++) {
AVProgram *p = ifile->ctx->programs[j];
int discard = AVDISCARD_ALL;
for (int j = 0; j < ifile->ctx->nb_programs; j++) {
AVProgram *p = ifile->ctx->programs[j];
int discard = AVDISCARD_ALL;
for (int k = 0; k < p->nb_stream_indexes; k++)
if (!ifile->streams[p->stream_index[k]]->discard) {
discard = AVDISCARD_DEFAULT;
break;
}
p->discard = discard;
}
for (int k = 0; k < p->nb_stream_indexes; k++)
if (!ifile->streams[p->stream_index[k]]->discard) {
discard = AVDISCARD_DEFAULT;
break;
}
p->discard = discard;
}
}
static void thread_set_name(InputFile *f)