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_decoder.cc | |
| parent | afe6ad7ba378ff531de248927d736cdda2724e34 (diff) | |
Remove support for FFmpeg postprocessing filters.
Diffstat (limited to 'src/lib/ffmpeg_decoder.cc')
| -rw-r--r-- | src/lib/ffmpeg_decoder.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lib/ffmpeg_decoder.cc b/src/lib/ffmpeg_decoder.cc index 347d8cc08..851c64606 100644 --- a/src/lib/ffmpeg_decoder.cc +++ b/src/lib/ffmpeg_decoder.cc @@ -468,14 +468,9 @@ FFmpegDecoder::decode_video_packet () list<pair<shared_ptr<Image>, int64_t> > images = graph->process (_frame); - string post_process = Filter::ffmpeg_strings (_ffmpeg_content->filters()).second; - for (list<pair<shared_ptr<Image>, int64_t> >::iterator i = images.begin(); i != images.end(); ++i) { shared_ptr<Image> image = i->first; - if (!post_process.empty ()) { - image = image->post_process (post_process, true); - } if (i->second != AV_NOPTS_VALUE) { |
