85 lines
1.5 KiB
C++
85 lines
1.5 KiB
C++
#ifndef FOOTAGE_H
|
|
#define FOOTAGE_H
|
|
|
|
#include <QString>
|
|
#include <QVector>
|
|
#include <QMetaType>
|
|
#include <QVariant>
|
|
#include <QMutex>
|
|
#include <QPixmap>
|
|
#include <QIcon>
|
|
|
|
#include "project/marker.h"
|
|
|
|
enum VideoInterlacingMode {
|
|
VIDEO_PROGRESSIVE,
|
|
VIDEO_TOP_FIELD_FIRST,
|
|
VIDEO_BOTTOM_FIELD_FIRST
|
|
};
|
|
|
|
struct Sequence;
|
|
class Clip;
|
|
class PreviewGenerator;
|
|
class MediaThrobber;
|
|
|
|
struct FootageStream {
|
|
int file_index;
|
|
int video_width;
|
|
int video_height;
|
|
bool infinite_length;
|
|
double video_frame_rate;
|
|
int video_interlacing;
|
|
int video_auto_interlacing;
|
|
int audio_channels;
|
|
int audio_layout;
|
|
int audio_frequency;
|
|
bool enabled;
|
|
|
|
// preview thumbnail/waveform
|
|
bool preview_done;
|
|
QImage video_preview;
|
|
QIcon video_preview_square;
|
|
QVector<char> audio_preview;
|
|
void make_square_thumb();
|
|
};
|
|
|
|
struct Footage {
|
|
Footage();
|
|
~Footage();
|
|
|
|
// footage metadata
|
|
QString url;
|
|
QString name;
|
|
int64_t length;
|
|
QVector<FootageStream> video_tracks;
|
|
QVector<FootageStream> audio_tracks;
|
|
int save_id;
|
|
bool ready;
|
|
bool invalid;
|
|
double speed;
|
|
bool alpha_is_premultiplied;
|
|
|
|
// proxy config
|
|
bool proxy;
|
|
QString proxy_path;
|
|
|
|
// thumbnail/waveform generation
|
|
PreviewGenerator* preview_gen;
|
|
QMutex ready_lock;
|
|
|
|
// in/out points
|
|
bool using_inout;
|
|
long in;
|
|
long out;
|
|
|
|
// markers
|
|
QVector<Marker> markers;
|
|
|
|
// functions
|
|
long get_length_in_frames(double frame_rate);
|
|
FootageStream *get_stream_from_file_index(bool video, int index);
|
|
void reset();
|
|
};
|
|
|
|
#endif // FOOTAGE_H
|