diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-08-31 00:19:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-08-31 00:19:00 +0100 |
| commit | 01b35c34a36f35a29899db2fd6c4759de89a8860 (patch) | |
| tree | 75efd71c234e7e22ec3f783f614205f1e15f751b /src/lib | |
| parent | 90f3ff7d32df052635c84bfcec10a39fb1fca50b (diff) | |
Fix erroneous re-use of video files after turning off burnt subtitles (#1113).
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/ffmpeg_content.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ffmpeg_content.cc b/src/lib/ffmpeg_content.cc index 3cd9d66e2..92069cb60 100644 --- a/src/lib/ffmpeg_content.cc +++ b/src/lib/ffmpeg_content.cc @@ -397,7 +397,7 @@ FFmpegContent::identifier () const s += "_" + video->identifier(); } - if (subtitle) { + if (subtitle && subtitle->use() && subtitle->burn()) { s += "_" + subtitle->identifier(); } |
