OpenShot Library | libopenshot 0.5.0
Loading...
Searching...
No Matches
FFmpegReader.h
Go to the documentation of this file.
1
12// Copyright (c) 2008-2019 OpenShot Studios, LLC, Fabrice Bellard
13//
14// SPDX-License-Identifier: LGPL-3.0-or-later
15
16#ifndef OPENSHOT_FFMPEG_READER_H
17#define OPENSHOT_FFMPEG_READER_H
18
19#include "ReaderBase.h"
20#include "Enums.h"
21
22// Include FFmpeg headers and macros
23#include "FFmpegUtilities.h"
24
25#include <cmath>
26#include <ctime>
27#include <iostream>
28#include <stdio.h>
29#include <memory>
30#include "AudioLocation.h"
31#include "CacheMemory.h"
32#include "Clip.h"
33#include "OpenMPUtilities.h"
34#include "Settings.h"
35#include <cstdlib>
36
37
38namespace openshot {
47 struct PacketStatus {
48 // Track counts of video and audio packets read & decoded
49 int64_t video_read = 0;
50 int64_t video_decoded = 0;
51 int64_t audio_read = 0;
52 int64_t audio_decoded = 0;
53
54 // Track end-of-file detection on video/audio and overall
55 bool video_eof = true;
56 bool audio_eof = true;
57 bool packets_eof = true;
58 bool end_of_file = true;
59
60 int64_t packets_read() {
61 // Return total packets read
62 return video_read + audio_read;
63 }
64
65 int64_t packets_decoded() {
66 // Return total packets decoded
68 }
69
70 void reset(bool eof) {
71 // Reset counts and EOF detection for packets
73 video_eof = eof; audio_eof = eof; packets_eof = eof; end_of_file = eof;
74 }
75 };
76
103 class FFmpegReader : public ReaderBase {
104 private:
105 std::string path;
106
107 AVFormatContext *pFormatCtx;
108 int videoStream, audioStream;
109 AVCodecContext *pCodecCtx, *aCodecCtx;
110#if USE_HW_ACCEL
111 AVBufferRef *hw_device_ctx = NULL; //PM
112#endif
113 AVStream *pStream, *aStream;
114 AVPacket *packet;
115 AVFrame *pFrame;
116 bool is_open;
117 bool is_duration_known;
118 bool check_interlace;
119 bool check_fps;
120 DurationStrategy duration_strategy;
121
122 CacheMemory working_cache;
123 AudioLocation previous_packet_location;
124
125 // DEBUG VARIABLES (FOR AUDIO ISSUES)
126 int prev_samples;
127 int64_t prev_pts;
128 int64_t pts_total;
129 int64_t pts_counter;
130 std::shared_ptr<openshot::Frame> last_video_frame;
131
132 bool is_seeking;
133 int64_t seeking_pts;
134 int64_t seeking_frame;
135 bool is_video_seek;
136 int seek_count;
137 int64_t seek_audio_frame_found;
138 int64_t seek_video_frame_found;
139
140 int64_t last_frame;
141 int64_t largest_frame_processed;
142 int64_t current_video_frame;
143
144 int64_t audio_pts;
145 int64_t video_pts;
146 bool hold_packet;
147 double pts_offset_seconds;
148 double audio_pts_seconds;
149 double video_pts_seconds;
150 int64_t NO_PTS_OFFSET;
151 PacketStatus packet_status;
152
153 // Duration bookkeeping
154 double video_stream_duration_seconds = 0.0;
155 double audio_stream_duration_seconds = 0.0;
156 double format_duration_seconds = 0.0;
157 double inferred_duration_seconds = 0.0;
158
159 // Cached conversion contexts and frames for performance
160 SwsContext *img_convert_ctx = nullptr;
161 SWRCONTEXT *avr_ctx = nullptr;
162 AVFrame *pFrameRGB_cached = nullptr;
163
164 int hw_de_supported = 0; // Is set by FFmpegReader
165#if USE_HW_ACCEL
166 AVPixelFormat hw_de_av_pix_fmt = AV_PIX_FMT_NONE;
167 AVHWDeviceType hw_de_av_device_type = AV_HWDEVICE_TYPE_NONE;
168 int IsHardwareDecodeSupported(int codecid);
169#endif
170
172 void CheckFPS();
173
175 bool CheckSeek(bool is_video);
176
178 void CheckWorkingFrames(int64_t requested_frame);
179
181 int64_t ConvertFrameToAudioPTS(int64_t frame_number);
182
184 int64_t ConvertFrameToVideoPTS(int64_t frame_number);
185
187 int64_t ConvertVideoPTStoFrame(int64_t pts);
188
190 std::shared_ptr<openshot::Frame> CreateFrame(int64_t requested_frame);
191
193 AudioLocation GetAudioPTSLocation(int64_t pts);
194
196 bool GetAVFrame();
197
199 int GetNextPacket();
200
202 int64_t GetPacketPTS();
203
205 bool HasAlbumArt();
206
208 double PickDurationSeconds() const;
209
211 void ApplyDurationStrategy();
212
214 bool IsPartialFrame(int64_t requested_frame);
215
217 void ProcessVideoPacket(int64_t requested_frame);
218
220 void ProcessAudioPacket(int64_t requested_frame);
221
223 std::shared_ptr<openshot::Frame> ReadStream(int64_t requested_frame);
224
226 void RemoveAVFrame(AVFrame *);
227
229 void RemoveAVPacket(AVPacket *);
230
232 void Seek(int64_t requested_frame);
233
237 void UpdatePTSOffset();
238
240 void UpdateAudioInfo();
241
243 void UpdateVideoInfo();
244
245 public:
248
252
259 FFmpegReader(const std::string& path, bool inspect_reader=true);
265 FFmpegReader(const std::string& path, DurationStrategy duration_strategy, bool inspect_reader=true);
266
268 virtual ~FFmpegReader();
269
271 void Close() override;
272
274 CacheMemory *GetCache() override { return &final_cache; };
275
280 std::shared_ptr<openshot::Frame> GetFrame(int64_t requested_frame) override;
281
283 bool IsOpen() override { return is_open; };
284
286 std::string Name() override { return "FFmpegReader"; };
287
288 // Get and Set JSON methods
289 std::string Json() const override;
290 void SetJson(const std::string value) override;
291 Json::Value JsonValue() const override;
292 void SetJsonValue(const Json::Value root) override;
293
295 void Open() override;
296
298 bool GetIsDurationKnown();
299 };
300
301}
302
303#endif
Header file for AudioLocation class.
Header file for CacheMemory class.
Header file for Clip class.
Header file for TextReader class.
Header file for FFmpegUtilities.
#define SWRCONTEXT
Header file for OpenMPUtilities (set some common macros)
Header file for ReaderBase class.
Header file for global Settings class.
This class is a memory-based cache manager for Frame objects.
Definition CacheMemory.h:29
This class uses the FFmpeg libraries, to open video files and audio files, and return openshot::Frame...
void Open() override
Open File - which is called by the constructor automatically.
CacheMemory * GetCache() override
Get the cache object used by this reader.
Json::Value JsonValue() const override
Generate Json::Value for this object.
bool GetIsDurationKnown()
Return true if frame can be read with GetFrame()
void SetJsonValue(const Json::Value root) override
Load Json::Value into this object.
CacheMemory final_cache
Final cache object used to hold final frames.
std::string Name() override
Return the type name of the class.
virtual ~FFmpegReader()
Destructor.
std::string Json() const override
Generate JSON string of this object.
std::shared_ptr< openshot::Frame > GetFrame(int64_t requested_frame) override
void Close() override
Close File.
void SetJson(const std::string value) override
Load JSON string into this object.
bool IsOpen() override
Determine if reader is open or closed.
This abstract class is the base class, used by all readers in libopenshot.
Definition ReaderBase.h:76
This namespace is the default namespace for all code in the openshot library.
Definition Compressor.h:29
DurationStrategy
This enumeration determines which duration source to favor.
Definition Enums.h:60
This struct holds the associated video frame and starting sample # for an audio packet.
This struct holds the packet counts and end-of-file detection for an openshot::FFmpegReader.
void reset(bool eof)