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;
134 int64_t seeking_frame;
137 int64_t seek_audio_frame_found;
138 int64_t seek_video_frame_found;
141 int64_t largest_frame_processed;
142 int64_t current_video_frame;
147 double pts_offset_seconds;
148 double audio_pts_seconds;
149 double video_pts_seconds;
150 int64_t NO_PTS_OFFSET;
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;
160 SwsContext *img_convert_ctx =
nullptr;
162 AVFrame *pFrameRGB_cached =
nullptr;
164 int hw_de_supported = 0;
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);
175 bool CheckSeek(
bool is_video);
178 void CheckWorkingFrames(int64_t requested_frame);
181 int64_t ConvertFrameToAudioPTS(int64_t frame_number);
184 int64_t ConvertFrameToVideoPTS(int64_t frame_number);
187 int64_t ConvertVideoPTStoFrame(int64_t pts);
190 std::shared_ptr<openshot::Frame> CreateFrame(int64_t requested_frame);
202 int64_t GetPacketPTS();
208 double PickDurationSeconds()
const;
211 void ApplyDurationStrategy();
214 bool IsPartialFrame(int64_t requested_frame);
217 void ProcessVideoPacket(int64_t requested_frame);
220 void ProcessAudioPacket(int64_t requested_frame);
223 std::shared_ptr<openshot::Frame> ReadStream(int64_t requested_frame);
226 void RemoveAVFrame(AVFrame *);
229 void RemoveAVPacket(AVPacket *);
232 void Seek(int64_t requested_frame);
237 void UpdatePTSOffset();
240 void UpdateAudioInfo();
243 void UpdateVideoInfo();
259 FFmpegReader(
const std::string& path,
bool inspect_reader=
true);
271 void Close()
override;
280 std::shared_ptr<openshot::Frame>
GetFrame(int64_t requested_frame)
override;
283 bool IsOpen()
override {
return is_open; };
286 std::string
Name()
override {
return "FFmpegReader"; };
289 std::string
Json()
const override;
290 void SetJson(
const std::string value)
override;
295 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.
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()