summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-05-31 20:12:03 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-31 20:12:03 +0100
commit27f2a05802af7acf7ee8db3892fd38007ac4f1d3 (patch)
tree1545453453a526286684b7f71b4846476fc38ca3 /src/lib
parent6494f92fcf836c4732220217f6a95379926a277a (diff)
Remove mention of finding subtitles when examining audio-only content (#882).
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/ffmpeg_examiner.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/ffmpeg_examiner.cc b/src/lib/ffmpeg_examiner.cc
index f03b744a1..f98c478e7 100644
--- a/src/lib/ffmpeg_examiner.cc
+++ b/src/lib/ffmpeg_examiner.cc
@@ -92,8 +92,10 @@ FFmpegExaminer::FFmpegExaminer (shared_ptr<const FFmpegContent> c, shared_ptr<Jo
if (job) {
if (_need_video_length) {
job->sub (_("Finding length and subtitles"));
- } else {
+ } else if (!_subtitle_streams.empty()) {
job->sub (_("Finding subtitles"));
+ } else {
+ job->sub (_("Finding length"));
}
}