diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-15 13:25:09 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-15 13:25:09 +0000 |
| commit | 16e8c1c7222796246f74153bf294909c3efe57dc (patch) | |
| tree | 34b3a52caf88608a5e5ed0e510c4c159e16042c8 /src/lib/ffmpeg_content.cc | |
| parent | afe6ad7ba378ff531de248927d736cdda2724e34 (diff) | |
Remove support for FFmpeg postprocessing filters.
Diffstat (limited to 'src/lib/ffmpeg_content.cc')
| -rw-r--r-- | src/lib/ffmpeg_content.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ffmpeg_content.cc b/src/lib/ffmpeg_content.cc index 47fe4f807..e52e36f78 100644 --- a/src/lib/ffmpeg_content.cc +++ b/src/lib/ffmpeg_content.cc @@ -215,13 +215,13 @@ FFmpegContent::technical_summary () const ss = _subtitle_stream->technical_summary (); } - pair<string, string> filt = Filter::ffmpeg_strings (_filters); + string filt = Filter::ffmpeg_string (_filters); return Content::technical_summary() + " - " + VideoContent::technical_summary() + " - " + AudioContent::technical_summary() + " - " + String::compose ( - "ffmpeg: audio %1, subtitle %2, filters %3 %4", as, ss, filt.first, filt.second + "ffmpeg: audio %1, subtitle %2, filters %3", as, ss, filt ); } |
