From 5914ce32419418f52ea9805423c254adbf379a43 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 27 Oct 2012 01:24:48 +0100 Subject: cerr -> log --- src/lib/decoder.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/decoder.cc') 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; } -- cgit v1.2.3