summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-10-16 10:12:47 +0100
committerCarl Hetherington <cth@carlh.net>2013-10-16 10:12:47 +0100
commit2f460fefd66910a232960b0cf345912f988c82e0 (patch)
treecca2bdb8d77babdc52eee21bfe2f5912b61b9120 /src/lib
parenta1b0ed4ac0753b420ce8ab8467165e220bdb4b05 (diff)
Remove DEBUG_PLAYER stuff.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/player.cc50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/lib/player.cc b/src/lib/player.cc
index d13ae5f3c..ff484e749 100644
--- a/src/lib/player.cc
+++ b/src/lib/player.cc
@@ -48,8 +48,6 @@ using boost::shared_ptr;
using boost::weak_ptr;
using boost::dynamic_pointer_cast;
-//#define DEBUG_PLAYER 1
-
class Piece
{
public:
@@ -72,23 +70,6 @@ public:
Time audio_position;
};
-#ifdef DEBUG_PLAYER
-std::ostream& operator<<(std::ostream& s, Piece const & p)
-{
- if (dynamic_pointer_cast<FFmpegContent> (p.content)) {
- s << "\tffmpeg ";
- } else if (dynamic_pointer_cast<StillImageContent> (p.content)) {
- s << "\tstill image";
- } else if (dynamic_pointer_cast<SndfileContent> (p.content)) {
- s << "\tsndfile ";
- }
-
- s << " at " << p.content->position() << " until " << p.content->end();
-
- return s;
-}
-#endif
-
Player::Player (shared_ptr<const Film> f, shared_ptr<const Playlist> p)
: _film (f)
, _playlist (p)
@@ -126,10 +107,6 @@ Player::pass ()
_have_valid_pieces = true;
}
-#ifdef DEBUG_PLAYER
- cout << "= PASS\n";
-#endif
-
Time earliest_t = TIME_MAX;
shared_ptr<Piece> earliest;
enum {
@@ -160,10 +137,6 @@ Player::pass ()
}
if (!earliest) {
-#ifdef DEBUG_PLAYER
- cout << "no earliest piece.\n";
-#endif
-
flush ();
return true;
}
@@ -171,28 +144,16 @@ Player::pass ()
switch (type) {
case VIDEO:
if (earliest_t > _video_position) {
-#ifdef DEBUG_PLAYER
- cout << "no video here; emitting black frame (earliest=" << earliest_t << ", video_position=" << _video_position << ").\n";
-#endif
emit_black ();
} else {
-#ifdef DEBUG_PLAYER
- cout << "Pass video " << *earliest << "\n";
-#endif
earliest->decoder->pass ();
}
break;
case AUDIO:
if (earliest_t > _audio_position) {
-#ifdef DEBUG_PLAYER
- cout << "no audio here (none until " << earliest_t << "); emitting silence.\n";
-#endif
emit_silence (_film->time_to_audio_frames (earliest_t - _audio_position));
} else {
-#ifdef DEBUG_PLAYER
- cout << "Pass audio " << *earliest << "\n";
-#endif
earliest->decoder->pass ();
if (earliest->decoder->done()) {
@@ -223,10 +184,6 @@ Player::pass ()
_audio_position += _film->audio_frames_to_time (tb.audio->frames ());
}
-#ifdef DEBUG_PLAYER
- cout << "\tpost pass _video_position=" << _video_position << " _audio_position=" << _audio_position << "\n";
-#endif
-
return false;
}
@@ -487,13 +444,6 @@ Player::setup_pieces ()
_pieces.push_back (piece);
}
-
-#ifdef DEBUG_PLAYER
- cout << "=== Player setup:\n";
- for (list<shared_ptr<Piece> >::iterator i = _pieces.begin(); i != _pieces.end(); ++i) {
- cout << *(i->get()) << "\n";
- }
-#endif
}
void