diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-08-31 02:03:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-08-31 02:03:01 +0100 |
| commit | 2cdf3d9f461b12d0925cc54368105bbd177bbbb3 (patch) | |
| tree | e250a7fd753a4a10a47c9d0a8a67f2c6c36c1112 /src/lib/player.cc | |
| parent | 1f88a38a2a607c21988a403e76f315444c4be36b (diff) | |
Primitive subtitle export feature.v2.15.16
Diffstat (limited to 'src/lib/player.cc')
| -rw-r--r-- | src/lib/player.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lib/player.cc b/src/lib/player.cc index 1a88505af..23fe65cf4 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -146,17 +146,13 @@ Player::setup_pieces_unlocked () _shuffler = new Shuffler(); _shuffler->Video.connect(bind(&Player::video, this, _1, _2)); - cout << "SPU " << _playlist->content().size() << ".\n"; - BOOST_FOREACH (shared_ptr<Content> i, _playlist->content ()) { if (!i->paths_valid ()) { - cout << "not valid.\n"; continue; } if (_ignore_video && _ignore_audio && i->text.empty()) { - cout << "text only.\n"; /* We're only interested in text and this content has none */ continue; } @@ -169,7 +165,6 @@ Player::setup_pieces_unlocked () } } - cout << " DF " << _tolerant << "\n"; shared_ptr<Decoder> decoder = decoder_factory (_film, i, _fast, _tolerant, old_decoder); FrameRateChange frc (_film, i); |
