56 lines
2.0 KiB
C
56 lines
2.0 KiB
C
/***
|
|
|
|
Olive - Non-Linear Video Editor
|
|
Copyright (C) 2019 Olive Team
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
***/
|
|
|
|
#ifndef PLAYBACK_H
|
|
#define PLAYBACK_H
|
|
|
|
#include <QVector>
|
|
#include <QMutex>
|
|
|
|
#include "project/clip.h"
|
|
#include "project/sequence.h"
|
|
|
|
extern "C" {
|
|
#include <libavformat/avformat.h>
|
|
}
|
|
|
|
long refactor_frame_number(long framenumber, double source_frame_rate, double target_frame_rate);
|
|
bool clip_uses_cacher(ClipPtr clip);
|
|
void open_clip(ClipPtr clip, bool multithreaded);
|
|
void cache_clip(ClipPtr clip, long playhead, bool reset, bool scrubbing, QVector<ClipPtr> &nests, int playback_speed);
|
|
void close_clip(ClipPtr clip, bool wait);
|
|
void handle_media(SequencePtr sequence, long playhead, bool multithreaded);
|
|
void reset_cache(ClipPtr c, long target_frame, int playback_speed);
|
|
void get_clip_frame(ClipPtr c, long playhead, bool &texture_failed);
|
|
double get_timecode(ClipPtr c, long playhead);
|
|
|
|
long playhead_to_clip_frame(ClipPtr c, long playhead);
|
|
double playhead_to_clip_seconds(ClipPtr c, long playhead);
|
|
int64_t seconds_to_timestamp(ClipPtr c, double seconds);
|
|
int64_t playhead_to_timestamp(ClipPtr c, long playhead);
|
|
|
|
int retrieve_next_frame(ClipPtr c, AVFrame* f);
|
|
bool is_clip_active(ClipPtr c, long playhead);
|
|
void get_next_audio(ClipPtr c, bool mix);
|
|
void set_sequence(SequencePtr s);
|
|
void closeActiveClips(SequencePtr s);
|
|
|
|
#endif // PLAYBACK_H
|