diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-11-03 01:10:39 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-11-03 01:50:10 +0100 |
| commit | b3056163b9da4425aab25e3c9630a805a48d30ff (patch) | |
| tree | 12c13dd6f21588e28d8e2d98bd60299456e6337a /src/lib/ffmpeg_examiner.cc | |
| parent | faf18d32cd69a293a918c33504f9ad90b906d8a1 (diff) | |
Missing check for duplicate IDs.
Without this call we don't spot duplicates that are found in the initial
scan.
Diffstat (limited to 'src/lib/ffmpeg_examiner.cc')
| -rw-r--r-- | src/lib/ffmpeg_examiner.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/ffmpeg_examiner.cc b/src/lib/ffmpeg_examiner.cc index c50f13ba5..d2e1c9d40 100644 --- a/src/lib/ffmpeg_examiner.cc +++ b/src/lib/ffmpeg_examiner.cc @@ -99,6 +99,8 @@ FFmpegExaminer::FFmpegExaminer(shared_ptr<const FFmpegContent> c, shared_ptr<Job job->sub(_("Finding length")); } + check_for_duplicate_ids(); + /* Run through until we find: * - the first video. * - the first audio for each stream. |
