diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-23 00:16:28 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-23 00:16:28 +0000 |
| commit | 054cc86d5ba734c72780b07a772a55e3a7000a4f (patch) | |
| tree | 359704968d206047a5c1c089a56e089e00d11bc2 /src | |
| parent | 0f416fd215fd656e091a03090317328c418eaf67 (diff) | |
Fix fake-writing of 3D.
Diffstat (limited to 'src')
| -rw-r--r-- | src/stereo_picture_asset_writer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stereo_picture_asset_writer.cc b/src/stereo_picture_asset_writer.cc index 81ce7fc0..b4b0ad52 100644 --- a/src/stereo_picture_asset_writer.cc +++ b/src/stereo_picture_asset_writer.cc @@ -94,7 +94,7 @@ StereoPictureAssetWriter::fake_write (int size) assert (_started); assert (!_finalized); - Kumu::Result_t r = _state->mxf_writer.FakeWriteFrame (size); + Kumu::Result_t r = _state->mxf_writer.FakeWriteFrame (size, _next_eye == EYE_LEFT ? ASDCP::JP2K::SP_LEFT : ASDCP::JP2K::SP_RIGHT); if (ASDCP_FAILURE (r)) { boost::throw_exception (MXFFileError ("error in writing video MXF", _asset->path().string(), r)); } |
