]> git.sesse.net Git - nageru/blob - player.cpp
Add a queue of frames going into VideoStream.
[nageru] / player.cpp
1 #include "player.h"
2
3 #include "clip_list.h"
4 #include "context.h"
5 #include "defs.h"
6 #include "ffmpeg_raii.h"
7 #include "httpd.h"
8 #include "jpeg_frame_view.h"
9 #include "mux.h"
10 #include "timebase.h"
11 #include "video_stream.h"
12
13 #include <algorithm>
14 #include <chrono>
15 #include <condition_variable>
16 #include <movit/util.h>
17 #include <mutex>
18 #include <stdio.h>
19 #include <thread>
20 #include <vector>
21
22 using namespace std;
23 using namespace std::chrono;
24
25 extern mutex frame_mu;
26 extern vector<int64_t> frames[MAX_STREAMS];
27 extern HTTPD *global_httpd;
28
29 void Player::thread_func(bool also_output_to_stream)
30 {
31         pthread_setname_np(pthread_self(), "Player");
32
33         QSurface *surface = create_surface();
34         QOpenGLContext *context = create_context(surface);
35         if (!make_current(context, surface)) {
36                 printf("oops\n");
37                 exit(1);
38         }
39
40         check_error();
41
42         // Create the VideoStream object, now that we have an OpenGL context.
43         if (also_output_to_stream) {
44                 video_stream.reset(new VideoStream);
45                 video_stream->start();
46         }
47
48         check_error();
49
50         constexpr double output_framerate = 60000.0 / 1001.0;  // FIXME: make configurable
51         int64_t pts = 0;
52         Clip next_clip;
53         bool got_next_clip = false;
54         double next_clip_fade_time = -1.0;
55
56         for ( ;; ) {
57 wait_for_clip:
58                 bool clip_ready;
59                 steady_clock::time_point before_sleep = steady_clock::now();
60
61                 // Wait until we're supposed to play something.
62                 {
63                         unique_lock<mutex> lock(queue_state_mu);
64                         clip_ready = new_clip_changed.wait_for(lock, milliseconds(100), [this] {
65                                 return new_clip_ready && current_clip.pts_in != -1;
66                         });
67                         new_clip_ready = false;
68                         playing = true;
69                 }
70
71                 steady_clock::duration time_slept = steady_clock::now() - before_sleep;
72                 pts += duration_cast<duration<size_t, TimebaseRatio>>(time_slept).count();
73
74                 if (!clip_ready) {
75                         if (video_stream != nullptr) {
76                                 video_stream->schedule_refresh_frame(steady_clock::now(), pts, /*display_func=*/nullptr);
77                         }
78                         continue;
79                 }
80
81                 Clip clip;
82                 unsigned stream_idx;
83                 {
84                         lock_guard<mutex> lock(mu);
85                         clip = current_clip;
86                         stream_idx = current_stream_idx;
87                 }
88                 steady_clock::time_point origin = steady_clock::now();  // TODO: Add a 100 ms buffer for ramp-up?
89                 int64_t in_pts_origin = clip.pts_in;
90 got_clip:
91                 int64_t out_pts_origin = pts;
92
93                 // Start playing exactly at a frame.
94                 // TODO: Snap secondary (fade-to) clips in the same fashion
95                 // so that we don't get jank here).
96                 {
97                         lock_guard<mutex> lock(frame_mu);
98
99                         // Find the first frame such that frame.pts <= in_pts.
100                         auto it = lower_bound(frames[stream_idx].begin(),
101                                 frames[stream_idx].end(),
102                                 in_pts_origin);
103                         if (it != frames[stream_idx].end()) {
104                                 in_pts_origin = *it;
105                         }
106                 }
107
108                 // TODO: Lock to a rational multiple of the frame rate if possible.
109                 double speed = 0.5;
110
111                 int64_t in_pts_start_next_clip = -1;
112                 for (int frameno = 0; ; ++frameno) {  // Ends when the clip ends.
113                         double out_pts = out_pts_origin + TIMEBASE * frameno / output_framerate;
114                         steady_clock::time_point next_frame_start =
115                                 origin + microseconds(lrint((out_pts - out_pts_origin) * 1e6 / TIMEBASE));
116                         int64_t in_pts = lrint(in_pts_origin + TIMEBASE * frameno * speed / output_framerate);
117                         pts = lrint(out_pts);
118
119                         if (in_pts >= clip.pts_out) {
120                                 break;
121                         }
122
123                         steady_clock::duration time_behind = steady_clock::now() - next_frame_start;
124                         if (time_behind >= milliseconds(200)) {
125                                 fprintf(stderr, "WARNING: %ld ms behind, dropping a frame (no matter the type).\n",
126                                         lrint(1e3 * duration<double>(time_behind).count()));
127                                 continue;
128                         }
129
130                         double time_left_this_clip = double(clip.pts_out - in_pts) / TIMEBASE / speed;
131                         if (!got_next_clip && next_clip_callback != nullptr && time_left_this_clip <= clip.fade_time_seconds) {
132                                 // Find the next clip so that we can begin a fade.
133                                 next_clip = next_clip_callback();
134                                 if (next_clip.pts_in != -1) {
135                                         got_next_clip = true;
136
137                                         double duration_next_clip = (next_clip.pts_out - next_clip.pts_in) / TIMEBASE / speed;
138                                         next_clip_fade_time = std::min(time_left_this_clip, duration_next_clip);
139                                         in_pts_start_next_clip = next_clip.pts_in + lrint(next_clip_fade_time * TIMEBASE * speed);
140                                 }
141                         }
142
143                         int primary_stream_idx = stream_idx;
144                         int secondary_stream_idx = -1;
145                         int64_t secondary_pts = -1;
146                         int64_t in_pts_secondary = -1;
147                         float fade_alpha = 0.0f;
148                         if (got_next_clip) {
149                                 secondary_stream_idx = next_clip.stream_idx;
150                                 in_pts_secondary = lrint(next_clip.pts_in + (next_clip_fade_time - time_left_this_clip) * TIMEBASE * speed);
151                                 fade_alpha = 1.0f - time_left_this_clip / next_clip_fade_time;
152
153                                 // If more than half-way through the fade, interpolate the next clip
154                                 // instead of the current one, since it's more visible.
155                                 if (fade_alpha >= 0.5f) {
156                                         swap(primary_stream_idx, secondary_stream_idx);
157                                         swap(in_pts, in_pts_secondary);
158                                         fade_alpha = 1.0f - fade_alpha;
159                                 }
160
161                                 int64_t in_pts_lower, in_pts_upper;
162                                 bool ok = find_surrounding_frames(in_pts_secondary, secondary_stream_idx, &in_pts_lower, &in_pts_upper);
163                                 if (ok) {
164                                         secondary_pts = in_pts_lower;
165                                 } else {
166                                         secondary_stream_idx = -1;
167                                 }
168                         }
169
170                         if (progress_callback != nullptr) {
171                                 // NOTE: None of this will take into account any snapping done below.
172                                 double played_this_clip = double(in_pts - clip.pts_in) / TIMEBASE / speed;
173                                 double total_length = double(clip.pts_out - clip.pts_in) / TIMEBASE / speed;
174                                 progress_callback(played_this_clip, total_length);
175                         }
176
177                         int64_t in_pts_lower, in_pts_upper;
178                         bool ok = find_surrounding_frames(in_pts, primary_stream_idx, &in_pts_lower, &in_pts_upper);
179                         if (!ok) {
180                                 break;
181                         }
182
183                         // If the queue is full (which is really the state we'd like to be in),
184                         // wait until there's room for one more frame (ie., one was output from
185                         // VideoStream), or until or until there's a new clip we're supposed to play.
186                         {
187                                 unique_lock<mutex> lock(queue_state_mu);
188                                 new_clip_changed.wait(lock, [this]{
189                                         if (video_stream != nullptr && num_queued_frames < max_queued_frames) {
190                                                 return true;
191                                         }
192                                         return new_clip_ready || override_stream_idx != -1;
193                                 });
194                                 if (new_clip_ready) {
195                                         if (video_stream != nullptr) {
196                                                 video_stream->clear_queue();
197                                         }
198                                         goto wait_for_clip;
199                                 }
200                                 if (override_stream_idx != -1) {
201                                         stream_idx = override_stream_idx;
202                                         override_stream_idx = -1;
203                                         continue;
204                                 }
205                         }
206
207                         if (in_pts_lower == in_pts_upper) {
208                                 auto display_func = [this, primary_stream_idx, in_pts_lower, secondary_stream_idx, secondary_pts, fade_alpha]{
209                                         destination->setFrame(primary_stream_idx, in_pts_lower, /*interpolated=*/false, secondary_stream_idx, secondary_pts, fade_alpha);
210                                         unique_lock<mutex> lock(queue_state_mu);
211                                         assert(num_queued_frames > 0);
212                                         --num_queued_frames;
213                                 };
214                                 if (video_stream == nullptr) {
215                                         display_func();
216                                 } else {
217                                         if (secondary_stream_idx == -1) {
218                                                 video_stream->schedule_original_frame(next_frame_start, pts, display_func, primary_stream_idx, in_pts_lower);
219                                                 unique_lock<mutex> lock(queue_state_mu);
220                                                 ++num_queued_frames;
221                                         } else {
222                                                 bool ok = video_stream->schedule_faded_frame(next_frame_start, pts, display_func, primary_stream_idx, in_pts_lower, secondary_stream_idx, secondary_pts, fade_alpha);
223                                                 unique_lock<mutex> lock(queue_state_mu);
224                                                 if (ok) ++num_queued_frames;
225                                         }
226                                 }
227                                 continue;
228                         }
229
230                         // Snap to input frame: If we can do so with less than 1% jitter
231                         // (ie., move less than 1% of an _output_ frame), do so.
232                         // TODO: Snap secondary (fade-to) clips in the same fashion.
233                         bool snapped = false;
234                         for (int64_t snap_pts : { in_pts_lower, in_pts_upper }) {
235                                 double snap_pts_as_frameno = (snap_pts - in_pts_origin) * output_framerate / TIMEBASE / speed;
236                                 if (fabs(snap_pts_as_frameno - frameno) < 0.01) {
237                                         auto display_func = [this, primary_stream_idx, snap_pts, secondary_stream_idx, secondary_pts, fade_alpha]{
238                                                 destination->setFrame(primary_stream_idx, snap_pts, /*interpolated=*/false, secondary_stream_idx, secondary_pts, fade_alpha);
239                                                 unique_lock<mutex> lock(queue_state_mu);
240                                                 assert(num_queued_frames > 0);
241                                                 --num_queued_frames;
242                                         };
243                                         if (video_stream == nullptr) {
244                                                 display_func();
245                                         } else {
246                                                 if (secondary_stream_idx == -1) {
247                                                         video_stream->schedule_original_frame(next_frame_start, pts, display_func, primary_stream_idx, snap_pts);
248                                                         unique_lock<mutex> lock(queue_state_mu);
249                                                         ++num_queued_frames;
250                                                 } else {
251                                                         bool ok = video_stream->schedule_faded_frame(next_frame_start, pts, display_func, primary_stream_idx, snap_pts, secondary_stream_idx, secondary_pts, fade_alpha);
252                                                         unique_lock<mutex> lock(queue_state_mu);
253                                                         if (ok) ++num_queued_frames;
254                                                 }
255                                         }
256                                         in_pts_origin += snap_pts - in_pts;
257                                         snapped = true;
258                                         break;
259                                 }
260                         }
261                         if (snapped) {
262                                 continue;
263                         }
264
265                         if (time_behind >= milliseconds(100)) {
266                                 fprintf(stderr, "WARNING: %ld ms behind, dropping an interpolated frame.\n",
267                                         lrint(1e3 * duration<double>(time_behind).count()));
268                                 continue;
269                         }
270
271                         double alpha = double(in_pts - in_pts_lower) / (in_pts_upper - in_pts_lower);
272
273                         if (video_stream == nullptr) {
274                                 // Previews don't do any interpolation.
275                                 assert(secondary_stream_idx == -1);
276                                 destination->setFrame(primary_stream_idx, in_pts_lower, /*interpolated=*/false);
277                         } else {
278                                 auto display_func = [this, primary_stream_idx, pts, secondary_stream_idx, secondary_pts, fade_alpha]{
279                                         destination->setFrame(primary_stream_idx, pts, /*interpolated=*/true, secondary_stream_idx, secondary_pts, fade_alpha);
280                                         assert(num_queued_frames > 0);
281                                         --num_queued_frames;
282                                 };
283                                 bool ok = video_stream->schedule_interpolated_frame(next_frame_start, pts, display_func, primary_stream_idx, in_pts_lower, in_pts_upper, alpha, secondary_stream_idx, secondary_pts, fade_alpha);
284                                 unique_lock<mutex> lock(queue_state_mu);
285                                 if (ok) ++num_queued_frames;
286                         }
287                 }
288
289                 // The clip ended.
290
291                 // Last-ditch effort to get the next clip (if e.g. the fade time was zero seconds).
292                 if (!got_next_clip && next_clip_callback != nullptr) {
293                         next_clip = next_clip_callback();
294                         if (next_clip.pts_in != -1) {
295                                 got_next_clip = true;
296                                 in_pts_start_next_clip = next_clip.pts_in;
297                         }
298                 }
299
300                 // Switch to next clip if we got it.
301                 if (got_next_clip) {
302                         clip = next_clip;
303                         stream_idx = next_clip.stream_idx;  // Override is used for previews only, and next_clip is used for live ony.
304                         if (done_callback != nullptr) {
305                                 done_callback();
306                         }
307                         got_next_clip = false;
308
309                         // Start the next clip from the point where the fade went out.
310                         origin = steady_clock::now();
311                         in_pts_origin = in_pts_start_next_clip;
312                         goto got_clip;
313                 }
314
315                 {
316                         unique_lock<mutex> lock(queue_state_mu);
317                         playing = false;
318                 }
319                 if (done_callback != nullptr) {
320                         done_callback();
321                 }
322         }
323 }
324
325 // Find the frame immediately before and after this point.
326 bool Player::find_surrounding_frames(int64_t pts, int stream_idx, int64_t *pts_lower, int64_t *pts_upper)
327 {
328         lock_guard<mutex> lock(frame_mu);
329
330         // Find the first frame such that frame.pts >= pts.
331         auto it = lower_bound(frames[stream_idx].begin(),
332                 frames[stream_idx].end(),
333                 pts);
334         if (it == frames[stream_idx].end()) {
335                 return false;
336         }
337         *pts_upper = *it;
338
339         // Find the last frame such that in_pts <= frame.pts (if any).
340         if (it == frames[stream_idx].begin()) {
341                 *pts_lower = *it;
342         } else {
343                 *pts_lower = *(it - 1);
344         }
345         assert(pts >= *pts_lower);
346         assert(pts <= *pts_upper);
347         return true;
348 }
349
350 Player::Player(JPEGFrameView *destination, bool also_output_to_stream)
351         : destination(destination)
352 {
353         thread(&Player::thread_func, this, also_output_to_stream).detach();
354 }
355
356 void Player::play_clip(const Clip &clip, unsigned stream_idx)
357 {
358         {
359                 lock_guard<mutex> lock(mu);
360                 current_clip = clip;
361                 current_stream_idx = stream_idx;
362         }
363
364         {
365                 lock_guard<mutex> lock(queue_state_mu);
366                 new_clip_ready = true;
367                 override_stream_idx = -1;
368                 new_clip_changed.notify_all();
369         }
370 }
371
372 void Player::override_angle(unsigned stream_idx)
373 {
374         // Corner case: If a new clip is waiting to be played, change its stream and then we're done.
375         {
376                 unique_lock<mutex> lock(queue_state_mu);
377                 if (new_clip_ready) {
378                         lock_guard<mutex> lock2(mu);
379                         current_stream_idx = stream_idx;
380                         return;
381                 }
382         }
383
384         // If we are playing a clip, set override_stream_idx, and the player thread will
385         // pick it up and change its internal index.
386         {
387                 unique_lock<mutex> lock(queue_state_mu);
388                 if (playing) {
389                         override_stream_idx = stream_idx;
390                         new_clip_changed.notify_all();
391                 }
392         }
393
394         // OK, so we're standing still, presumably at the end of a clip.
395         // Look at the current pts_out (if it exists), and show the closest
396         // thing we've got.
397         int64_t pts_out;
398         {
399                 lock_guard<mutex> lock(mu);
400                 if (current_clip.pts_out < 0) {
401                         return;
402                 }
403                 pts_out = current_clip.pts_out;
404         }
405
406         lock_guard<mutex> lock(frame_mu);
407         auto it = upper_bound(frames[stream_idx].begin(), frames[stream_idx].end(), pts_out);
408         if (it == frames[stream_idx].end()) {
409                 return;
410         }
411         destination->setFrame(stream_idx, *it, /*interpolated=*/false);
412 }