diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-27 01:24:48 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-27 01:24:48 +0100 |
| commit | 5914ce32419418f52ea9805423c254adbf379a43 (patch) | |
| tree | 22fe646f3544757cc26e3f6478ad252f7591d251 /src/lib/decoder.cc | |
| parent | 7ffd5bd9b4571c2db06a8c50419fe90b06ef1a07 (diff) | |
cerr -> log
Diffstat (limited to 'src/lib/decoder.cc')
| -rw-r--r-- | src/lib/decoder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc index 358109a7e..acd3400f0 100644 --- a/src/lib/decoder.cc +++ b/src/lib/decoder.cc @@ -286,7 +286,7 @@ Decoder::process_video (AVFrame* frame) if (i == _filter_graphs.end ()) { graph.reset (new FilterGraph (_film, this, _opt->apply_crop, Size (frame->width, frame->height), (AVPixelFormat) frame->format)); _filter_graphs.push_back (graph); - std::cout << "NEW GRAPH for " << frame->width << "x" << frame->height << " " << frame->format << "\n"; + _film->log()->log (String::compose ("New graph for %1x%2, pixel format %3", frame->width, frame->height, frame->format)); } else { graph = *i; } |
