summaryrefslogtreecommitdiff
path: root/src/wx
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-22 17:36:11 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-22 17:36:11 +0100
commit596441a4e8cf03a88113646ca6da2f90e721a38b (patch)
treebf364e57aecc1f019d69b8faf32b8818eaa9d98b /src/wx
parent11c70b0e3051517e7bb96a7d6fa53053dab6e978 (diff)
Various hacks.
Diffstat (limited to 'src/wx')
-rw-r--r--src/wx/film_viewer.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc
index fa834ca08..6a40e88f7 100644
--- a/src/wx/film_viewer.cc
+++ b/src/wx/film_viewer.cc
@@ -428,29 +428,22 @@ FilmViewer::get_frame ()
return;
}
- cout << "getting frame...\n";
-
try {
_got_frame = false;
while (!_got_frame) {
- cout << "pass...\n";
if (_player->pass ()) {
- cout << "passed.\n";
/* We didn't get a frame before the decoder gave up,
so clear our display frame.
*/
_display_frame.reset ();
break;
}
- cout << "passed.\n";
}
} catch (DecodeError& e) {
_play_button->SetValue (false);
check_play_state ();
error_dialog (this, wxString::Format (_("Could not decode video for view (%s)"), std_to_wx(e.what()).data()));
}
-
- cout << "...got frame.\n";
}
void