diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-02-02 19:40:55 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-02-02 19:40:55 +0000 |
| commit | dea922bbc1fa2b643140a6b5275e58a1fb0225c9 (patch) | |
| tree | 9b5a84a4082bd295ff082c9c450ac02ddd42ec07 /src/lib | |
| parent | 60769b72743402246197fb30a894da325e6f49d1 (diff) | |
Fix erroneous check wrt intrinsic duration.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/writer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc index a444efad8..5bd32147a 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -316,7 +316,7 @@ Writer::check_existing_picture_mxf () return; } - while (_first_nonexistant_frame < _film->dcp_intrinsic_duration ()) { + while (1) { /* Read the frame info as written */ ifstream ifi (_film->info_path (_first_nonexistant_frame).c_str()); |
