diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-26 19:32:32 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-26 19:32:32 +0100 |
| commit | a3e6ab3c2c1397ba5bbd5a35ce41aa791501a2f9 (patch) | |
| tree | fca21cd47132094aeb631d32a7ca31d5911d54e2 /src/lib | |
| parent | e5903318b6a82b4b56788533da9b9ff83eeb4772 (diff) | |
The appearance of FFmpegContent can be changed by altering subtitle scale/offset etc.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/ffmpeg_content.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/ffmpeg_content.cc b/src/lib/ffmpeg_content.cc index ba0b4cc52..9d3a79e81 100644 --- a/src/lib/ffmpeg_content.cc +++ b/src/lib/ffmpeg_content.cc @@ -292,7 +292,8 @@ FFmpegContent::identifier () const { SafeStringStream s; - s << VideoContent::identifier(); + s << VideoContent::identifier() << "_" + << SubtitleContent::identifier(); boost::mutex::scoped_lock lm (_mutex); |
