diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | src/lib/ffmpeg_content.cc | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2017-08-31 Carl Hetherington <cth@carlh.net> + + * Fix erroneous re-use of video files after turning off burnt subtitles (#1113). + 2017-08-30 Carl Hetherington <cth@carlh.net> * Updated es_ES translation from Manuel AC. 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(); } |
