OpenShot Library | libopenshot  0.4.0
FFmpegReader.cpp
Go to the documentation of this file.
1 
12 // Copyright (c) 2008-2024 OpenShot Studios, LLC, Fabrice Bellard
13 //
14 // SPDX-License-Identifier: LGPL-3.0-or-later
15 
16 #include <thread> // for std::this_thread::sleep_for
17 #include <chrono> // for std::chrono::milliseconds
18 #include <unistd.h>
19 
20 #include "FFmpegUtilities.h"
21 
22 #include "FFmpegReader.h"
23 #include "Exceptions.h"
24 #include "Timeline.h"
25 #include "ZmqLogger.h"
26 
27 #define ENABLE_VAAPI 0
28 
29 #if USE_HW_ACCEL
30 #define MAX_SUPPORTED_WIDTH 1950
31 #define MAX_SUPPORTED_HEIGHT 1100
32 
33 #if ENABLE_VAAPI
34 #include "libavutil/hwcontext_vaapi.h"
35 
36 typedef struct VAAPIDecodeContext {
37  VAProfile va_profile;
38  VAEntrypoint va_entrypoint;
39  VAConfigID va_config;
40  VAContextID va_context;
41 
42 #if FF_API_STRUCT_VAAPI_CONTEXT
43  // FF_DISABLE_DEPRECATION_WARNINGS
44  int have_old_context;
45  struct vaapi_context *old_context;
46  AVBufferRef *device_ref;
47  // FF_ENABLE_DEPRECATION_WARNINGS
48 #endif
49 
50  AVHWDeviceContext *device;
51  AVVAAPIDeviceContext *hwctx;
52 
53  AVHWFramesContext *frames;
54  AVVAAPIFramesContext *hwfc;
55 
56  enum AVPixelFormat surface_format;
57  int surface_count;
58  } VAAPIDecodeContext;
59 #endif // ENABLE_VAAPI
60 #endif // USE_HW_ACCEL
61 
62 
63 using namespace openshot;
64 
65 int hw_de_on = 0;
66 #if USE_HW_ACCEL
67  AVPixelFormat hw_de_av_pix_fmt_global = AV_PIX_FMT_NONE;
68  AVHWDeviceType hw_de_av_device_type_global = AV_HWDEVICE_TYPE_NONE;
69 #endif
70 
71 FFmpegReader::FFmpegReader(const std::string &path, bool inspect_reader)
72  : last_frame(0), is_seeking(0), seeking_pts(0), seeking_frame(0), seek_count(0), NO_PTS_OFFSET(-99999),
73  path(path), is_video_seek(true), check_interlace(false), check_fps(false), enable_seek(true), is_open(false),
74  seek_audio_frame_found(0), seek_video_frame_found(0),is_duration_known(false), largest_frame_processed(0),
75  current_video_frame(0), packet(NULL), max_concurrent_frames(OPEN_MP_NUM_PROCESSORS), audio_pts(0),
76  video_pts(0), pFormatCtx(NULL), videoStream(-1), audioStream(-1), pCodecCtx(NULL), aCodecCtx(NULL),
77  pStream(NULL), aStream(NULL), pFrame(NULL), previous_packet_location{-1,0},
78  hold_packet(false) {
79 
80  // Initialize FFMpeg, and register all formats and codecs
83 
84  // Init timestamp offsets
85  pts_offset_seconds = NO_PTS_OFFSET;
86  video_pts_seconds = NO_PTS_OFFSET;
87  audio_pts_seconds = NO_PTS_OFFSET;
88 
89  // Init cache
90  working_cache.SetMaxBytesFromInfo(max_concurrent_frames * info.fps.ToDouble() * 2, info.width, info.height, info.sample_rate, info.channels);
91  final_cache.SetMaxBytesFromInfo(max_concurrent_frames * 2, info.width, info.height, info.sample_rate, info.channels);
92 
93  // Open and Close the reader, to populate its attributes (such as height, width, etc...)
94  if (inspect_reader) {
95  Open();
96  Close();
97  }
98 }
99 
101  if (is_open)
102  // Auto close reader if not already done
103  Close();
104 }
105 
106 // This struct holds the associated video frame and starting sample # for an audio packet.
107 bool AudioLocation::is_near(AudioLocation location, int samples_per_frame, int64_t amount) {
108  // Is frame even close to this one?
109  if (abs(location.frame - frame) >= 2)
110  // This is too far away to be considered
111  return false;
112 
113  // Note that samples_per_frame can vary slightly frame to frame when the
114  // audio sampling rate is not an integer multiple of the video fps.
115  int64_t diff = samples_per_frame * (location.frame - frame) + location.sample_start - sample_start;
116  if (abs(diff) <= amount)
117  // close
118  return true;
119 
120  // not close
121  return false;
122 }
123 
124 #if USE_HW_ACCEL
125 
126 // Get hardware pix format
127 static enum AVPixelFormat get_hw_dec_format(AVCodecContext *ctx, const enum AVPixelFormat *pix_fmts)
128 {
129  const enum AVPixelFormat *p;
130 
131  for (p = pix_fmts; *p != AV_PIX_FMT_NONE; p++) {
132  switch (*p) {
133 #if defined(__linux__)
134  // Linux pix formats
135  case AV_PIX_FMT_VAAPI:
136  hw_de_av_pix_fmt_global = AV_PIX_FMT_VAAPI;
137  hw_de_av_device_type_global = AV_HWDEVICE_TYPE_VAAPI;
138  return *p;
139  break;
140  case AV_PIX_FMT_VDPAU:
141  hw_de_av_pix_fmt_global = AV_PIX_FMT_VDPAU;
142  hw_de_av_device_type_global = AV_HWDEVICE_TYPE_VDPAU;
143  return *p;
144  break;
145 #endif
146 #if defined(_WIN32)
147  // Windows pix formats
148  case AV_PIX_FMT_DXVA2_VLD:
149  hw_de_av_pix_fmt_global = AV_PIX_FMT_DXVA2_VLD;
150  hw_de_av_device_type_global = AV_HWDEVICE_TYPE_DXVA2;
151  return *p;
152  break;
153  case AV_PIX_FMT_D3D11:
154  hw_de_av_pix_fmt_global = AV_PIX_FMT_D3D11;
155  hw_de_av_device_type_global = AV_HWDEVICE_TYPE_D3D11VA;
156  return *p;
157  break;
158 #endif
159 #if defined(__APPLE__)
160  // Apple pix formats
161  case AV_PIX_FMT_VIDEOTOOLBOX:
162  hw_de_av_pix_fmt_global = AV_PIX_FMT_VIDEOTOOLBOX;
163  hw_de_av_device_type_global = AV_HWDEVICE_TYPE_VIDEOTOOLBOX;
164  return *p;
165  break;
166 #endif
167  // Cross-platform pix formats
168  case AV_PIX_FMT_CUDA:
169  hw_de_av_pix_fmt_global = AV_PIX_FMT_CUDA;
170  hw_de_av_device_type_global = AV_HWDEVICE_TYPE_CUDA;
171  return *p;
172  break;
173  case AV_PIX_FMT_QSV:
174  hw_de_av_pix_fmt_global = AV_PIX_FMT_QSV;
175  hw_de_av_device_type_global = AV_HWDEVICE_TYPE_QSV;
176  return *p;
177  break;
178  default:
179  // This is only here to silence unused-enum warnings
180  break;
181  }
182  }
183  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::get_hw_dec_format (Unable to decode this file using hardware decode)");
184  return AV_PIX_FMT_NONE;
185 }
186 
187 int FFmpegReader::IsHardwareDecodeSupported(int codecid)
188 {
189  int ret;
190  switch (codecid) {
191  case AV_CODEC_ID_H264:
192  case AV_CODEC_ID_MPEG2VIDEO:
193  case AV_CODEC_ID_VC1:
194  case AV_CODEC_ID_WMV1:
195  case AV_CODEC_ID_WMV2:
196  case AV_CODEC_ID_WMV3:
197  ret = 1;
198  break;
199  default :
200  ret = 0;
201  break;
202  }
203  return ret;
204 }
205 #endif // USE_HW_ACCEL
206 
208  // Open reader if not already open
209  if (!is_open) {
210  // Prevent async calls to the following code
211  const std::lock_guard<std::recursive_mutex> lock(getFrameMutex);
212 
213  // Initialize format context
214  pFormatCtx = NULL;
215  {
217  ZmqLogger::Instance()->AppendDebugMethod("Decode hardware acceleration settings", "hw_de_on", hw_de_on, "HARDWARE_DECODER", openshot::Settings::Instance()->HARDWARE_DECODER);
218  }
219 
220  // Open video file
221  if (avformat_open_input(&pFormatCtx, path.c_str(), NULL, NULL) != 0)
222  throw InvalidFile("File could not be opened.", path);
223 
224  // Retrieve stream information
225  if (avformat_find_stream_info(pFormatCtx, NULL) < 0)
226  throw NoStreamsFound("No streams found in file.", path);
227 
228  videoStream = -1;
229  audioStream = -1;
230 
231  // Init end-of-file detection variables
232  packet_status.reset(true);
233 
234  // Loop through each stream, and identify the video and audio stream index
235  for (unsigned int i = 0; i < pFormatCtx->nb_streams; i++) {
236  // Is this a video stream?
237  if (AV_GET_CODEC_TYPE(pFormatCtx->streams[i]) == AVMEDIA_TYPE_VIDEO && videoStream < 0) {
238  videoStream = i;
239  packet_status.video_eof = false;
240  packet_status.packets_eof = false;
241  packet_status.end_of_file = false;
242  }
243  // Is this an audio stream?
244  if (AV_GET_CODEC_TYPE(pFormatCtx->streams[i]) == AVMEDIA_TYPE_AUDIO && audioStream < 0) {
245  audioStream = i;
246  packet_status.audio_eof = false;
247  packet_status.packets_eof = false;
248  packet_status.end_of_file = false;
249  }
250  }
251  if (videoStream == -1 && audioStream == -1)
252  throw NoStreamsFound("No video or audio streams found in this file.", path);
253 
254  // Is there a video stream?
255  if (videoStream != -1) {
256  // Set the stream index
257  info.video_stream_index = videoStream;
258 
259  // Set the codec and codec context pointers
260  pStream = pFormatCtx->streams[videoStream];
261 
262  // Find the codec ID from stream
263  const AVCodecID codecId = AV_FIND_DECODER_CODEC_ID(pStream);
264 
265  // Get codec and codec context from stream
266  const AVCodec *pCodec = avcodec_find_decoder(codecId);
267  AVDictionary *opts = NULL;
268  int retry_decode_open = 2;
269  // If hw accel is selected but hardware cannot handle repeat with software decoding
270  do {
271  pCodecCtx = AV_GET_CODEC_CONTEXT(pStream, pCodec);
272 #if USE_HW_ACCEL
273  if (hw_de_on && (retry_decode_open==2)) {
274  // Up to here no decision is made if hardware or software decode
275  hw_de_supported = IsHardwareDecodeSupported(pCodecCtx->codec_id);
276  }
277 #endif
278  retry_decode_open = 0;
279 
280  // Set number of threads equal to number of processors (not to exceed 16)
281  pCodecCtx->thread_count = std::min(FF_NUM_PROCESSORS, 16);
282 
283  if (pCodec == NULL) {
284  throw InvalidCodec("A valid video codec could not be found for this file.", path);
285  }
286 
287  // Init options
288  av_dict_set(&opts, "strict", "experimental", 0);
289 #if USE_HW_ACCEL
290  if (hw_de_on && hw_de_supported) {
291  // Open Hardware Acceleration
292  int i_decoder_hw = 0;
293  char adapter[256];
294  char *adapter_ptr = NULL;
295  int adapter_num;
297  fprintf(stderr, "Hardware decoding device number: %d\n", adapter_num);
298 
299  // Set hardware pix format (callback)
300  pCodecCtx->get_format = get_hw_dec_format;
301 
302  if (adapter_num < 3 && adapter_num >=0) {
303 #if defined(__linux__)
304  snprintf(adapter,sizeof(adapter),"/dev/dri/renderD%d", adapter_num+128);
305  adapter_ptr = adapter;
307  switch (i_decoder_hw) {
308  case 1:
309  hw_de_av_device_type = AV_HWDEVICE_TYPE_VAAPI;
310  break;
311  case 2:
312  hw_de_av_device_type = AV_HWDEVICE_TYPE_CUDA;
313  break;
314  case 6:
315  hw_de_av_device_type = AV_HWDEVICE_TYPE_VDPAU;
316  break;
317  case 7:
318  hw_de_av_device_type = AV_HWDEVICE_TYPE_QSV;
319  break;
320  default:
321  hw_de_av_device_type = AV_HWDEVICE_TYPE_VAAPI;
322  break;
323  }
324 
325 #elif defined(_WIN32)
326  adapter_ptr = NULL;
328  switch (i_decoder_hw) {
329  case 2:
330  hw_de_av_device_type = AV_HWDEVICE_TYPE_CUDA;
331  break;
332  case 3:
333  hw_de_av_device_type = AV_HWDEVICE_TYPE_DXVA2;
334  break;
335  case 4:
336  hw_de_av_device_type = AV_HWDEVICE_TYPE_D3D11VA;
337  break;
338  case 7:
339  hw_de_av_device_type = AV_HWDEVICE_TYPE_QSV;
340  break;
341  default:
342  hw_de_av_device_type = AV_HWDEVICE_TYPE_DXVA2;
343  break;
344  }
345 #elif defined(__APPLE__)
346  adapter_ptr = NULL;
348  switch (i_decoder_hw) {
349  case 5:
350  hw_de_av_device_type = AV_HWDEVICE_TYPE_VIDEOTOOLBOX;
351  break;
352  case 7:
353  hw_de_av_device_type = AV_HWDEVICE_TYPE_QSV;
354  break;
355  default:
356  hw_de_av_device_type = AV_HWDEVICE_TYPE_VIDEOTOOLBOX;
357  break;
358  }
359 #endif
360 
361  } else {
362  adapter_ptr = NULL; // Just to be sure
363  }
364 
365  // Check if it is there and writable
366 #if defined(__linux__)
367  if( adapter_ptr != NULL && access( adapter_ptr, W_OK ) == 0 ) {
368 #elif defined(_WIN32)
369  if( adapter_ptr != NULL ) {
370 #elif defined(__APPLE__)
371  if( adapter_ptr != NULL ) {
372 #endif
373  ZmqLogger::Instance()->AppendDebugMethod("Decode Device present using device");
374  }
375  else {
376  adapter_ptr = NULL; // use default
377  ZmqLogger::Instance()->AppendDebugMethod("Decode Device not present using default");
378  }
379 
380  hw_device_ctx = NULL;
381  // Here the first hardware initialisations are made
382  if (av_hwdevice_ctx_create(&hw_device_ctx, hw_de_av_device_type, adapter_ptr, NULL, 0) >= 0) {
383  if (!(pCodecCtx->hw_device_ctx = av_buffer_ref(hw_device_ctx))) {
384  throw InvalidCodec("Hardware device reference create failed.", path);
385  }
386 
387  /*
388  av_buffer_unref(&ist->hw_frames_ctx);
389  ist->hw_frames_ctx = av_hwframe_ctx_alloc(hw_device_ctx);
390  if (!ist->hw_frames_ctx) {
391  av_log(avctx, AV_LOG_ERROR, "Error creating a CUDA frames context\n");
392  return AVERROR(ENOMEM);
393  }
394 
395  frames_ctx = (AVHWFramesContext*)ist->hw_frames_ctx->data;
396 
397  frames_ctx->format = AV_PIX_FMT_CUDA;
398  frames_ctx->sw_format = avctx->sw_pix_fmt;
399  frames_ctx->width = avctx->width;
400  frames_ctx->height = avctx->height;
401 
402  av_log(avctx, AV_LOG_DEBUG, "Initializing CUDA frames context: sw_format = %s, width = %d, height = %d\n",
403  av_get_pix_fmt_name(frames_ctx->sw_format), frames_ctx->width, frames_ctx->height);
404 
405 
406  ret = av_hwframe_ctx_init(pCodecCtx->hw_device_ctx);
407  ret = av_hwframe_ctx_init(ist->hw_frames_ctx);
408  if (ret < 0) {
409  av_log(avctx, AV_LOG_ERROR, "Error initializing a CUDA frame pool\n");
410  return ret;
411  }
412  */
413  }
414  else {
415  throw InvalidCodec("Hardware device create failed.", path);
416  }
417  }
418 #endif // USE_HW_ACCEL
419 
420  // Disable per-frame threading for album arts
421  // Using FF_THREAD_FRAME adds one frame decoding delay per thread,
422  // but there's only one frame in this case.
423  if (HasAlbumArt())
424  {
425  pCodecCtx->thread_type &= ~FF_THREAD_FRAME;
426  }
427 
428  // Open video codec
429  int avcodec_return = avcodec_open2(pCodecCtx, pCodec, &opts);
430  if (avcodec_return < 0) {
431  std::stringstream avcodec_error_msg;
432  avcodec_error_msg << "A video codec was found, but could not be opened. Error: " << av_err2string(avcodec_return);
433  throw InvalidCodec(avcodec_error_msg.str(), path);
434  }
435 
436 #if USE_HW_ACCEL
437  if (hw_de_on && hw_de_supported) {
438  AVHWFramesConstraints *constraints = NULL;
439  void *hwconfig = NULL;
440  hwconfig = av_hwdevice_hwconfig_alloc(hw_device_ctx);
441 
442 // TODO: needs va_config!
443 #if ENABLE_VAAPI
444  ((AVVAAPIHWConfig *)hwconfig)->config_id = ((VAAPIDecodeContext *)(pCodecCtx->priv_data))->va_config;
445  constraints = av_hwdevice_get_hwframe_constraints(hw_device_ctx,hwconfig);
446 #endif // ENABLE_VAAPI
447  if (constraints) {
448  if (pCodecCtx->coded_width < constraints->min_width ||
449  pCodecCtx->coded_height < constraints->min_height ||
450  pCodecCtx->coded_width > constraints->max_width ||
451  pCodecCtx->coded_height > constraints->max_height) {
452  ZmqLogger::Instance()->AppendDebugMethod("DIMENSIONS ARE TOO LARGE for hardware acceleration\n");
453  hw_de_supported = 0;
454  retry_decode_open = 1;
455  AV_FREE_CONTEXT(pCodecCtx);
456  if (hw_device_ctx) {
457  av_buffer_unref(&hw_device_ctx);
458  hw_device_ctx = NULL;
459  }
460  }
461  else {
462  // All is just peachy
463  ZmqLogger::Instance()->AppendDebugMethod("\nDecode hardware acceleration is used\n", "Min width :", constraints->min_width, "Min Height :", constraints->min_height, "MaxWidth :", constraints->max_width, "MaxHeight :", constraints->max_height, "Frame width :", pCodecCtx->coded_width, "Frame height :", pCodecCtx->coded_height);
464  retry_decode_open = 0;
465  }
466  av_hwframe_constraints_free(&constraints);
467  if (hwconfig) {
468  av_freep(&hwconfig);
469  }
470  }
471  else {
472  int max_h, max_w;
473  //max_h = ((getenv( "LIMIT_HEIGHT_MAX" )==NULL) ? MAX_SUPPORTED_HEIGHT : atoi(getenv( "LIMIT_HEIGHT_MAX" )));
475  //max_w = ((getenv( "LIMIT_WIDTH_MAX" )==NULL) ? MAX_SUPPORTED_WIDTH : atoi(getenv( "LIMIT_WIDTH_MAX" )));
477  ZmqLogger::Instance()->AppendDebugMethod("Constraints could not be found using default limit\n");
478  //cerr << "Constraints could not be found using default limit\n";
479  if (pCodecCtx->coded_width < 0 ||
480  pCodecCtx->coded_height < 0 ||
481  pCodecCtx->coded_width > max_w ||
482  pCodecCtx->coded_height > max_h ) {
483  ZmqLogger::Instance()->AppendDebugMethod("DIMENSIONS ARE TOO LARGE for hardware acceleration\n", "Max Width :", max_w, "Max Height :", max_h, "Frame width :", pCodecCtx->coded_width, "Frame height :", pCodecCtx->coded_height);
484  hw_de_supported = 0;
485  retry_decode_open = 1;
486  AV_FREE_CONTEXT(pCodecCtx);
487  if (hw_device_ctx) {
488  av_buffer_unref(&hw_device_ctx);
489  hw_device_ctx = NULL;
490  }
491  }
492  else {
493  ZmqLogger::Instance()->AppendDebugMethod("\nDecode hardware acceleration is used\n", "Max Width :", max_w, "Max Height :", max_h, "Frame width :", pCodecCtx->coded_width, "Frame height :", pCodecCtx->coded_height);
494  retry_decode_open = 0;
495  }
496  }
497  } // if hw_de_on && hw_de_supported
498  else {
499  ZmqLogger::Instance()->AppendDebugMethod("\nDecode in software is used\n");
500  }
501 #else
502  retry_decode_open = 0;
503 #endif // USE_HW_ACCEL
504  } while (retry_decode_open); // retry_decode_open
505  // Free options
506  av_dict_free(&opts);
507 
508  // Update the File Info struct with video details (if a video stream is found)
509  UpdateVideoInfo();
510  }
511 
512  // Is there an audio stream?
513  if (audioStream != -1) {
514  // Set the stream index
515  info.audio_stream_index = audioStream;
516 
517  // Get a pointer to the codec context for the audio stream
518  aStream = pFormatCtx->streams[audioStream];
519 
520  // Find the codec ID from stream
521  AVCodecID codecId = AV_FIND_DECODER_CODEC_ID(aStream);
522 
523  // Get codec and codec context from stream
524  const AVCodec *aCodec = avcodec_find_decoder(codecId);
525  aCodecCtx = AV_GET_CODEC_CONTEXT(aStream, aCodec);
526 
527  // Set number of threads equal to number of processors (not to exceed 16)
528  aCodecCtx->thread_count = std::min(FF_NUM_PROCESSORS, 16);
529 
530  if (aCodec == NULL) {
531  throw InvalidCodec("A valid audio codec could not be found for this file.", path);
532  }
533 
534  // Init options
535  AVDictionary *opts = NULL;
536  av_dict_set(&opts, "strict", "experimental", 0);
537 
538  // Open audio codec
539  if (avcodec_open2(aCodecCtx, aCodec, &opts) < 0)
540  throw InvalidCodec("An audio codec was found, but could not be opened.", path);
541 
542  // Free options
543  av_dict_free(&opts);
544 
545  // Update the File Info struct with audio details (if an audio stream is found)
546  UpdateAudioInfo();
547  }
548 
549  // Add format metadata (if any)
550  AVDictionaryEntry *tag = NULL;
551  while ((tag = av_dict_get(pFormatCtx->metadata, "", tag, AV_DICT_IGNORE_SUFFIX))) {
552  QString str_key = tag->key;
553  QString str_value = tag->value;
554  info.metadata[str_key.toStdString()] = str_value.trimmed().toStdString();
555  }
556 
557  // If "rotate" isn't already set, extract it from the video stream's side data.
558  // TODO: nb_side_data is depreciated, and I'm not sure the preferred way to do this
559  if (info.metadata.find("rotate") == info.metadata.end()) {
560  for (unsigned int i = 0; i < pFormatCtx->nb_streams; i++) {
561  if (pFormatCtx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
562 #pragma GCC diagnostic push
563 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
564  for (int j = 0; j < pFormatCtx->streams[i]->nb_side_data; j++) {
565  // Get the j-th side data element.
566  AVPacketSideData *sd = &pFormatCtx->streams[i]->side_data[j];
567 #pragma GCC diagnostic pop
568  if (sd->type == AV_PKT_DATA_DISPLAYMATRIX && sd->size >= 9 * sizeof(int32_t)) {
569  double rotation = -av_display_rotation_get(reinterpret_cast<int32_t *>(sd->data));
570  if (isnan(rotation))
571  rotation = 0;
572  QString str_value = QString::number(rotation, 'g', 6);
573  info.metadata["rotate"] = str_value.trimmed().toStdString();
574  break;
575  }
576  }
577  break; // Only process the first video stream.
578  }
579  }
580  }
581 
582  // Init previous audio location to zero
583  previous_packet_location.frame = -1;
584  previous_packet_location.sample_start = 0;
585 
586  // Adjust cache size based on size of frame and audio
587  working_cache.SetMaxBytesFromInfo(max_concurrent_frames * info.fps.ToDouble() * 2, info.width, info.height, info.sample_rate, info.channels);
589 
590  // Scan PTS for any offsets (i.e. non-zero starting streams). At least 1 stream must start at zero timestamp.
591  // This method allows us to shift timestamps to ensure at least 1 stream is starting at zero.
592  UpdatePTSOffset();
593 
594  // Override an invalid framerate
595  if (info.fps.ToFloat() > 240.0f || (info.fps.num <= 0 || info.fps.den <= 0) || info.video_length <= 0) {
596  // Calculate FPS, duration, video bit rate, and video length manually
597  // by scanning through all the video stream packets
598  CheckFPS();
599  }
600 
601  // Mark as "open"
602  is_open = true;
603 
604  // Seek back to beginning of file (if not already seeking)
605  if (!is_seeking) {
606  Seek(1);
607  }
608  }
609 }
610 
612  // Close all objects, if reader is 'open'
613  if (is_open) {
614  // Prevent async calls to the following code
615  const std::lock_guard<std::recursive_mutex> lock(getFrameMutex);
616 
617  // Mark as "closed"
618  is_open = false;
619 
620  // Keep track of most recent packet
621  AVPacket *recent_packet = packet;
622 
623  // Drain any packets from the decoder
624  packet = NULL;
625  int attempts = 0;
626  int max_attempts = 128;
627  while (packet_status.packets_decoded() < packet_status.packets_read() && attempts < max_attempts) {
628  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::Close (Drain decoder loop)",
629  "packets_read", packet_status.packets_read(),
630  "packets_decoded", packet_status.packets_decoded(),
631  "attempts", attempts);
632  if (packet_status.video_decoded < packet_status.video_read) {
633  ProcessVideoPacket(info.video_length);
634  }
635  if (packet_status.audio_decoded < packet_status.audio_read) {
636  ProcessAudioPacket(info.video_length);
637  }
638  attempts++;
639  }
640 
641  // Remove packet
642  if (recent_packet) {
643  RemoveAVPacket(recent_packet);
644  }
645 
646  // Close the video codec
647  if (info.has_video) {
648  if(avcodec_is_open(pCodecCtx)) {
649  avcodec_flush_buffers(pCodecCtx);
650  }
651  AV_FREE_CONTEXT(pCodecCtx);
652 #if USE_HW_ACCEL
653  if (hw_de_on) {
654  if (hw_device_ctx) {
655  av_buffer_unref(&hw_device_ctx);
656  hw_device_ctx = NULL;
657  }
658  }
659 #endif // USE_HW_ACCEL
660  }
661 
662  // Close the audio codec
663  if (info.has_audio) {
664  if(avcodec_is_open(aCodecCtx)) {
665  avcodec_flush_buffers(aCodecCtx);
666  }
667  AV_FREE_CONTEXT(aCodecCtx);
668  }
669 
670  // Clear final cache
671  final_cache.Clear();
672  working_cache.Clear();
673 
674  // Close the video file
675  avformat_close_input(&pFormatCtx);
676  av_freep(&pFormatCtx);
677 
678  // Reset some variables
679  last_frame = 0;
680  hold_packet = false;
681  largest_frame_processed = 0;
682  seek_audio_frame_found = 0;
683  seek_video_frame_found = 0;
684  current_video_frame = 0;
685  last_video_frame.reset();
686  }
687 }
688 
689 bool FFmpegReader::HasAlbumArt() {
690  // Check if the video stream we use is an attached picture
691  // This won't return true if the file has a cover image as a secondary stream
692  // like an MKV file with an attached image file
693  return pFormatCtx && videoStream >= 0 && pFormatCtx->streams[videoStream]
694  && (pFormatCtx->streams[videoStream]->disposition & AV_DISPOSITION_ATTACHED_PIC);
695 }
696 
697 void FFmpegReader::UpdateAudioInfo() {
698  // Set default audio channel layout (if needed)
699 #if HAVE_CH_LAYOUT
700  if (!av_channel_layout_check(&(AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->ch_layout)))
701  AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->ch_layout = (AVChannelLayout) AV_CHANNEL_LAYOUT_STEREO;
702 #else
703  if (AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->channel_layout == 0)
704  AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->channel_layout = av_get_default_channel_layout(AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->channels);
705 #endif
706 
707  if (info.sample_rate > 0) {
708  // Skip init - if info struct already populated
709  return;
710  }
711 
712  // Set values of FileInfo struct
713  info.has_audio = true;
714  info.file_size = pFormatCtx->pb ? avio_size(pFormatCtx->pb) : -1;
715  info.acodec = aCodecCtx->codec->name;
716 #if HAVE_CH_LAYOUT
717  info.channels = AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->ch_layout.nb_channels;
718  info.channel_layout = (ChannelLayout) AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->ch_layout.u.mask;
719 #else
720  info.channels = AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->channels;
721  info.channel_layout = (ChannelLayout) AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->channel_layout;
722 #endif
723 
724  // If channel layout is not set, guess based on the number of channels
725  if (info.channel_layout == 0) {
726  if (info.channels == 1) {
728  } else if (info.channels == 2) {
730  }
731  }
732 
733  info.sample_rate = AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->sample_rate;
734  info.audio_bit_rate = AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->bit_rate;
735  if (info.audio_bit_rate <= 0) {
736  // Get bitrate from format
737  info.audio_bit_rate = pFormatCtx->bit_rate;
738  }
739 
740  // Set audio timebase
741  info.audio_timebase.num = aStream->time_base.num;
742  info.audio_timebase.den = aStream->time_base.den;
743 
744  // Get timebase of audio stream (if valid) and greater than the current duration
745  if (aStream->duration > 0 && aStream->duration > info.duration) {
746  // Get duration from audio stream
747  info.duration = aStream->duration * info.audio_timebase.ToDouble();
748  } else if (pFormatCtx->duration > 0 && info.duration <= 0.0f) {
749  // Use the format's duration
750  info.duration = float(pFormatCtx->duration) / AV_TIME_BASE;
751  }
752 
753  // Calculate duration from filesize and bitrate (if any)
754  if (info.duration <= 0.0f && info.video_bit_rate > 0 && info.file_size > 0) {
755  // Estimate from bitrate, total bytes, and framerate
757  }
758 
759  // Check for an invalid video length
760  if (info.has_video && info.video_length <= 0) {
761  // Calculate the video length from the audio duration
763  }
764 
765  // Set video timebase (if no video stream was found)
766  if (!info.has_video) {
767  // Set a few important default video settings (so audio can be divided into frames)
768  info.fps.num = 24;
769  info.fps.den = 1;
770  info.video_timebase.num = 1;
771  info.video_timebase.den = 24;
773  info.width = 720;
774  info.height = 480;
775 
776  // Use timeline to set correct width & height (if any)
777  Clip *parent = static_cast<Clip *>(ParentClip());
778  if (parent) {
779  if (parent->ParentTimeline()) {
780  // Set max width/height based on parent clip's timeline (if attached to a timeline)
781  info.width = parent->ParentTimeline()->preview_width;
782  info.height = parent->ParentTimeline()->preview_height;
783  }
784  }
785  }
786 
787  // Fix invalid video lengths for certain types of files (MP3 for example)
788  if (info.has_video && ((info.duration * info.fps.ToDouble()) - info.video_length > 60)) {
790  }
791 
792  // Add audio metadata (if any found)
793  AVDictionaryEntry *tag = NULL;
794  while ((tag = av_dict_get(aStream->metadata, "", tag, AV_DICT_IGNORE_SUFFIX))) {
795  QString str_key = tag->key;
796  QString str_value = tag->value;
797  info.metadata[str_key.toStdString()] = str_value.trimmed().toStdString();
798  }
799 }
800 
801 void FFmpegReader::UpdateVideoInfo() {
802  if (info.vcodec.length() > 0) {
803  // Skip init - if info struct already populated
804  return;
805  }
806 
807  // Set values of FileInfo struct
808  info.has_video = true;
809  info.file_size = pFormatCtx->pb ? avio_size(pFormatCtx->pb) : -1;
810  info.height = AV_GET_CODEC_ATTRIBUTES(pStream, pCodecCtx)->height;
811  info.width = AV_GET_CODEC_ATTRIBUTES(pStream, pCodecCtx)->width;
812  info.vcodec = pCodecCtx->codec->name;
813  info.video_bit_rate = (pFormatCtx->bit_rate / 8);
814 
815  // Frame rate from the container and codec
816  AVRational framerate = av_guess_frame_rate(pFormatCtx, pStream, NULL);
817  if (!check_fps) {
818  info.fps.num = framerate.num;
819  info.fps.den = framerate.den;
820  }
821 
822  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::UpdateVideoInfo", "info.fps.num", info.fps.num, "info.fps.den", info.fps.den);
823 
824  // TODO: remove excessive debug info in the next releases
825  // The debug info below is just for comparison and troubleshooting on users side during the transition period
826  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::UpdateVideoInfo (pStream->avg_frame_rate)", "num", pStream->avg_frame_rate.num, "den", pStream->avg_frame_rate.den);
827 
828  if (pStream->sample_aspect_ratio.num != 0) {
829  info.pixel_ratio.num = pStream->sample_aspect_ratio.num;
830  info.pixel_ratio.den = pStream->sample_aspect_ratio.den;
831  } else if (AV_GET_CODEC_ATTRIBUTES(pStream, pCodecCtx)->sample_aspect_ratio.num != 0) {
832  info.pixel_ratio.num = AV_GET_CODEC_ATTRIBUTES(pStream, pCodecCtx)->sample_aspect_ratio.num;
833  info.pixel_ratio.den = AV_GET_CODEC_ATTRIBUTES(pStream, pCodecCtx)->sample_aspect_ratio.den;
834  } else {
835  info.pixel_ratio.num = 1;
836  info.pixel_ratio.den = 1;
837  }
838  info.pixel_format = AV_GET_CODEC_PIXEL_FORMAT(pStream, pCodecCtx);
839 
840  // Calculate the DAR (display aspect ratio)
842 
843  // Reduce size fraction
844  size.Reduce();
845 
846  // Set the ratio based on the reduced fraction
847  info.display_ratio.num = size.num;
848  info.display_ratio.den = size.den;
849 
850  // Get scan type and order from codec context/params
851  if (!check_interlace) {
852  check_interlace = true;
853  AVFieldOrder field_order = AV_GET_CODEC_ATTRIBUTES(pStream, pCodecCtx)->field_order;
854  switch(field_order) {
855  case AV_FIELD_PROGRESSIVE:
856  info.interlaced_frame = false;
857  break;
858  case AV_FIELD_TT:
859  case AV_FIELD_TB:
860  info.interlaced_frame = true;
861  info.top_field_first = true;
862  break;
863  case AV_FIELD_BT:
864  case AV_FIELD_BB:
865  info.interlaced_frame = true;
866  info.top_field_first = false;
867  break;
868  case AV_FIELD_UNKNOWN:
869  // Check again later?
870  check_interlace = false;
871  break;
872  }
873  // check_interlace will prevent these checks being repeated,
874  // unless it was cleared because we got an AV_FIELD_UNKNOWN response.
875  }
876 
877  // Set the video timebase
878  info.video_timebase.num = pStream->time_base.num;
879  info.video_timebase.den = pStream->time_base.den;
880 
881  // Set the duration in seconds, and video length (# of frames)
882  info.duration = pStream->duration * info.video_timebase.ToDouble();
883 
884  // Check for valid duration (if found)
885  if (info.duration <= 0.0f && pFormatCtx->duration >= 0) {
886  // Use the format's duration
887  info.duration = float(pFormatCtx->duration) / AV_TIME_BASE;
888  }
889 
890  // Calculate duration from filesize and bitrate (if any)
891  if (info.duration <= 0.0f && info.video_bit_rate > 0 && info.file_size > 0) {
892  // Estimate from bitrate, total bytes, and framerate
894  }
895 
896  // Certain "image" formats do not have a valid duration
897  if (info.duration <= 0.0f && pStream->duration == AV_NOPTS_VALUE && pFormatCtx->duration == AV_NOPTS_VALUE) {
898  // Force an "image" duration
899  info.duration = 60 * 60 * 1; // 1 hour duration
900  info.video_length = 1;
901  info.has_single_image = true;
902  }
903 
904  // Get the # of video frames (if found in stream)
905  // Only set this 1 time (this method can be called multiple times)
906  if (pStream->nb_frames > 0 && info.video_length <= 0)
907  {
908  info.video_length = pStream->nb_frames;
909 
910  // If the file format is animated GIF, override the video_length to be (duration * fps) rounded.
911  if (pFormatCtx && pFormatCtx->iformat && strcmp(pFormatCtx->iformat->name, "gif") == 0)
912  {
913  if (pStream->nb_frames > 1) {
914  // Animated gif (nb_frames does not take into delays and gaps)
916  } else {
917  // Static non-animated gif (set a default duration)
918  info.duration = 10.0;
919  }
920  }
921  }
922 
923  // No duration found in stream of file
924  if (info.duration <= 0.0f) {
925  // No duration is found in the video stream
926  info.duration = -1;
927  info.video_length = -1;
928  is_duration_known = false;
929  } else {
930  // Yes, a duration was found
931  is_duration_known = true;
932 
933  // Calculate number of frames (if not already found in metadata)
934  // Only set this 1 time (this method can be called multiple times)
935  if (info.video_length <= 0) {
937  }
938  }
939 
940  // Add video metadata (if any)
941  AVDictionaryEntry *tag = NULL;
942  while ((tag = av_dict_get(pStream->metadata, "", tag, AV_DICT_IGNORE_SUFFIX))) {
943  QString str_key = tag->key;
944  QString str_value = tag->value;
945  info.metadata[str_key.toStdString()] = str_value.trimmed().toStdString();
946  }
947 }
948 
950  return this->is_duration_known;
951 }
952 
953 std::shared_ptr<Frame> FFmpegReader::GetFrame(int64_t requested_frame) {
954  // Check for open reader (or throw exception)
955  if (!is_open)
956  throw ReaderClosed("The FFmpegReader is closed. Call Open() before calling this method.", path);
957 
958  // Adjust for a requested frame that is too small or too large
959  if (requested_frame < 1)
960  requested_frame = 1;
961  if (requested_frame > info.video_length && is_duration_known)
962  requested_frame = info.video_length;
963  if (info.has_video && info.video_length == 0)
964  // Invalid duration of video file
965  throw InvalidFile("Could not detect the duration of the video or audio stream.", path);
966 
967  // Debug output
968  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::GetFrame", "requested_frame", requested_frame, "last_frame", last_frame);
969 
970  // Check the cache for this frame
971  std::shared_ptr<Frame> frame = final_cache.GetFrame(requested_frame);
972  if (frame) {
973  // Debug output
974  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::GetFrame", "returned cached frame", requested_frame);
975 
976  // Return the cached frame
977  return frame;
978  } else {
979 
980  // Prevent async calls to the remainder of this code
981  const std::lock_guard<std::recursive_mutex> lock(getFrameMutex);
982 
983  // Check the cache a 2nd time (due to the potential previous lock)
984  frame = final_cache.GetFrame(requested_frame);
985  if (frame) {
986  // Debug output
987  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::GetFrame", "returned cached frame on 2nd look", requested_frame);
988 
989  } else {
990  // Frame is not in cache
991  // Reset seek count
992  seek_count = 0;
993 
994  // Are we within X frames of the requested frame?
995  int64_t diff = requested_frame - last_frame;
996  if (diff >= 1 && diff <= 20) {
997  // Continue walking the stream
998  frame = ReadStream(requested_frame);
999  } else {
1000  // Greater than 30 frames away, or backwards, we need to seek to the nearest key frame
1001  if (enable_seek) {
1002  // Only seek if enabled
1003  Seek(requested_frame);
1004 
1005  } else if (!enable_seek && diff < 0) {
1006  // Start over, since we can't seek, and the requested frame is smaller than our position
1007  // Since we are seeking to frame 1, this actually just closes/re-opens the reader
1008  Seek(1);
1009  }
1010 
1011  // Then continue walking the stream
1012  frame = ReadStream(requested_frame);
1013  }
1014  }
1015  return frame;
1016  }
1017 }
1018 
1019 // Read the stream until we find the requested Frame
1020 std::shared_ptr<Frame> FFmpegReader::ReadStream(int64_t requested_frame) {
1021  // Allocate video frame
1022  bool check_seek = false;
1023  int packet_error = -1;
1024 
1025  // Debug output
1026  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ReadStream", "requested_frame", requested_frame, "max_concurrent_frames", max_concurrent_frames);
1027 
1028  // Loop through the stream until the correct frame is found
1029  while (true) {
1030  // Check if working frames are 'finished'
1031  if (!is_seeking) {
1032  // Check for final frames
1033  CheckWorkingFrames(requested_frame);
1034  }
1035 
1036  // Check if requested 'final' frame is available (and break out of loop if found)
1037  bool is_cache_found = (final_cache.GetFrame(requested_frame) != NULL);
1038  if (is_cache_found) {
1039  break;
1040  }
1041 
1042  if (!hold_packet || !packet) {
1043  // Get the next packet
1044  packet_error = GetNextPacket();
1045  if (packet_error < 0 && !packet) {
1046  // No more packets to be found
1047  packet_status.packets_eof = true;
1048  }
1049  }
1050 
1051  // Debug output
1052  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ReadStream (GetNextPacket)", "requested_frame", requested_frame,"packets_read", packet_status.packets_read(), "packets_decoded", packet_status.packets_decoded(), "is_seeking", is_seeking);
1053 
1054  // Check the status of a seek (if any)
1055  if (is_seeking) {
1056  check_seek = CheckSeek(false);
1057  } else {
1058  check_seek = false;
1059  }
1060 
1061  if (check_seek) {
1062  // Packet may become NULL on Close inside Seek if CheckSeek returns false
1063  // Jump to the next iteration of this loop
1064  continue;
1065  }
1066 
1067  // Video packet
1068  if ((info.has_video && packet && packet->stream_index == videoStream) ||
1069  (info.has_video && packet_status.video_decoded < packet_status.video_read) ||
1070  (info.has_video && !packet && !packet_status.video_eof)) {
1071  // Process Video Packet
1072  ProcessVideoPacket(requested_frame);
1073  }
1074  // Audio packet
1075  if ((info.has_audio && packet && packet->stream_index == audioStream) ||
1076  (info.has_audio && !packet && packet_status.audio_decoded < packet_status.audio_read) ||
1077  (info.has_audio && !packet && !packet_status.audio_eof)) {
1078  // Process Audio Packet
1079  ProcessAudioPacket(requested_frame);
1080  }
1081 
1082  // Remove unused packets (sometimes we purposely ignore video or audio packets,
1083  // if the has_video or has_audio properties are manually overridden)
1084  if ((!info.has_video && packet && packet->stream_index == videoStream) ||
1085  (!info.has_audio && packet && packet->stream_index == audioStream)) {
1086  // Keep track of deleted packet counts
1087  if (packet->stream_index == videoStream) {
1088  packet_status.video_decoded++;
1089  } else if (packet->stream_index == audioStream) {
1090  packet_status.audio_decoded++;
1091  }
1092 
1093  // Remove unused packets (sometimes we purposely ignore video or audio packets,
1094  // if the has_video or has_audio properties are manually overridden)
1095  RemoveAVPacket(packet);
1096  packet = NULL;
1097  }
1098 
1099  // Determine end-of-stream (waiting until final decoder threads finish)
1100  // Force end-of-stream in some situations
1101  packet_status.end_of_file = packet_status.packets_eof && packet_status.video_eof && packet_status.audio_eof;
1102  if ((packet_status.packets_eof && packet_status.packets_read() == packet_status.packets_decoded()) || packet_status.end_of_file) {
1103  // Force EOF (end of file) variables to true, if decoder does not support EOF detection.
1104  // If we have no more packets, and all known packets have been decoded
1105  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ReadStream (force EOF)", "packets_read", packet_status.packets_read(), "packets_decoded", packet_status.packets_decoded(), "packets_eof", packet_status.packets_eof, "video_eof", packet_status.video_eof, "audio_eof", packet_status.audio_eof, "end_of_file", packet_status.end_of_file);
1106  if (!packet_status.video_eof) {
1107  packet_status.video_eof = true;
1108  }
1109  if (!packet_status.audio_eof) {
1110  packet_status.audio_eof = true;
1111  }
1112  packet_status.end_of_file = true;
1113  break;
1114  }
1115  } // end while
1116 
1117  // Debug output
1118  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ReadStream (Completed)",
1119  "packets_read", packet_status.packets_read(),
1120  "packets_decoded", packet_status.packets_decoded(),
1121  "end_of_file", packet_status.end_of_file,
1122  "largest_frame_processed", largest_frame_processed,
1123  "Working Cache Count", working_cache.Count());
1124 
1125  // Have we reached end-of-stream (or the final frame)?
1126  if (!packet_status.end_of_file && requested_frame >= info.video_length) {
1127  // Force end-of-stream
1128  packet_status.end_of_file = true;
1129  }
1130  if (packet_status.end_of_file) {
1131  // Mark any other working frames as 'finished'
1132  CheckWorkingFrames(requested_frame);
1133  }
1134 
1135  // Return requested frame (if found)
1136  std::shared_ptr<Frame> frame = final_cache.GetFrame(requested_frame);
1137  if (frame)
1138  // Return prepared frame
1139  return frame;
1140  else {
1141 
1142  // Check if largest frame is still cached
1143  frame = final_cache.GetFrame(largest_frame_processed);
1144  int samples_in_frame = Frame::GetSamplesPerFrame(requested_frame, info.fps,
1146  if (frame) {
1147  // Copy and return the largest processed frame (assuming it was the last in the video file)
1148  std::shared_ptr<Frame> f = CreateFrame(largest_frame_processed);
1149 
1150  // Use solid color (if no image data found)
1151  if (!frame->has_image_data) {
1152  // Use solid black frame if no image data available
1153  f->AddColor(info.width, info.height, "#000");
1154  }
1155  // Silence audio data (if any), since we are repeating the last frame
1156  frame->AddAudioSilence(samples_in_frame);
1157 
1158  return frame;
1159  } else {
1160  // The largest processed frame is no longer in cache, return a blank frame
1161  std::shared_ptr<Frame> f = CreateFrame(largest_frame_processed);
1162  f->AddColor(info.width, info.height, "#000");
1163  f->AddAudioSilence(samples_in_frame);
1164  return f;
1165  }
1166  }
1167 
1168 }
1169 
1170 // Get the next packet (if any)
1171 int FFmpegReader::GetNextPacket() {
1172  int found_packet = 0;
1173  AVPacket *next_packet;
1174  next_packet = new AVPacket();
1175  found_packet = av_read_frame(pFormatCtx, next_packet);
1176 
1177  if (packet) {
1178  // Remove previous packet before getting next one
1179  RemoveAVPacket(packet);
1180  packet = NULL;
1181  }
1182  if (found_packet >= 0) {
1183  // Update current packet pointer
1184  packet = next_packet;
1185 
1186  // Keep track of packet stats
1187  if (packet->stream_index == videoStream) {
1188  packet_status.video_read++;
1189  } else if (packet->stream_index == audioStream) {
1190  packet_status.audio_read++;
1191  }
1192  } else {
1193  // No more packets found
1194  delete next_packet;
1195  packet = NULL;
1196  }
1197  // Return if packet was found (or error number)
1198  return found_packet;
1199 }
1200 
1201 // Get an AVFrame (if any)
1202 bool FFmpegReader::GetAVFrame() {
1203  int frameFinished = 0;
1204 
1205  // Decode video frame
1206  AVFrame *next_frame = AV_ALLOCATE_FRAME();
1207 
1208 #if IS_FFMPEG_3_2
1209  int send_packet_err = 0;
1210  int64_t send_packet_pts = 0;
1211  if ((packet && packet->stream_index == videoStream) || !packet) {
1212  send_packet_err = avcodec_send_packet(pCodecCtx, packet);
1213 
1214  if (packet && send_packet_err >= 0) {
1215  send_packet_pts = GetPacketPTS();
1216  hold_packet = false;
1217  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::GetAVFrame (send packet succeeded)", "send_packet_err", send_packet_err, "send_packet_pts", send_packet_pts);
1218  }
1219  }
1220 
1221  #if USE_HW_ACCEL
1222  // Get the format from the variables set in get_hw_dec_format
1223  hw_de_av_pix_fmt = hw_de_av_pix_fmt_global;
1224  hw_de_av_device_type = hw_de_av_device_type_global;
1225  #endif // USE_HW_ACCEL
1226  if (send_packet_err < 0 && send_packet_err != AVERROR_EOF) {
1227  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::GetAVFrame (send packet: Not sent [" + av_err2string(send_packet_err) + "])", "send_packet_err", send_packet_err, "send_packet_pts", send_packet_pts);
1228  if (send_packet_err == AVERROR(EAGAIN)) {
1229  hold_packet = true;
1230  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::GetAVFrame (send packet: AVERROR(EAGAIN): user must read output with avcodec_receive_frame()", "send_packet_pts", send_packet_pts);
1231  }
1232  if (send_packet_err == AVERROR(EINVAL)) {
1233  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::GetAVFrame (send packet: AVERROR(EINVAL): codec not opened, it is an encoder, or requires flush", "send_packet_pts", send_packet_pts);
1234  }
1235  if (send_packet_err == AVERROR(ENOMEM)) {
1236  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::GetAVFrame (send packet: AVERROR(ENOMEM): failed to add packet to internal queue, or legitimate decoding errors", "send_packet_pts", send_packet_pts);
1237  }
1238  }
1239 
1240  // Always try and receive a packet, if not EOF.
1241  // Even if the above avcodec_send_packet failed to send,
1242  // we might still need to receive a packet.
1243  int receive_frame_err = 0;
1244  AVFrame *next_frame2;
1245 #if USE_HW_ACCEL
1246  if (hw_de_on && hw_de_supported) {
1247  next_frame2 = AV_ALLOCATE_FRAME();
1248  }
1249  else
1250 #endif // USE_HW_ACCEL
1251  {
1252  next_frame2 = next_frame;
1253  }
1254  pFrame = AV_ALLOCATE_FRAME();
1255  while (receive_frame_err >= 0) {
1256  receive_frame_err = avcodec_receive_frame(pCodecCtx, next_frame2);
1257 
1258  if (receive_frame_err != 0) {
1259  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::GetAVFrame (receive frame: frame not ready yet from decoder [\" + av_err2string(receive_frame_err) + \"])", "receive_frame_err", receive_frame_err, "send_packet_pts", send_packet_pts);
1260 
1261  if (receive_frame_err == AVERROR_EOF) {
1263  "FFmpegReader::GetAVFrame (receive frame: AVERROR_EOF: EOF detected from decoder, flushing buffers)", "send_packet_pts", send_packet_pts);
1264  avcodec_flush_buffers(pCodecCtx);
1265  packet_status.video_eof = true;
1266  }
1267  if (receive_frame_err == AVERROR(EINVAL)) {
1269  "FFmpegReader::GetAVFrame (receive frame: AVERROR(EINVAL): invalid frame received, flushing buffers)", "send_packet_pts", send_packet_pts);
1270  avcodec_flush_buffers(pCodecCtx);
1271  }
1272  if (receive_frame_err == AVERROR(EAGAIN)) {
1274  "FFmpegReader::GetAVFrame (receive frame: AVERROR(EAGAIN): output is not available in this state - user must try to send new input)", "send_packet_pts", send_packet_pts);
1275  }
1276  if (receive_frame_err == AVERROR_INPUT_CHANGED) {
1278  "FFmpegReader::GetAVFrame (receive frame: AVERROR_INPUT_CHANGED: current decoded frame has changed parameters with respect to first decoded frame)", "send_packet_pts", send_packet_pts);
1279  }
1280 
1281  // Break out of decoding loop
1282  // Nothing ready for decoding yet
1283  break;
1284  }
1285 
1286 #if USE_HW_ACCEL
1287  if (hw_de_on && hw_de_supported) {
1288  int err;
1289  if (next_frame2->format == hw_de_av_pix_fmt) {
1290  next_frame->format = AV_PIX_FMT_YUV420P;
1291  if ((err = av_hwframe_transfer_data(next_frame,next_frame2,0)) < 0) {
1292  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::GetAVFrame (Failed to transfer data to output frame)", "hw_de_on", hw_de_on);
1293  }
1294  if ((err = av_frame_copy_props(next_frame,next_frame2)) < 0) {
1295  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::GetAVFrame (Failed to copy props to output frame)", "hw_de_on", hw_de_on);
1296  }
1297  }
1298  }
1299  else
1300 #endif // USE_HW_ACCEL
1301  { // No hardware acceleration used -> no copy from GPU memory needed
1302  next_frame = next_frame2;
1303  }
1304 
1305  // TODO also handle possible further frames
1306  // Use only the first frame like avcodec_decode_video2
1307  frameFinished = 1;
1308  packet_status.video_decoded++;
1309 
1310  av_image_alloc(pFrame->data, pFrame->linesize, info.width, info.height, (AVPixelFormat)(pStream->codecpar->format), 1);
1311  av_image_copy(pFrame->data, pFrame->linesize, (const uint8_t**)next_frame->data, next_frame->linesize,
1312  (AVPixelFormat)(pStream->codecpar->format), info.width, info.height);
1313 
1314  // Get display PTS from video frame, often different than packet->pts.
1315  // Sending packets to the decoder (i.e. packet->pts) is async,
1316  // and retrieving packets from the decoder (frame->pts) is async. In most decoders
1317  // sending and retrieving are separated by multiple calls to this method.
1318  if (next_frame->pts != AV_NOPTS_VALUE) {
1319  // This is the current decoded frame (and should be the pts used) for
1320  // processing this data
1321  video_pts = next_frame->pts;
1322  } else if (next_frame->pkt_dts != AV_NOPTS_VALUE) {
1323  // Some videos only set this timestamp (fallback)
1324  video_pts = next_frame->pkt_dts;
1325  }
1326 
1328  "FFmpegReader::GetAVFrame (Successful frame received)", "video_pts", video_pts, "send_packet_pts", send_packet_pts);
1329 
1330  // break out of loop after each successful image returned
1331  break;
1332  }
1333 #if USE_HW_ACCEL
1334  if (hw_de_on && hw_de_supported) {
1335  AV_FREE_FRAME(&next_frame2);
1336  }
1337  #endif // USE_HW_ACCEL
1338 #else
1339  avcodec_decode_video2(pCodecCtx, next_frame, &frameFinished, packet);
1340 
1341  // always allocate pFrame (because we do that in the ffmpeg >= 3.2 as well); it will always be freed later
1342  pFrame = AV_ALLOCATE_FRAME();
1343 
1344  // is frame finished
1345  if (frameFinished) {
1346  // AVFrames are clobbered on the each call to avcodec_decode_video, so we
1347  // must make a copy of the image data before this method is called again.
1348  avpicture_alloc((AVPicture *) pFrame, pCodecCtx->pix_fmt, info.width, info.height);
1349  av_picture_copy((AVPicture *) pFrame, (AVPicture *) next_frame, pCodecCtx->pix_fmt, info.width,
1350  info.height);
1351  }
1352 #endif // IS_FFMPEG_3_2
1353 
1354  // deallocate the frame
1355  AV_FREE_FRAME(&next_frame);
1356 
1357  // Did we get a video frame?
1358  return frameFinished;
1359 }
1360 
1361 // Check the current seek position and determine if we need to seek again
1362 bool FFmpegReader::CheckSeek(bool is_video) {
1363  // Are we seeking for a specific frame?
1364  if (is_seeking) {
1365  // Determine if both an audio and video packet have been decoded since the seek happened.
1366  // If not, allow the ReadStream method to keep looping
1367  if ((is_video_seek && !seek_video_frame_found) || (!is_video_seek && !seek_audio_frame_found))
1368  return false;
1369 
1370  // Check for both streams
1371  if ((info.has_video && !seek_video_frame_found) || (info.has_audio && !seek_audio_frame_found))
1372  return false;
1373 
1374  // Determine max seeked frame
1375  int64_t max_seeked_frame = std::max(seek_audio_frame_found, seek_video_frame_found);
1376 
1377  // determine if we are "before" the requested frame
1378  if (max_seeked_frame >= seeking_frame) {
1379  // SEEKED TOO FAR
1380  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::CheckSeek (Too far, seek again)",
1381  "is_video_seek", is_video_seek,
1382  "max_seeked_frame", max_seeked_frame,
1383  "seeking_frame", seeking_frame,
1384  "seeking_pts", seeking_pts,
1385  "seek_video_frame_found", seek_video_frame_found,
1386  "seek_audio_frame_found", seek_audio_frame_found);
1387 
1388  // Seek again... to the nearest Keyframe
1389  Seek(seeking_frame - (10 * seek_count * seek_count));
1390  } else {
1391  // SEEK WORKED
1392  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::CheckSeek (Successful)",
1393  "is_video_seek", is_video_seek,
1394  "packet->pts", GetPacketPTS(),
1395  "seeking_pts", seeking_pts,
1396  "seeking_frame", seeking_frame,
1397  "seek_video_frame_found", seek_video_frame_found,
1398  "seek_audio_frame_found", seek_audio_frame_found);
1399 
1400  // Seek worked, and we are "before" the requested frame
1401  is_seeking = false;
1402  seeking_frame = 0;
1403  seeking_pts = -1;
1404  }
1405  }
1406 
1407  // return the pts to seek to (if any)
1408  return is_seeking;
1409 }
1410 
1411 // Process a video packet
1412 void FFmpegReader::ProcessVideoPacket(int64_t requested_frame) {
1413  // Get the AVFrame from the current packet
1414  // This sets the video_pts to the correct timestamp
1415  int frame_finished = GetAVFrame();
1416 
1417  // Check if the AVFrame is finished and set it
1418  if (!frame_finished) {
1419  // No AVFrame decoded yet, bail out
1420  if (pFrame) {
1421  RemoveAVFrame(pFrame);
1422  }
1423  return;
1424  }
1425 
1426  // Calculate current frame #
1427  int64_t current_frame = ConvertVideoPTStoFrame(video_pts);
1428 
1429  // Track 1st video packet after a successful seek
1430  if (!seek_video_frame_found && is_seeking)
1431  seek_video_frame_found = current_frame;
1432 
1433  // Create or get the existing frame object. Requested frame needs to be created
1434  // in working_cache at least once. Seek can clear the working_cache, so we must
1435  // add the requested frame back to the working_cache here. If it already exists,
1436  // it will be moved to the top of the working_cache.
1437  working_cache.Add(CreateFrame(requested_frame));
1438 
1439  // Debug output
1440  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ProcessVideoPacket (Before)", "requested_frame", requested_frame, "current_frame", current_frame);
1441 
1442  // Init some things local (for OpenMP)
1443  PixelFormat pix_fmt = AV_GET_CODEC_PIXEL_FORMAT(pStream, pCodecCtx);
1444  int height = info.height;
1445  int width = info.width;
1446  int64_t video_length = info.video_length;
1447 
1448  // Create variables for a RGB Frame (since most videos are not in RGB, we must convert it)
1449  AVFrame *pFrameRGB = nullptr;
1450  uint8_t *buffer = nullptr;
1451 
1452  // Allocate an AVFrame structure
1453  pFrameRGB = AV_ALLOCATE_FRAME();
1454  if (pFrameRGB == nullptr)
1455  throw OutOfMemory("Failed to allocate frame buffer", path);
1456 
1457  // Determine the max size of this source image (based on the timeline's size, the scaling mode,
1458  // and the scaling keyframes). This is a performance improvement, to keep the images as small as possible,
1459  // without losing quality. NOTE: We cannot go smaller than the timeline itself, or the add_layer timeline
1460  // method will scale it back to timeline size before scaling it smaller again. This needs to be fixed in
1461  // the future.
1462  int max_width = info.width;
1463  int max_height = info.height;
1464 
1465  Clip *parent = static_cast<Clip *>(ParentClip());
1466  if (parent) {
1467  if (parent->ParentTimeline()) {
1468  // Set max width/height based on parent clip's timeline (if attached to a timeline)
1469  max_width = parent->ParentTimeline()->preview_width;
1470  max_height = parent->ParentTimeline()->preview_height;
1471  }
1472  if (parent->scale == SCALE_FIT || parent->scale == SCALE_STRETCH) {
1473  // Best fit or Stretch scaling (based on max timeline size * scaling keyframes)
1474  float max_scale_x = parent->scale_x.GetMaxPoint().co.Y;
1475  float max_scale_y = parent->scale_y.GetMaxPoint().co.Y;
1476  max_width = std::max(float(max_width), max_width * max_scale_x);
1477  max_height = std::max(float(max_height), max_height * max_scale_y);
1478 
1479  } else if (parent->scale == SCALE_CROP) {
1480  // Cropping scale mode (based on max timeline size * cropped size * scaling keyframes)
1481  float max_scale_x = parent->scale_x.GetMaxPoint().co.Y;
1482  float max_scale_y = parent->scale_y.GetMaxPoint().co.Y;
1483  QSize width_size(max_width * max_scale_x,
1484  round(max_width / (float(info.width) / float(info.height))));
1485  QSize height_size(round(max_height / (float(info.height) / float(info.width))),
1486  max_height * max_scale_y);
1487  // respect aspect ratio
1488  if (width_size.width() >= max_width && width_size.height() >= max_height) {
1489  max_width = std::max(max_width, width_size.width());
1490  max_height = std::max(max_height, width_size.height());
1491  } else {
1492  max_width = std::max(max_width, height_size.width());
1493  max_height = std::max(max_height, height_size.height());
1494  }
1495 
1496  } else {
1497  // Scale video to equivalent unscaled size
1498  // Since the preview window can change sizes, we want to always
1499  // scale against the ratio of original video size to timeline size
1500  float preview_ratio = 1.0;
1501  if (parent->ParentTimeline()) {
1502  Timeline *t = (Timeline *) parent->ParentTimeline();
1503  preview_ratio = t->preview_width / float(t->info.width);
1504  }
1505  float max_scale_x = parent->scale_x.GetMaxPoint().co.Y;
1506  float max_scale_y = parent->scale_y.GetMaxPoint().co.Y;
1507  max_width = info.width * max_scale_x * preview_ratio;
1508  max_height = info.height * max_scale_y * preview_ratio;
1509  }
1510  }
1511 
1512  // Determine if image needs to be scaled (for performance reasons)
1513  int original_height = height;
1514  if (max_width != 0 && max_height != 0 && max_width < width && max_height < height) {
1515  // Override width and height (but maintain aspect ratio)
1516  float ratio = float(width) / float(height);
1517  int possible_width = round(max_height * ratio);
1518  int possible_height = round(max_width / ratio);
1519 
1520  if (possible_width <= max_width) {
1521  // use calculated width, and max_height
1522  width = possible_width;
1523  height = max_height;
1524  } else {
1525  // use max_width, and calculated height
1526  width = max_width;
1527  height = possible_height;
1528  }
1529  }
1530 
1531  // Determine required buffer size and allocate buffer
1532  const int bytes_per_pixel = 4;
1533  int buffer_size = (width * height * bytes_per_pixel) + 128;
1534  buffer = new unsigned char[buffer_size]();
1535 
1536  // Copy picture data from one AVFrame (or AVPicture) to another one.
1537  AV_COPY_PICTURE_DATA(pFrameRGB, buffer, PIX_FMT_RGBA, width, height);
1538 
1539  int scale_mode = SWS_FAST_BILINEAR;
1540  if (openshot::Settings::Instance()->HIGH_QUALITY_SCALING) {
1541  scale_mode = SWS_BICUBIC;
1542  }
1543  SwsContext *img_convert_ctx = sws_getContext(info.width, info.height, AV_GET_CODEC_PIXEL_FORMAT(pStream, pCodecCtx), width,
1544  height, PIX_FMT_RGBA, scale_mode, NULL, NULL, NULL);
1545 
1546  // Resize / Convert to RGB
1547  sws_scale(img_convert_ctx, pFrame->data, pFrame->linesize, 0,
1548  original_height, pFrameRGB->data, pFrameRGB->linesize);
1549 
1550  // Create or get the existing frame object
1551  std::shared_ptr<Frame> f = CreateFrame(current_frame);
1552 
1553  // Add Image data to frame
1554  if (!ffmpeg_has_alpha(AV_GET_CODEC_PIXEL_FORMAT(pStream, pCodecCtx))) {
1555  // Add image with no alpha channel, Speed optimization
1556  f->AddImage(width, height, bytes_per_pixel, QImage::Format_RGBA8888_Premultiplied, buffer);
1557  } else {
1558  // Add image with alpha channel (this will be converted to premultipled when needed, but is slower)
1559  f->AddImage(width, height, bytes_per_pixel, QImage::Format_RGBA8888, buffer);
1560  }
1561 
1562  // Update working cache
1563  working_cache.Add(f);
1564 
1565  // Keep track of last last_video_frame
1566  last_video_frame = f;
1567 
1568  // Free the RGB image
1569  AV_FREE_FRAME(&pFrameRGB);
1570 
1571  // Remove frame and packet
1572  RemoveAVFrame(pFrame);
1573  sws_freeContext(img_convert_ctx);
1574 
1575  // Get video PTS in seconds
1576  video_pts_seconds = (double(video_pts) * info.video_timebase.ToDouble()) + pts_offset_seconds;
1577 
1578  // Debug output
1579  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ProcessVideoPacket (After)", "requested_frame", requested_frame, "current_frame", current_frame, "f->number", f->number, "video_pts_seconds", video_pts_seconds);
1580 }
1581 
1582 // Process an audio packet
1583 void FFmpegReader::ProcessAudioPacket(int64_t requested_frame) {
1584  AudioLocation location;
1585  // Calculate location of current audio packet
1586  if (packet && packet->pts != AV_NOPTS_VALUE) {
1587  // Determine related video frame and starting sample # from audio PTS
1588  location = GetAudioPTSLocation(packet->pts);
1589 
1590  // Track 1st audio packet after a successful seek
1591  if (!seek_audio_frame_found && is_seeking)
1592  seek_audio_frame_found = location.frame;
1593  }
1594 
1595  // Create or get the existing frame object. Requested frame needs to be created
1596  // in working_cache at least once. Seek can clear the working_cache, so we must
1597  // add the requested frame back to the working_cache here. If it already exists,
1598  // it will be moved to the top of the working_cache.
1599  working_cache.Add(CreateFrame(requested_frame));
1600 
1601  // Debug output
1602  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ProcessAudioPacket (Before)",
1603  "requested_frame", requested_frame,
1604  "target_frame", location.frame,
1605  "starting_sample", location.sample_start);
1606 
1607  // Init an AVFrame to hold the decoded audio samples
1608  int frame_finished = 0;
1609  AVFrame *audio_frame = AV_ALLOCATE_FRAME();
1610  AV_RESET_FRAME(audio_frame);
1611 
1612  int packet_samples = 0;
1613  int data_size = 0;
1614 
1615 #if IS_FFMPEG_3_2
1616  int send_packet_err = avcodec_send_packet(aCodecCtx, packet);
1617  if (send_packet_err < 0 && send_packet_err != AVERROR_EOF) {
1618  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ProcessAudioPacket (Packet not sent)");
1619  }
1620  else {
1621  int receive_frame_err = avcodec_receive_frame(aCodecCtx, audio_frame);
1622  if (receive_frame_err >= 0) {
1623  frame_finished = 1;
1624  }
1625  if (receive_frame_err == AVERROR_EOF) {
1626  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ProcessAudioPacket (EOF detected from decoder)");
1627  packet_status.audio_eof = true;
1628  }
1629  if (receive_frame_err == AVERROR(EINVAL) || receive_frame_err == AVERROR_EOF) {
1630  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ProcessAudioPacket (invalid frame received or EOF from decoder)");
1631  avcodec_flush_buffers(aCodecCtx);
1632  }
1633  if (receive_frame_err != 0) {
1634  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ProcessAudioPacket (frame not ready yet from decoder)");
1635  }
1636  }
1637 #else
1638  int used = avcodec_decode_audio4(aCodecCtx, audio_frame, &frame_finished, packet);
1639 #endif
1640 
1641  if (frame_finished) {
1642  packet_status.audio_decoded++;
1643 
1644  // This can be different than the current packet, so we need to look
1645  // at the current AVFrame from the audio decoder. This timestamp should
1646  // be used for the remainder of this function
1647  audio_pts = audio_frame->pts;
1648 
1649  // Determine related video frame and starting sample # from audio PTS
1650  location = GetAudioPTSLocation(audio_pts);
1651 
1652  // determine how many samples were decoded
1653  int plane_size = -1;
1654 #if HAVE_CH_LAYOUT
1655  int nb_channels = AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->ch_layout.nb_channels;
1656 #else
1657  int nb_channels = AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->channels;
1658 #endif
1659  data_size = av_samples_get_buffer_size(&plane_size, nb_channels,
1660  audio_frame->nb_samples, (AVSampleFormat) (AV_GET_SAMPLE_FORMAT(aStream, aCodecCtx)), 1);
1661 
1662  // Calculate total number of samples
1663  packet_samples = audio_frame->nb_samples * nb_channels;
1664  } else {
1665  if (audio_frame) {
1666  // Free audio frame
1667  AV_FREE_FRAME(&audio_frame);
1668  }
1669  }
1670 
1671  // Estimate the # of samples and the end of this packet's location (to prevent GAPS for the next timestamp)
1672  int pts_remaining_samples = packet_samples / info.channels; // Adjust for zero based array
1673 
1674  // Bail if no samples found
1675  if (pts_remaining_samples == 0) {
1676  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ProcessAudioPacket (No samples, bailing)",
1677  "packet_samples", packet_samples,
1678  "info.channels", info.channels,
1679  "pts_remaining_samples", pts_remaining_samples);
1680  return;
1681  }
1682 
1683  while (pts_remaining_samples) {
1684  // Get Samples per frame (for this frame number)
1685  int samples_per_frame = Frame::GetSamplesPerFrame(previous_packet_location.frame, info.fps, info.sample_rate, info.channels);
1686 
1687  // Calculate # of samples to add to this frame
1688  int samples = samples_per_frame - previous_packet_location.sample_start;
1689  if (samples > pts_remaining_samples)
1690  samples = pts_remaining_samples;
1691 
1692  // Decrement remaining samples
1693  pts_remaining_samples -= samples;
1694 
1695  if (pts_remaining_samples > 0) {
1696  // next frame
1697  previous_packet_location.frame++;
1698  previous_packet_location.sample_start = 0;
1699  } else {
1700  // Increment sample start
1701  previous_packet_location.sample_start += samples;
1702  }
1703  }
1704 
1705  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ProcessAudioPacket (ReSample)",
1706  "packet_samples", packet_samples,
1707  "info.channels", info.channels,
1708  "info.sample_rate", info.sample_rate,
1709  "aCodecCtx->sample_fmt", AV_GET_SAMPLE_FORMAT(aStream, aCodecCtx));
1710 
1711  // Create output frame
1712  AVFrame *audio_converted = AV_ALLOCATE_FRAME();
1713  AV_RESET_FRAME(audio_converted);
1714  audio_converted->nb_samples = audio_frame->nb_samples;
1715  av_samples_alloc(audio_converted->data, audio_converted->linesize, info.channels, audio_frame->nb_samples, AV_SAMPLE_FMT_FLTP, 0);
1716 
1717  SWRCONTEXT *avr = NULL;
1718 
1719  // setup resample context
1720  avr = SWR_ALLOC();
1721 #if HAVE_CH_LAYOUT
1722  av_opt_set_chlayout(avr, "in_chlayout", &AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->ch_layout, 0);
1723  av_opt_set_chlayout(avr, "out_chlayout", &AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->ch_layout, 0);
1724 #else
1725  av_opt_set_int(avr, "in_channel_layout", AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->channel_layout, 0);
1726  av_opt_set_int(avr, "out_channel_layout", AV_GET_CODEC_ATTRIBUTES(aStream, aCodecCtx)->channel_layout, 0);
1727  av_opt_set_int(avr, "in_channels", info.channels, 0);
1728  av_opt_set_int(avr, "out_channels", info.channels, 0);
1729 #endif
1730  av_opt_set_int(avr, "in_sample_fmt", AV_GET_SAMPLE_FORMAT(aStream, aCodecCtx), 0);
1731  av_opt_set_int(avr, "out_sample_fmt", AV_SAMPLE_FMT_FLTP, 0);
1732  av_opt_set_int(avr, "in_sample_rate", info.sample_rate, 0);
1733  av_opt_set_int(avr, "out_sample_rate", info.sample_rate, 0);
1734  SWR_INIT(avr);
1735 
1736  // Convert audio samples
1737  int nb_samples = SWR_CONVERT(avr, // audio resample context
1738  audio_converted->data, // output data pointers
1739  audio_converted->linesize[0], // output plane size, in bytes. (0 if unknown)
1740  audio_converted->nb_samples, // maximum number of samples that the output buffer can hold
1741  audio_frame->data, // input data pointers
1742  audio_frame->linesize[0], // input plane size, in bytes (0 if unknown)
1743  audio_frame->nb_samples); // number of input samples to convert
1744 
1745  // Deallocate resample buffer
1746  SWR_CLOSE(avr);
1747  SWR_FREE(&avr);
1748  avr = NULL;
1749 
1750  int64_t starting_frame_number = -1;
1751  for (int channel_filter = 0; channel_filter < info.channels; channel_filter++) {
1752  // Array of floats (to hold samples for each channel)
1753  starting_frame_number = location.frame;
1754  int channel_buffer_size = nb_samples;
1755  auto *channel_buffer = (float *) (audio_converted->data[channel_filter]);
1756 
1757  // Loop through samples, and add them to the correct frames
1758  int start = location.sample_start;
1759  int remaining_samples = channel_buffer_size;
1760  while (remaining_samples > 0) {
1761  // Get Samples per frame (for this frame number)
1762  int samples_per_frame = Frame::GetSamplesPerFrame(starting_frame_number, info.fps, info.sample_rate, info.channels);
1763 
1764  // Calculate # of samples to add to this frame
1765  int samples = std::fmin(samples_per_frame - start, remaining_samples);
1766 
1767  // Create or get the existing frame object
1768  std::shared_ptr<Frame> f = CreateFrame(starting_frame_number);
1769 
1770  // Add samples for current channel to the frame.
1771  f->AddAudio(true, channel_filter, start, channel_buffer, samples, 1.0f);
1772 
1773  // Debug output
1774  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ProcessAudioPacket (f->AddAudio)",
1775  "frame", starting_frame_number,
1776  "start", start,
1777  "samples", samples,
1778  "channel", channel_filter,
1779  "samples_per_frame", samples_per_frame);
1780 
1781  // Add or update cache
1782  working_cache.Add(f);
1783 
1784  // Decrement remaining samples
1785  remaining_samples -= samples;
1786 
1787  // Increment buffer (to next set of samples)
1788  if (remaining_samples > 0)
1789  channel_buffer += samples;
1790 
1791  // Increment frame number
1792  starting_frame_number++;
1793 
1794  // Reset starting sample #
1795  start = 0;
1796  }
1797  }
1798 
1799  // Free AVFrames
1800  av_free(audio_converted->data[0]);
1801  AV_FREE_FRAME(&audio_converted);
1802  AV_FREE_FRAME(&audio_frame);
1803 
1804  // Get audio PTS in seconds
1805  audio_pts_seconds = (double(audio_pts) * info.audio_timebase.ToDouble()) + pts_offset_seconds;
1806 
1807  // Debug output
1808  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::ProcessAudioPacket (After)",
1809  "requested_frame", requested_frame,
1810  "starting_frame", location.frame,
1811  "end_frame", starting_frame_number - 1,
1812  "audio_pts_seconds", audio_pts_seconds);
1813 
1814 }
1815 
1816 
1817 // Seek to a specific frame. This is not always frame accurate, it's more of an estimation on many codecs.
1818 void FFmpegReader::Seek(int64_t requested_frame) {
1819  // Adjust for a requested frame that is too small or too large
1820  if (requested_frame < 1)
1821  requested_frame = 1;
1822  if (requested_frame > info.video_length)
1823  requested_frame = info.video_length;
1824  if (requested_frame > largest_frame_processed && packet_status.end_of_file) {
1825  // Not possible to search past largest_frame once EOF is reached (no more packets)
1826  return;
1827  }
1828 
1829  // Debug output
1830  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::Seek",
1831  "requested_frame", requested_frame,
1832  "seek_count", seek_count,
1833  "last_frame", last_frame);
1834 
1835  // Clear working cache (since we are seeking to another location in the file)
1836  working_cache.Clear();
1837 
1838  // Reset the last frame variable
1839  video_pts = 0.0;
1840  video_pts_seconds = NO_PTS_OFFSET;
1841  audio_pts = 0.0;
1842  audio_pts_seconds = NO_PTS_OFFSET;
1843  hold_packet = false;
1844  last_frame = 0;
1845  current_video_frame = 0;
1846  largest_frame_processed = 0;
1847  bool has_audio_override = info.has_audio;
1848  bool has_video_override = info.has_video;
1849 
1850  // Init end-of-file detection variables
1851  packet_status.reset(false);
1852 
1853  // Increment seek count
1854  seek_count++;
1855 
1856  // If seeking near frame 1, we need to close and re-open the file (this is more reliable than seeking)
1857  int buffer_amount = std::max(max_concurrent_frames, 8);
1858  if (requested_frame - buffer_amount < 20) {
1859  // prevent Open() from seeking again
1860  is_seeking = true;
1861 
1862  // Close and re-open file (basically seeking to frame 1)
1863  Close();
1864  Open();
1865 
1866  // Update overrides (since closing and re-opening might update these)
1867  info.has_audio = has_audio_override;
1868  info.has_video = has_video_override;
1869 
1870  // Not actually seeking, so clear these flags
1871  is_seeking = false;
1872  if (seek_count == 1) {
1873  // Don't redefine this on multiple seek attempts for a specific frame
1874  seeking_frame = 1;
1875  seeking_pts = ConvertFrameToVideoPTS(1);
1876  }
1877  seek_audio_frame_found = 0; // used to detect which frames to throw away after a seek
1878  seek_video_frame_found = 0; // used to detect which frames to throw away after a seek
1879 
1880  } else {
1881  // Seek to nearest key-frame (aka, i-frame)
1882  bool seek_worked = false;
1883  int64_t seek_target = 0;
1884 
1885  // Seek video stream (if any), except album arts
1886  if (!seek_worked && info.has_video && !HasAlbumArt()) {
1887  seek_target = ConvertFrameToVideoPTS(requested_frame - buffer_amount);
1888  if (av_seek_frame(pFormatCtx, info.video_stream_index, seek_target, AVSEEK_FLAG_BACKWARD) < 0) {
1889  fprintf(stderr, "%s: error while seeking video stream\n", pFormatCtx->AV_FILENAME);
1890  } else {
1891  // VIDEO SEEK
1892  is_video_seek = true;
1893  seek_worked = true;
1894  }
1895  }
1896 
1897  // Seek audio stream (if not already seeked... and if an audio stream is found)
1898  if (!seek_worked && info.has_audio) {
1899  seek_target = ConvertFrameToAudioPTS(requested_frame - buffer_amount);
1900  if (av_seek_frame(pFormatCtx, info.audio_stream_index, seek_target, AVSEEK_FLAG_BACKWARD) < 0) {
1901  fprintf(stderr, "%s: error while seeking audio stream\n", pFormatCtx->AV_FILENAME);
1902  } else {
1903  // AUDIO SEEK
1904  is_video_seek = false;
1905  seek_worked = true;
1906  }
1907  }
1908 
1909  // Was the seek successful?
1910  if (seek_worked) {
1911  // Flush audio buffer
1912  if (info.has_audio)
1913  avcodec_flush_buffers(aCodecCtx);
1914 
1915  // Flush video buffer
1916  if (info.has_video)
1917  avcodec_flush_buffers(pCodecCtx);
1918 
1919  // Reset previous audio location to zero
1920  previous_packet_location.frame = -1;
1921  previous_packet_location.sample_start = 0;
1922 
1923  // init seek flags
1924  is_seeking = true;
1925  if (seek_count == 1) {
1926  // Don't redefine this on multiple seek attempts for a specific frame
1927  seeking_pts = seek_target;
1928  seeking_frame = requested_frame;
1929  }
1930  seek_audio_frame_found = 0; // used to detect which frames to throw away after a seek
1931  seek_video_frame_found = 0; // used to detect which frames to throw away after a seek
1932 
1933  } else {
1934  // seek failed
1935  seeking_pts = 0;
1936  seeking_frame = 0;
1937 
1938  // prevent Open() from seeking again
1939  is_seeking = true;
1940 
1941  // Close and re-open file (basically seeking to frame 1)
1942  Close();
1943  Open();
1944 
1945  // Not actually seeking, so clear these flags
1946  is_seeking = false;
1947 
1948  // disable seeking for this reader (since it failed)
1949  enable_seek = false;
1950 
1951  // Update overrides (since closing and re-opening might update these)
1952  info.has_audio = has_audio_override;
1953  info.has_video = has_video_override;
1954  }
1955  }
1956 }
1957 
1958 // Get the PTS for the current video packet
1959 int64_t FFmpegReader::GetPacketPTS() {
1960  if (packet) {
1961  int64_t current_pts = packet->pts;
1962  if (current_pts == AV_NOPTS_VALUE && packet->dts != AV_NOPTS_VALUE)
1963  current_pts = packet->dts;
1964 
1965  // Return adjusted PTS
1966  return current_pts;
1967  } else {
1968  // No packet, return NO PTS
1969  return AV_NOPTS_VALUE;
1970  }
1971 }
1972 
1973 // Update PTS Offset (if any)
1974 void FFmpegReader::UpdatePTSOffset() {
1975  if (pts_offset_seconds != NO_PTS_OFFSET) {
1976  // Skip this method if we have already set PTS offset
1977  return;
1978  }
1979  pts_offset_seconds = 0.0;
1980  double video_pts_offset_seconds = 0.0;
1981  double audio_pts_offset_seconds = 0.0;
1982 
1983  bool has_video_pts = false;
1984  if (!info.has_video) {
1985  // Mark as checked
1986  has_video_pts = true;
1987  }
1988  bool has_audio_pts = false;
1989  if (!info.has_audio) {
1990  // Mark as checked
1991  has_audio_pts = true;
1992  }
1993 
1994  // Loop through the stream (until a packet from all streams is found)
1995  while (!has_video_pts || !has_audio_pts) {
1996  // Get the next packet (if any)
1997  if (GetNextPacket() < 0)
1998  // Break loop when no more packets found
1999  break;
2000 
2001  // Get PTS of this packet
2002  int64_t pts = GetPacketPTS();
2003 
2004  // Video packet
2005  if (!has_video_pts && packet->stream_index == videoStream) {
2006  // Get the video packet start time (in seconds)
2007  video_pts_offset_seconds = 0.0 - (video_pts * info.video_timebase.ToDouble());
2008 
2009  // Is timestamp close to zero (within X seconds)
2010  // Ignore wildly invalid timestamps (i.e. -234923423423)
2011  if (std::abs(video_pts_offset_seconds) <= 10.0) {
2012  has_video_pts = true;
2013  }
2014  }
2015  else if (!has_audio_pts && packet->stream_index == audioStream) {
2016  // Get the audio packet start time (in seconds)
2017  audio_pts_offset_seconds = 0.0 - (pts * info.audio_timebase.ToDouble());
2018 
2019  // Is timestamp close to zero (within X seconds)
2020  // Ignore wildly invalid timestamps (i.e. -234923423423)
2021  if (std::abs(audio_pts_offset_seconds) <= 10.0) {
2022  has_audio_pts = true;
2023  }
2024  }
2025  }
2026 
2027  // Do we have all valid timestamps to determine PTS offset?
2028  if (has_video_pts && has_audio_pts) {
2029  // Set PTS Offset to the smallest offset
2030  // [ video timestamp ]
2031  // [ audio timestamp ]
2032  //
2033  // ** SHIFT TIMESTAMPS TO ZERO **
2034  //
2035  //[ video timestamp ]
2036  // [ audio timestamp ]
2037  //
2038  // Since all offsets are negative at this point, we want the max value, which
2039  // represents the closest to zero
2040  pts_offset_seconds = std::max(video_pts_offset_seconds, audio_pts_offset_seconds);
2041  }
2042 }
2043 
2044 // Convert PTS into Frame Number
2045 int64_t FFmpegReader::ConvertVideoPTStoFrame(int64_t pts) {
2046  // Apply PTS offset
2047  int64_t previous_video_frame = current_video_frame;
2048 
2049  // Get the video packet start time (in seconds)
2050  double video_seconds = (double(pts) * info.video_timebase.ToDouble()) + pts_offset_seconds;
2051 
2052  // Divide by the video timebase, to get the video frame number (frame # is decimal at this point)
2053  int64_t frame = round(video_seconds * info.fps.ToDouble()) + 1;
2054 
2055  // Keep track of the expected video frame #
2056  if (current_video_frame == 0)
2057  current_video_frame = frame;
2058  else {
2059 
2060  // Sometimes frames are duplicated due to identical (or similar) timestamps
2061  if (frame == previous_video_frame) {
2062  // return -1 frame number
2063  frame = -1;
2064  } else {
2065  // Increment expected frame
2066  current_video_frame++;
2067  }
2068  }
2069 
2070  // Return frame #
2071  return frame;
2072 }
2073 
2074 // Convert Frame Number into Video PTS
2075 int64_t FFmpegReader::ConvertFrameToVideoPTS(int64_t frame_number) {
2076  // Get timestamp of this frame (in seconds)
2077  double seconds = (double(frame_number - 1) / info.fps.ToDouble()) + pts_offset_seconds;
2078 
2079  // Calculate the # of video packets in this timestamp
2080  int64_t video_pts = round(seconds / info.video_timebase.ToDouble());
2081 
2082  // Apply PTS offset (opposite)
2083  return video_pts;
2084 }
2085 
2086 // Convert Frame Number into Video PTS
2087 int64_t FFmpegReader::ConvertFrameToAudioPTS(int64_t frame_number) {
2088  // Get timestamp of this frame (in seconds)
2089  double seconds = (double(frame_number - 1) / info.fps.ToDouble()) + pts_offset_seconds;
2090 
2091  // Calculate the # of audio packets in this timestamp
2092  int64_t audio_pts = round(seconds / info.audio_timebase.ToDouble());
2093 
2094  // Apply PTS offset (opposite)
2095  return audio_pts;
2096 }
2097 
2098 // Calculate Starting video frame and sample # for an audio PTS
2099 AudioLocation FFmpegReader::GetAudioPTSLocation(int64_t pts) {
2100  // Get the audio packet start time (in seconds)
2101  double audio_seconds = (double(pts) * info.audio_timebase.ToDouble()) + pts_offset_seconds;
2102 
2103  // Divide by the video timebase, to get the video frame number (frame # is decimal at this point)
2104  double frame = (audio_seconds * info.fps.ToDouble()) + 1;
2105 
2106  // Frame # as a whole number (no more decimals)
2107  int64_t whole_frame = int64_t(frame);
2108 
2109  // Remove the whole number, and only get the decimal of the frame
2110  double sample_start_percentage = frame - double(whole_frame);
2111 
2112  // Get Samples per frame
2113  int samples_per_frame = Frame::GetSamplesPerFrame(whole_frame, info.fps, info.sample_rate, info.channels);
2114 
2115  // Calculate the sample # to start on
2116  int sample_start = round(double(samples_per_frame) * sample_start_percentage);
2117 
2118  // Protect against broken (i.e. negative) timestamps
2119  if (whole_frame < 1)
2120  whole_frame = 1;
2121  if (sample_start < 0)
2122  sample_start = 0;
2123 
2124  // Prepare final audio packet location
2125  AudioLocation location = {whole_frame, sample_start};
2126 
2127  // Compare to previous audio packet (and fix small gaps due to varying PTS timestamps)
2128  if (previous_packet_location.frame != -1) {
2129  if (location.is_near(previous_packet_location, samples_per_frame, samples_per_frame)) {
2130  int64_t orig_frame = location.frame;
2131  int orig_start = location.sample_start;
2132 
2133  // Update sample start, to prevent gaps in audio
2134  location.sample_start = previous_packet_location.sample_start;
2135  location.frame = previous_packet_location.frame;
2136 
2137  // Debug output
2138  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::GetAudioPTSLocation (Audio Gap Detected)", "Source Frame", orig_frame, "Source Audio Sample", orig_start, "Target Frame", location.frame, "Target Audio Sample", location.sample_start, "pts", pts);
2139 
2140  } else {
2141  // Debug output
2142  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::GetAudioPTSLocation (Audio Gap Ignored - too big)", "Previous location frame", previous_packet_location.frame, "Target Frame", location.frame, "Target Audio Sample", location.sample_start, "pts", pts);
2143  }
2144  }
2145 
2146  // Set previous location
2147  previous_packet_location = location;
2148 
2149  // Return the associated video frame and starting sample #
2150  return location;
2151 }
2152 
2153 // Create a new Frame (or return an existing one) and add it to the working queue.
2154 std::shared_ptr<Frame> FFmpegReader::CreateFrame(int64_t requested_frame) {
2155  // Check working cache
2156  std::shared_ptr<Frame> output = working_cache.GetFrame(requested_frame);
2157 
2158  if (!output) {
2159  // (re-)Check working cache
2160  output = working_cache.GetFrame(requested_frame);
2161  if(output) return output;
2162 
2163  // Create a new frame on the working cache
2164  output = std::make_shared<Frame>(requested_frame, info.width, info.height, "#000000", Frame::GetSamplesPerFrame(requested_frame, info.fps, info.sample_rate, info.channels), info.channels);
2165  output->SetPixelRatio(info.pixel_ratio.num, info.pixel_ratio.den); // update pixel ratio
2166  output->ChannelsLayout(info.channel_layout); // update audio channel layout from the parent reader
2167  output->SampleRate(info.sample_rate); // update the frame's sample rate of the parent reader
2168 
2169  working_cache.Add(output);
2170 
2171  // Set the largest processed frame (if this is larger)
2172  if (requested_frame > largest_frame_processed)
2173  largest_frame_processed = requested_frame;
2174  }
2175  // Return frame
2176  return output;
2177 }
2178 
2179 // Determine if frame is partial due to seek
2180 bool FFmpegReader::IsPartialFrame(int64_t requested_frame) {
2181 
2182  // Sometimes a seek gets partial frames, and we need to remove them
2183  bool seek_trash = false;
2184  int64_t max_seeked_frame = seek_audio_frame_found; // determine max seeked frame
2185  if (seek_video_frame_found > max_seeked_frame) {
2186  max_seeked_frame = seek_video_frame_found;
2187  }
2188  if ((info.has_audio && seek_audio_frame_found && max_seeked_frame >= requested_frame) ||
2189  (info.has_video && seek_video_frame_found && max_seeked_frame >= requested_frame)) {
2190  seek_trash = true;
2191  }
2192 
2193  return seek_trash;
2194 }
2195 
2196 // Check the working queue, and move finished frames to the finished queue
2197 void FFmpegReader::CheckWorkingFrames(int64_t requested_frame) {
2198 
2199  // Prevent async calls to the following code
2200  const std::lock_guard<std::recursive_mutex> lock(getFrameMutex);
2201 
2202  // Get a list of current working queue frames in the cache (in-progress frames)
2203  std::vector<std::shared_ptr<openshot::Frame>> working_frames = working_cache.GetFrames();
2204  std::vector<std::shared_ptr<openshot::Frame>>::iterator working_itr;
2205 
2206  // Loop through all working queue frames (sorted by frame #)
2207  for(working_itr = working_frames.begin(); working_itr != working_frames.end(); ++working_itr)
2208  {
2209  // Get working frame
2210  std::shared_ptr<Frame> f = *working_itr;
2211 
2212  // Was a frame found? Is frame requested yet?
2213  if (!f || f->number > requested_frame) {
2214  // If not, skip to next one
2215  continue;
2216  }
2217 
2218  // Calculate PTS in seconds (of working frame), and the most recent processed pts value
2219  double frame_pts_seconds = (double(f->number - 1) / info.fps.ToDouble()) + pts_offset_seconds;
2220  double recent_pts_seconds = std::max(video_pts_seconds, audio_pts_seconds);
2221 
2222  // Determine if video and audio are ready (based on timestamps)
2223  bool is_video_ready = false;
2224  bool is_audio_ready = false;
2225  double recent_pts_diff = recent_pts_seconds - frame_pts_seconds;
2226  if ((frame_pts_seconds <= video_pts_seconds)
2227  || (recent_pts_diff > 1.5)
2228  || packet_status.video_eof || packet_status.end_of_file) {
2229  // Video stream is past this frame (so it must be done)
2230  // OR video stream is too far behind, missing, or end-of-file
2231  is_video_ready = true;
2232  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::CheckWorkingFrames (video ready)",
2233  "frame_number", f->number,
2234  "frame_pts_seconds", frame_pts_seconds,
2235  "video_pts_seconds", video_pts_seconds,
2236  "recent_pts_diff", recent_pts_diff);
2237  if (info.has_video && !f->has_image_data) {
2238  // Frame has no image data (copy from previous frame)
2239  // Loop backwards through final frames (looking for the nearest, previous frame image)
2240  for (int64_t previous_frame = requested_frame - 1; previous_frame > 0; previous_frame--) {
2241  std::shared_ptr<Frame> previous_frame_instance = final_cache.GetFrame(previous_frame);
2242  if (previous_frame_instance && previous_frame_instance->has_image_data) {
2243  // Copy image from last decoded frame
2244  f->AddImage(std::make_shared<QImage>(previous_frame_instance->GetImage()->copy()));
2245  break;
2246  }
2247  }
2248 
2249  if (last_video_frame && !f->has_image_data) {
2250  // Copy image from last decoded frame
2251  f->AddImage(std::make_shared<QImage>(last_video_frame->GetImage()->copy()));
2252  } else if (!f->has_image_data) {
2253  f->AddColor("#000000");
2254  }
2255  }
2256  }
2257 
2258  double audio_pts_diff = audio_pts_seconds - frame_pts_seconds;
2259  if ((frame_pts_seconds < audio_pts_seconds && audio_pts_diff > 1.0)
2260  || (recent_pts_diff > 1.5)
2261  || packet_status.audio_eof || packet_status.end_of_file) {
2262  // Audio stream is past this frame (so it must be done)
2263  // OR audio stream is too far behind, missing, or end-of-file
2264  // Adding a bit of margin here, to allow for partial audio packets
2265  is_audio_ready = true;
2266  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::CheckWorkingFrames (audio ready)",
2267  "frame_number", f->number,
2268  "frame_pts_seconds", frame_pts_seconds,
2269  "audio_pts_seconds", audio_pts_seconds,
2270  "audio_pts_diff", audio_pts_diff,
2271  "recent_pts_diff", recent_pts_diff);
2272  }
2273  bool is_seek_trash = IsPartialFrame(f->number);
2274 
2275  // Adjust for available streams
2276  if (!info.has_video) is_video_ready = true;
2277  if (!info.has_audio) is_audio_ready = true;
2278 
2279  // Debug output
2280  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::CheckWorkingFrames",
2281  "frame_number", f->number,
2282  "is_video_ready", is_video_ready,
2283  "is_audio_ready", is_audio_ready,
2284  "video_eof", packet_status.video_eof,
2285  "audio_eof", packet_status.audio_eof,
2286  "end_of_file", packet_status.end_of_file);
2287 
2288  // Check if working frame is final
2289  if ((!packet_status.end_of_file && is_video_ready && is_audio_ready) || packet_status.end_of_file || is_seek_trash) {
2290  // Debug output
2291  ZmqLogger::Instance()->AppendDebugMethod("FFmpegReader::CheckWorkingFrames (mark frame as final)",
2292  "requested_frame", requested_frame,
2293  "f->number", f->number,
2294  "is_seek_trash", is_seek_trash,
2295  "Working Cache Count", working_cache.Count(),
2296  "Final Cache Count", final_cache.Count(),
2297  "end_of_file", packet_status.end_of_file);
2298 
2299  if (!is_seek_trash) {
2300  // Move frame to final cache
2301  final_cache.Add(f);
2302 
2303  // Remove frame from working cache
2304  working_cache.Remove(f->number);
2305 
2306  // Update last frame processed
2307  last_frame = f->number;
2308  } else {
2309  // Seek trash, so delete the frame from the working cache, and never add it to the final cache.
2310  working_cache.Remove(f->number);
2311  }
2312 
2313  }
2314  }
2315 
2316  // Clear vector of frames
2317  working_frames.clear();
2318  working_frames.shrink_to_fit();
2319 }
2320 
2321 // Check for the correct frames per second (FPS) value by scanning the 1st few seconds of video packets.
2322 void FFmpegReader::CheckFPS() {
2323  if (check_fps) {
2324  // Do not check FPS more than 1 time
2325  return;
2326  } else {
2327  check_fps = true;
2328  }
2329 
2330  int frames_per_second[3] = {0,0,0};
2331  int max_fps_index = sizeof(frames_per_second) / sizeof(frames_per_second[0]);
2332  int fps_index = 0;
2333 
2334  int all_frames_detected = 0;
2335  int starting_frames_detected = 0;
2336 
2337  // Loop through the stream
2338  while (true) {
2339  // Get the next packet (if any)
2340  if (GetNextPacket() < 0)
2341  // Break loop when no more packets found
2342  break;
2343 
2344  // Video packet
2345  if (packet->stream_index == videoStream) {
2346  // Get the video packet start time (in seconds)
2347  double video_seconds = (double(GetPacketPTS()) * info.video_timebase.ToDouble()) + pts_offset_seconds;
2348  fps_index = int(video_seconds); // truncate float timestamp to int (second 1, second 2, second 3)
2349 
2350  // Is this video packet from the first few seconds?
2351  if (fps_index >= 0 && fps_index < max_fps_index) {
2352  // Yes, keep track of how many frames per second (over the first few seconds)
2353  starting_frames_detected++;
2354  frames_per_second[fps_index]++;
2355  }
2356 
2357  // Track all video packets detected
2358  all_frames_detected++;
2359  }
2360  }
2361 
2362  // Calculate FPS (based on the first few seconds of video packets)
2363  float avg_fps = 30.0;
2364  if (starting_frames_detected > 0 && fps_index > 0) {
2365  avg_fps = float(starting_frames_detected) / std::min(fps_index, max_fps_index);
2366  }
2367 
2368  // Verify average FPS is a reasonable value
2369  if (avg_fps < 8.0) {
2370  // Invalid FPS assumed, so switching to a sane default FPS instead
2371  avg_fps = 30.0;
2372  }
2373 
2374  // Update FPS (truncate average FPS to Integer)
2375  info.fps = Fraction(int(avg_fps), 1);
2376 
2377  // Update Duration and Length
2378  if (all_frames_detected > 0) {
2379  // Use all video frames detected to calculate # of frames
2380  info.video_length = all_frames_detected;
2381  info.duration = all_frames_detected / avg_fps;
2382  } else {
2383  // Use previous duration to calculate # of frames
2384  info.video_length = info.duration * avg_fps;
2385  }
2386 
2387  // Update video bit rate
2389 }
2390 
2391 // Remove AVFrame from cache (and deallocate its memory)
2392 void FFmpegReader::RemoveAVFrame(AVFrame *remove_frame) {
2393  // Remove pFrame (if exists)
2394  if (remove_frame) {
2395  // Free memory
2396  av_freep(&remove_frame->data[0]);
2397 #ifndef WIN32
2398  AV_FREE_FRAME(&remove_frame);
2399 #endif
2400  }
2401 }
2402 
2403 // Remove AVPacket from cache (and deallocate its memory)
2404 void FFmpegReader::RemoveAVPacket(AVPacket *remove_packet) {
2405  // deallocate memory for packet
2406  AV_FREE_PACKET(remove_packet);
2407 
2408  // Delete the object
2409  delete remove_packet;
2410 }
2411 
2412 // Generate JSON string of this object
2413 std::string FFmpegReader::Json() const {
2414 
2415  // Return formatted string
2416  return JsonValue().toStyledString();
2417 }
2418 
2419 // Generate Json::Value for this object
2420 Json::Value FFmpegReader::JsonValue() const {
2421 
2422  // Create root json object
2423  Json::Value root = ReaderBase::JsonValue(); // get parent properties
2424  root["type"] = "FFmpegReader";
2425  root["path"] = path;
2426 
2427  // return JsonValue
2428  return root;
2429 }
2430 
2431 // Load JSON string into this object
2432 void FFmpegReader::SetJson(const std::string value) {
2433 
2434  // Parse JSON string into JSON objects
2435  try {
2436  const Json::Value root = openshot::stringToJson(value);
2437  // Set all values that match
2438  SetJsonValue(root);
2439  }
2440  catch (const std::exception& e) {
2441  // Error parsing JSON (or missing keys)
2442  throw InvalidJSON("JSON is invalid (missing keys or invalid data types)");
2443  }
2444 }
2445 
2446 // Load Json::Value into this object
2447 void FFmpegReader::SetJsonValue(const Json::Value root) {
2448 
2449  // Set parent data
2451 
2452  // Set data from Json (if key is found)
2453  if (!root["path"].isNull())
2454  path = root["path"].asString();
2455 
2456  // Re-Open path, and re-init everything (if needed)
2457  if (is_open) {
2458  Close();
2459  Open();
2460  }
2461 }
openshot::stringToJson
const Json::Value stringToJson(const std::string value)
Definition: Json.cpp:16
openshot::CacheMemory::Clear
void Clear()
Clear the cache of all frames.
Definition: CacheMemory.cpp:221
AV_FIND_DECODER_CODEC_ID
#define AV_FIND_DECODER_CODEC_ID(av_stream)
Definition: FFmpegUtilities.h:207
openshot::ReaderInfo::sample_rate
int sample_rate
The number of audio samples per second (44100 is a common sample rate)
Definition: ReaderBase.h:60
openshot::FFmpegReader::FFmpegReader
FFmpegReader(const std::string &path, bool inspect_reader=true)
Constructor for FFmpegReader.
Definition: FFmpegReader.cpp:71
openshot::Fraction::ToFloat
float ToFloat()
Return this fraction as a float (i.e. 1/2 = 0.5)
Definition: Fraction.cpp:35
openshot::Settings::HARDWARE_DECODER
int HARDWARE_DECODER
Use video codec for faster video decoding (if supported)
Definition: Settings.h:62
openshot::Coordinate::Y
double Y
The Y value of the coordinate (usually representing the value of the property being animated)
Definition: Coordinate.h:41
openshot::CacheMemory::Count
int64_t Count()
Count the frames in the queue.
Definition: CacheMemory.cpp:235
FFmpegUtilities.h
Header file for FFmpegUtilities.
openshot::ReaderBase::JsonValue
virtual Json::Value JsonValue() const =0
Generate Json::Value for this object.
Definition: ReaderBase.cpp:107
openshot::InvalidCodec
Exception when no valid codec is found for a file.
Definition: Exceptions.h:172
openshot::TimelineBase::preview_width
int preview_width
Optional preview width of timeline image. If your preview window is smaller than the timeline,...
Definition: TimelineBase.h:44
openshot::PacketStatus::reset
void reset(bool eof)
Definition: FFmpegReader.h:68
openshot::CacheMemory::GetFrame
std::shared_ptr< openshot::Frame > GetFrame(int64_t frame_number)
Get a frame from the cache.
Definition: CacheMemory.cpp:80
openshot::FFmpegReader::GetFrame
std::shared_ptr< openshot::Frame > GetFrame(int64_t requested_frame) override
Definition: FFmpegReader.cpp:953
AV_COPY_PICTURE_DATA
#define AV_COPY_PICTURE_DATA(av_frame, buffer, pix_fmt, width, height)
Definition: FFmpegUtilities.h:219
openshot::CacheMemory::Add
void Add(std::shared_ptr< openshot::Frame > frame)
Add a Frame to the cache.
Definition: CacheMemory.cpp:46
PixelFormat
#define PixelFormat
Definition: FFmpegUtilities.h:103
AV_ALLOCATE_FRAME
#define AV_ALLOCATE_FRAME()
Definition: FFmpegUtilities.h:199
openshot::ReaderBase::SetJsonValue
virtual void SetJsonValue(const Json::Value root)=0
Load Json::Value into this object.
Definition: ReaderBase.cpp:162
SWR_CONVERT
#define SWR_CONVERT(ctx, out, linesize, out_count, in, linesize2, in_count)
Definition: FFmpegUtilities.h:145
openshot
This namespace is the default namespace for all code in the openshot library.
Definition: Compressor.h:28
openshot::Point::co
Coordinate co
This is the primary coordinate.
Definition: Point.h:66
FF_NUM_PROCESSORS
#define FF_NUM_PROCESSORS
Definition: OpenMPUtilities.h:24
openshot::Clip::scale_y
openshot::Keyframe scale_y
Curve representing the vertical scaling in percent (0 to 1)
Definition: Clip.h:307
openshot::AudioLocation
This struct holds the associated video frame and starting sample # for an audio packet.
Definition: AudioLocation.h:25
openshot::AudioLocation::frame
int64_t frame
Definition: AudioLocation.h:26
openshot::Clip
This class represents a clip (used to arrange readers on the timeline)
Definition: Clip.h:89
openshot::Fraction
This class represents a fraction.
Definition: Fraction.h:30
openshot::AudioLocation::sample_start
int sample_start
Definition: AudioLocation.h:27
AV_FREE_FRAME
#define AV_FREE_FRAME(av_frame)
Definition: FFmpegUtilities.h:203
openshot::Keyframe::GetMaxPoint
Point GetMaxPoint() const
Get max point (by Y coordinate)
Definition: KeyFrame.cpp:245
openshot::ReaderBase::info
openshot::ReaderInfo info
Information about the current media file.
Definition: ReaderBase.h:88
openshot::ReaderInfo::interlaced_frame
bool interlaced_frame
Definition: ReaderBase.h:56
Timeline.h
Header file for Timeline class.
openshot::Clip::ParentTimeline
void ParentTimeline(openshot::TimelineBase *new_timeline) override
Set associated Timeline pointer.
Definition: Clip.cpp:398
openshot::FFmpegReader::~FFmpegReader
virtual ~FFmpegReader()
Destructor.
Definition: FFmpegReader.cpp:100
openshot::ReaderInfo::audio_bit_rate
int audio_bit_rate
The bit rate of the audio stream (in bytes)
Definition: ReaderBase.h:59
openshot::CacheMemory::Remove
void Remove(int64_t frame_number)
Remove a specific frame.
Definition: CacheMemory.cpp:154
AV_FREE_PACKET
#define AV_FREE_PACKET(av_packet)
Definition: FFmpegUtilities.h:204
openshot::ReaderInfo::duration
float duration
Length of time (in seconds)
Definition: ReaderBase.h:43
openshot::ReaderInfo::has_video
bool has_video
Determines if this file has a video stream.
Definition: ReaderBase.h:40
openshot::FFmpegReader::JsonValue
Json::Value JsonValue() const override
Generate Json::Value for this object.
Definition: FFmpegReader.cpp:2420
openshot::PacketStatus::audio_read
int64_t audio_read
Definition: FFmpegReader.h:49
openshot::ReaderInfo::width
int width
The width of the video (in pixesl)
Definition: ReaderBase.h:46
openshot::LAYOUT_STEREO
@ LAYOUT_STEREO
Definition: ChannelLayouts.h:31
openshot::FFmpegReader::SetJson
void SetJson(const std::string value) override
Load JSON string into this object.
Definition: FFmpegReader.cpp:2432
openshot::PacketStatus::packets_eof
bool packets_eof
Definition: FFmpegReader.h:55
hw_de_av_pix_fmt_global
AVPixelFormat hw_de_av_pix_fmt_global
Definition: FFmpegReader.cpp:67
openshot::PacketStatus::audio_decoded
int64_t audio_decoded
Definition: FFmpegReader.h:50
openshot::Fraction::ToDouble
double ToDouble() const
Return this fraction as a double (i.e. 1/2 = 0.5)
Definition: Fraction.cpp:40
openshot::PacketStatus::video_read
int64_t video_read
Definition: FFmpegReader.h:47
hw_de_on
int hw_de_on
Definition: FFmpegReader.cpp:65
openshot::CacheBase::SetMaxBytesFromInfo
void SetMaxBytesFromInfo(int64_t number_of_frames, int width, int height, int sample_rate, int channels)
Set maximum bytes to a different amount based on a ReaderInfo struct.
Definition: CacheBase.cpp:30
openshot::LAYOUT_MONO
@ LAYOUT_MONO
Definition: ChannelLayouts.h:30
openshot::Clip::scale_x
openshot::Keyframe scale_x
Curve representing the horizontal scaling in percent (0 to 1)
Definition: Clip.h:306
AV_GET_CODEC_ATTRIBUTES
#define AV_GET_CODEC_ATTRIBUTES(av_stream, av_context)
Definition: FFmpegUtilities.h:214
openshot::ReaderInfo::video_length
int64_t video_length
The number of frames in the video stream.
Definition: ReaderBase.h:53
hw_de_av_device_type_global
AVHWDeviceType hw_de_av_device_type_global
Definition: FFmpegReader.cpp:68
openshot::ReaderInfo::height
int height
The height of the video (in pixels)
Definition: ReaderBase.h:45
openshot::PacketStatus::video_eof
bool video_eof
Definition: FFmpegReader.h:53
openshot::Fraction::num
int num
Numerator for the fraction.
Definition: Fraction.h:32
if
if(!codec) codec
ZmqLogger.h
Header file for ZeroMQ-based Logger class.
openshot::Fraction::den
int den
Denominator for the fraction.
Definition: Fraction.h:33
OPEN_MP_NUM_PROCESSORS
#define OPEN_MP_NUM_PROCESSORS
Definition: OpenMPUtilities.h:23
AV_RESET_FRAME
#define AV_RESET_FRAME(av_frame)
Definition: FFmpegUtilities.h:202
openshot::AudioLocation::is_near
bool is_near(AudioLocation location, int samples_per_frame, int64_t amount)
Definition: FFmpegReader.cpp:107
SWR_CLOSE
#define SWR_CLOSE(ctx)
Definition: FFmpegUtilities.h:148
openshot::ReaderInfo::has_audio
bool has_audio
Determines if this file has an audio stream.
Definition: ReaderBase.h:41
openshot::Settings::DE_LIMIT_HEIGHT_MAX
int DE_LIMIT_HEIGHT_MAX
Maximum rows that hardware decode can handle.
Definition: Settings.h:74
openshot::InvalidJSON
Exception for invalid JSON.
Definition: Exceptions.h:217
openshot::FFmpegReader::enable_seek
bool enable_seek
Definition: FFmpegReader.h:232
openshot::ReaderInfo::file_size
int64_t file_size
Size of file (in bytes)
Definition: ReaderBase.h:44
openshot::Timeline
This class represents a timeline.
Definition: Timeline.h:148
openshot::FFmpegReader::Open
void Open() override
Open File - which is called by the constructor automatically.
Definition: FFmpegReader.cpp:207
openshot::OutOfMemory
Exception when memory could not be allocated.
Definition: Exceptions.h:348
openshot::SCALE_CROP
@ SCALE_CROP
Scale the clip until both height and width fill the canvas (cropping the overlap)
Definition: Enums.h:37
SWR_INIT
#define SWR_INIT(ctx)
Definition: FFmpegUtilities.h:150
SWRCONTEXT
#define SWRCONTEXT
Definition: FFmpegUtilities.h:151
openshot::PacketStatus::audio_eof
bool audio_eof
Definition: FFmpegReader.h:54
openshot::ReaderInfo::has_single_image
bool has_single_image
Determines if this file only contains a single image.
Definition: ReaderBase.h:42
openshot::FFmpegReader::final_cache
CacheMemory final_cache
Final cache object used to hold final frames.
Definition: FFmpegReader.h:228
openshot::ReaderInfo::video_timebase
openshot::Fraction video_timebase
The video timebase determines how long each frame stays on the screen.
Definition: ReaderBase.h:55
openshot::Settings::Instance
static Settings * Instance()
Create or get an instance of this logger singleton (invoke the class with this method)
Definition: Settings.cpp:23
openshot::ReaderInfo::metadata
std::map< std::string, std::string > metadata
An optional map/dictionary of metadata for this reader.
Definition: ReaderBase.h:65
path
path
Definition: FFmpegWriter.cpp:1476
openshot::Frame::GetSamplesPerFrame
int GetSamplesPerFrame(openshot::Fraction fps, int sample_rate, int channels)
Calculate the # of samples per video frame (for the current frame number)
Definition: Frame.cpp:484
openshot::InvalidFile
Exception for files that can not be found or opened.
Definition: Exceptions.h:187
openshot::ReaderInfo::audio_stream_index
int audio_stream_index
The index of the audio stream.
Definition: ReaderBase.h:63
openshot::ZmqLogger::Instance
static ZmqLogger * Instance()
Create or get an instance of this logger singleton (invoke the class with this method)
Definition: ZmqLogger.cpp:35
openshot::ReaderInfo::audio_timebase
openshot::Fraction audio_timebase
The audio timebase determines how long each audio packet should be played.
Definition: ReaderBase.h:64
openshot::FFmpegReader::Close
void Close() override
Close File.
Definition: FFmpegReader.cpp:611
openshot::SCALE_FIT
@ SCALE_FIT
Scale the clip until either height or width fills the canvas (with no cropping)
Definition: Enums.h:38
openshot::PacketStatus::packets_read
int64_t packets_read()
Definition: FFmpegReader.h:58
openshot::ReaderInfo::pixel_format
int pixel_format
The pixel format (i.e. YUV420P, RGB24, etc...)
Definition: ReaderBase.h:47
openshot::ZmqLogger::AppendDebugMethod
void AppendDebugMethod(std::string method_name, std::string arg1_name="", float arg1_value=-1.0, std::string arg2_name="", float arg2_value=-1.0, std::string arg3_name="", float arg3_value=-1.0, std::string arg4_name="", float arg4_value=-1.0, std::string arg5_name="", float arg5_value=-1.0, std::string arg6_name="", float arg6_value=-1.0)
Append debug information.
Definition: ZmqLogger.cpp:178
openshot::ReaderInfo::vcodec
std::string vcodec
The name of the video codec used to encode / decode the video stream.
Definition: ReaderBase.h:52
openshot::PacketStatus::packets_decoded
int64_t packets_decoded()
Definition: FFmpegReader.h:63
AV_GET_CODEC_TYPE
#define AV_GET_CODEC_TYPE(av_stream)
Definition: FFmpegUtilities.h:206
openshot::ReaderClosed
Exception when a reader is closed, and a frame is requested.
Definition: Exceptions.h:363
openshot::ReaderInfo::channel_layout
openshot::ChannelLayout channel_layout
The channel layout (mono, stereo, 5 point surround, etc...)
Definition: ReaderBase.h:62
AV_FREE_CONTEXT
#define AV_FREE_CONTEXT(av_context)
Definition: FFmpegUtilities.h:205
PIX_FMT_RGBA
#define PIX_FMT_RGBA
Definition: FFmpegUtilities.h:106
AV_GET_CODEC_PIXEL_FORMAT
#define AV_GET_CODEC_PIXEL_FORMAT(av_stream, av_context)
Definition: FFmpegUtilities.h:215
AVCODEC_REGISTER_ALL
#define AVCODEC_REGISTER_ALL
Definition: FFmpegUtilities.h:195
SWR_FREE
#define SWR_FREE(ctx)
Definition: FFmpegUtilities.h:149
openshot::Settings::DE_LIMIT_WIDTH_MAX
int DE_LIMIT_WIDTH_MAX
Maximum columns that hardware decode can handle.
Definition: Settings.h:77
openshot::ReaderInfo::fps
openshot::Fraction fps
Frames per second, as a fraction (i.e. 24/1 = 24 fps)
Definition: ReaderBase.h:48
AV_GET_SAMPLE_FORMAT
#define AV_GET_SAMPLE_FORMAT(av_stream, av_context)
Definition: FFmpegUtilities.h:217
openshot::ReaderInfo::video_bit_rate
int video_bit_rate
The bit rate of the video stream (in bytes)
Definition: ReaderBase.h:49
openshot::PacketStatus::end_of_file
bool end_of_file
Definition: FFmpegReader.h:56
openshot::Clip::scale
openshot::ScaleType scale
The scale determines how a clip should be resized to fit its parent.
Definition: Clip.h:168
openshot::ReaderInfo::top_field_first
bool top_field_first
Definition: ReaderBase.h:57
openshot::ChannelLayout
ChannelLayout
This enumeration determines the audio channel layout (such as stereo, mono, 5 point surround,...
Definition: ChannelLayouts.h:28
SWR_ALLOC
#define SWR_ALLOC()
Definition: FFmpegUtilities.h:147
openshot::ReaderInfo::pixel_ratio
openshot::Fraction pixel_ratio
The pixel ratio of the video stream as a fraction (i.e. some pixels are not square)
Definition: ReaderBase.h:50
AV_REGISTER_ALL
#define AV_REGISTER_ALL
Definition: FFmpegUtilities.h:194
openshot::CacheMemory::GetFrames
std::vector< std::shared_ptr< openshot::Frame > > GetFrames()
Get an array of all Frames.
Definition: CacheMemory.cpp:96
AV_GET_CODEC_CONTEXT
#define AV_GET_CODEC_CONTEXT(av_stream, av_codec)
Definition: FFmpegUtilities.h:208
openshot::ReaderInfo::video_stream_index
int video_stream_index
The index of the video stream.
Definition: ReaderBase.h:54
openshot::FFmpegReader::SetJsonValue
void SetJsonValue(const Json::Value root) override
Load Json::Value into this object.
Definition: FFmpegReader.cpp:2447
openshot::SCALE_STRETCH
@ SCALE_STRETCH
Scale the clip until both height and width fill the canvas (distort to fit)
Definition: Enums.h:39
openshot::ReaderInfo::acodec
std::string acodec
The name of the audio codec used to encode / decode the video stream.
Definition: ReaderBase.h:58
openshot::NoStreamsFound
Exception when no streams are found in the file.
Definition: Exceptions.h:285
openshot::ReaderInfo::display_ratio
openshot::Fraction display_ratio
The ratio of width to height of the video stream (i.e. 640x480 has a ratio of 4/3)
Definition: ReaderBase.h:51
openshot::ReaderInfo::channels
int channels
The number of audio channels used in the audio stream.
Definition: ReaderBase.h:61
openshot::FFmpegReader::Json
std::string Json() const override
Generate JSON string of this object.
Definition: FFmpegReader.cpp:2413
openshot::FFmpegReader::GetIsDurationKnown
bool GetIsDurationKnown()
Return true if frame can be read with GetFrame()
Definition: FFmpegReader.cpp:949
openshot::PacketStatus::video_decoded
int64_t video_decoded
Definition: FFmpegReader.h:48
opts
AVDictionary * opts
Definition: FFmpegWriter.cpp:1483
Exceptions.h
Header file for all Exception classes.
openshot::Settings::HW_DE_DEVICE_SET
int HW_DE_DEVICE_SET
Which GPU to use to decode (0 is the first)
Definition: Settings.h:80
FFmpegReader.h
Header file for FFmpegReader class.
openshot::ReaderBase::getFrameMutex
std::recursive_mutex getFrameMutex
Mutex for multiple threads.
Definition: ReaderBase.h:79
openshot::ReaderBase::ParentClip
openshot::ClipBase * ParentClip()
Parent clip object of this reader (which can be unparented and NULL)
Definition: ReaderBase.cpp:245