16 #ifndef OPENSHOT_FFMPEG_READER_H
17 #define OPENSHOT_FFMPEG_READER_H
107 AVFormatContext *pFormatCtx;
108 int videoStream, audioStream;
109 AVCodecContext *pCodecCtx, *aCodecCtx;
111 AVBufferRef *hw_device_ctx = NULL;
113 AVStream *pStream, *aStream;
117 bool is_duration_known;
118 bool check_interlace;
130 std::shared_ptr<openshot::Frame> last_video_frame;
131 std::shared_ptr<openshot::Frame> last_final_video_frame;
135 int64_t seeking_frame;
138 int64_t seek_audio_frame_found;
139 int64_t seek_video_frame_found;
140 int64_t last_seek_max_frame;
141 int seek_stagnant_count;
144 int64_t largest_frame_processed;
145 int64_t current_video_frame;
150 double pts_offset_seconds;
151 double audio_pts_seconds;
152 double video_pts_seconds;
153 int64_t NO_PTS_OFFSET;
157 double video_stream_duration_seconds = 0.0;
158 double audio_stream_duration_seconds = 0.0;
159 double format_duration_seconds = 0.0;
160 double inferred_duration_seconds = 0.0;
163 SwsContext *img_convert_ctx =
nullptr;
165 AVFrame *pFrameRGB_cached =
nullptr;
167 int hw_de_supported = 0;
168 bool force_sw_decode =
false;
169 bool hw_decode_failed =
false;
170 int hw_decode_error_count = 0;
171 bool hw_decode_succeeded =
false;
173 AVPixelFormat hw_de_av_pix_fmt = AV_PIX_FMT_NONE;
174 AVHWDeviceType hw_de_av_device_type = AV_HWDEVICE_TYPE_NONE;
175 int IsHardwareDecodeSupported(
int codecid);
185 void CheckWorkingFrames(int64_t requested_frame);
188 int64_t ConvertFrameToAudioPTS(int64_t frame_number);
191 int64_t ConvertFrameToVideoPTS(int64_t frame_number);
194 int64_t ConvertVideoPTStoFrame(int64_t pts);
197 std::shared_ptr<openshot::Frame> CreateFrame(int64_t requested_frame);
206 bool ReopenWithoutHardwareDecode(int64_t requested_frame);
212 int64_t GetPacketPTS();
218 double PickDurationSeconds()
const;
221 void ApplyDurationStrategy();
224 bool IsPartialFrame(int64_t requested_frame);
227 void ProcessVideoPacket(int64_t requested_frame);
230 void ProcessAudioPacket(int64_t requested_frame);
233 std::shared_ptr<openshot::Frame> ReadStream(int64_t requested_frame);
236 void RemoveAVFrame(AVFrame *);
239 void RemoveAVPacket(AVPacket *);
242 void Seek(int64_t requested_frame);
247 void UpdatePTSOffset();
250 void UpdateAudioInfo();
253 void UpdateVideoInfo();
269 FFmpegReader(
const std::string& path,
bool inspect_reader=
true);
281 void Close()
override;
290 std::shared_ptr<openshot::Frame>
GetFrame(int64_t requested_frame)
override;
293 bool IsOpen()
override {
return is_open; };
299 std::string
Name()
override {
return "FFmpegReader"; };
302 std::string
Json()
const override;
303 void SetJson(
const std::string value)
override;
308 void Open()
override;
Header file for AudioLocation class.
Header file for CacheMemory class.
Header file for Clip class.
Header file for TextReader class.
Header file for FFmpegUtilities.
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.
This class uses the FFmpeg libraries, to open video files and audio files, and return openshot::Frame...
CacheMemory * GetCache() override
Get the cache object used by this reader.
void Open() override
Open File - which is called by the constructor automatically.
bool HardwareDecodeSuccessful() const override
Return true if hardware decode was requested and successfully produced at least one frame.
FFmpegReader(const std::string &path, bool inspect_reader=true)
Constructor for FFmpegReader.
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.
This namespace is the default namespace for all code in the openshot library.
DurationStrategy
This enumeration determines which duration source to favor.
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.
int64_t packets_decoded()