diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-23 11:14:44 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-23 11:14:44 +0100 |
| commit | 4eb77be6999a3758998bfe37b28d4bb1cd55d51e (patch) | |
| tree | 9e2882f27751ee6badb1ee9b333bf1d012bd083b /src/lib/dcp_video_frame.cc | |
| parent | fa4bac5dd1b8d0e09bd4a4eb20c83c0564858649 (diff) | |
Various 3D fixes.
Diffstat (limited to 'src/lib/dcp_video_frame.cc')
| -rw-r--r-- | src/lib/dcp_video_frame.cc | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/lib/dcp_video_frame.cc b/src/lib/dcp_video_frame.cc index 10f1e4ad1..4f6ff9987 100644 --- a/src/lib/dcp_video_frame.cc +++ b/src/lib/dcp_video_frame.cc @@ -185,7 +185,19 @@ DCPVideoFrame::encode_locally () throw EncodeError (N_("JPEG2000 encoding failed")); } - _log->log (String::compose (N_("Finished locally-encoded frame %1"), _frame)); + switch (_eyes) { + case EYES_BOTH: + _log->log (String::compose (N_("Finished locally-encoded frame %1 for mono"), _frame)); + break; + case EYES_LEFT: + _log->log (String::compose (N_("Finished locally-encoded frame %1 for L"), _frame)); + break; + case EYES_RIGHT: + _log->log (String::compose (N_("Finished locally-encoded frame %1 for R"), _frame)); + break; + default: + break; + } shared_ptr<EncodedData> enc (new LocallyEncodedData (cio->buffer, cio_tell (cio))); |
