1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
/*
Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <libdcp/picture_asset.h>
#include "writer.h"
#include "compose.hpp"
#include "film.h"
#include "format.h"
#include "log.h"
#include "dcp_video_frame.h"
using std::make_pair;
using std::pair;
using boost::shared_ptr;
unsigned int const Writer::_maximum_frames_in_memory = 8;
Writer::Writer (shared_ptr<const Film> f)
: _film (f)
, _thread (0)
, _finish (false)
, _last_written_frame (-1)
{
_picture_asset.reset (
new libdcp::MonoPictureAsset (
_film->dir (_film->dcp_name()),
String::compose ("video_%1.mxf", 0),
DCPFrameRate (_film->frames_per_second()).frames_per_second,
_film->format()->dcp_size()
)
);
_picture_asset_writer = _picture_asset->start_write ();
_thread = new boost::thread (boost::bind (&Writer::thread, this));
}
void
Writer::write (shared_ptr<EncodedData> encoded, int frame)
{
boost::mutex::scoped_lock lock (_mutex);
_queue.push_back (make_pair (encoded, frame));
_condition.notify_all ();
}
struct QueueSorter
{
bool operator() (pair<shared_ptr<EncodedData>, int> const & a, pair<shared_ptr<EncodedData>, int> const & b) {
return a.second < b.second;
}
};
void
Writer::thread ()
{
while (1)
{
boost::mutex::scoped_lock lock (_mutex);
while (1) {
if (_finish ||
_queue.size() > _maximum_frames_in_memory ||
(!_queue.empty() && _queue.front().second == (_last_written_frame + 1))) {
break;
}
TIMING ("writer sleeps with a queue of %1; %2 pending", _queue.size(), _pending.size());
_condition.wait (lock);
TIMING ("writer wakes with a queue of %1", _queue.size());
_queue.sort (QueueSorter ());
}
if (_finish && _queue.empty() && _pending.empty()) {
return;
}
/* Write any frames that we can write; i.e. those that are in sequence */
while (!_queue.empty() && _queue.front().second == (_last_written_frame + 1)) {
pair<boost::shared_ptr<EncodedData>, int> encoded = _queue.front ();
_queue.pop_front ();
lock.unlock ();
_film->log()->log (String::compose ("Writer writes %1 to MXF", encoded.second));
if (encoded.first) {
_picture_asset_writer->write (encoded.first->data(), encoded.first->size());
_last_written = encoded.first;
} else {
_picture_asset_writer->write (_last_written->data(), _last_written->size());
}
lock.lock ();
++_last_written_frame;
}
while (_queue.size() > _maximum_frames_in_memory) {
/* Too many frames in memory which can't yet be written to the stream.
Put some to disk.
*/
pair<boost::shared_ptr<EncodedData>, int> encoded = _queue.back ();
_queue.pop_back ();
if (!encoded.first) {
/* This is a `repeat-last' frame, so no need to write it to disk */
continue;
}
lock.unlock ();
_film->log()->log (String::compose ("Writer full (awaiting %1); pushes %2 to disk", _last_written_frame + 1, encoded.second));
encoded.first->write (_film, encoded.second);
lock.lock ();
_pending.push_back (encoded.second);
}
while (_queue.size() < _maximum_frames_in_memory && !_pending.empty()) {
/* We have some space in memory. Fetch some frames back off disk. */
_pending.sort ();
int const fetch = _pending.front ();
lock.unlock ();
_film->log()->log (String::compose ("Writer pulls %1 back from disk", fetch));
shared_ptr<EncodedData> encoded;
if (boost::filesystem::exists (_film->frame_out_path (fetch, false))) {
/* It's an actual frame (not a repeat-last); load it in */
encoded.reset (new EncodedData (_film->frame_out_path (fetch, false)));
}
lock.lock ();
_queue.push_back (make_pair (encoded, fetch));
_pending.remove (fetch);
}
}
}
void
Writer::finish ()
{
if (!_thread) {
return;
}
boost::mutex::scoped_lock lock (_mutex);
_finish = true;
_condition.notify_all ();
lock.unlock ();
_thread->join ();
delete _thread;
_thread = 0;
_picture_asset_writer->finalize ();
}
/** Tell the writer that frame `f' should be a repeat of the frame before it */
void
Writer::repeat (int f)
{
boost::mutex::scoped_lock lock (_mutex);
_queue.push_back (make_pair (shared_ptr<EncodedData> (), f));
}
|