317 lines
8.5 KiB
C++
317 lines
8.5 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/>.
|
|
|
|
***/
|
|
|
|
#include "clip.h"
|
|
|
|
#include "project/effect.h"
|
|
#include "project/transition.h"
|
|
#include "project/footage.h"
|
|
#include "io/config.h"
|
|
#include "playback/playback.h"
|
|
#include "playback/cacher.h"
|
|
#include "panels/project.h"
|
|
#include "project/sequence.h"
|
|
#include "panels/timeline.h"
|
|
#include "project/media.h"
|
|
#include "io/clipboard.h"
|
|
#include "undo.h"
|
|
#include "debug.h"
|
|
|
|
Clip::Clip(SequencePtr s) :
|
|
sequence(s),
|
|
enabled(true),
|
|
clip_in(0),
|
|
timeline_in(0),
|
|
timeline_out(0),
|
|
track(0),
|
|
media(nullptr),
|
|
speed(1.0),
|
|
reverse(false),
|
|
maintain_audio_pitch(false),
|
|
autoscale(olive::CurrentConfig.autoscale_by_default),
|
|
opening_transition(nullptr),
|
|
closing_transition(nullptr),
|
|
undeletable(false),
|
|
replaced(false),
|
|
ignore_reverse(false),
|
|
use_existing_frame(false),
|
|
filter_graph(nullptr),
|
|
fbo(nullptr),
|
|
opts(nullptr)
|
|
{
|
|
pkt = av_packet_alloc();
|
|
reset();
|
|
}
|
|
|
|
ClipPtr Clip::copy(SequencePtr s) {
|
|
ClipPtr copy(new Clip(s));
|
|
|
|
copy->enabled = enabled;
|
|
copy->name = QString(name);
|
|
copy->clip_in = clip_in;
|
|
copy->timeline_in = timeline_in;
|
|
copy->timeline_out = timeline_out;
|
|
copy->track = track;
|
|
copy->color_r = color_r;
|
|
copy->color_g = color_g;
|
|
copy->color_b = color_b;
|
|
copy->media = media;
|
|
copy->media_stream = media_stream;
|
|
copy->autoscale = autoscale;
|
|
copy->speed = speed;
|
|
copy->maintain_audio_pitch = maintain_audio_pitch;
|
|
copy->reverse = reverse;
|
|
|
|
for (int i=0;i<effects.size();i++) {
|
|
copy->effects.append(effects.at(i)->copy(copy));
|
|
}
|
|
|
|
copy->cached_fr = (this->sequence == nullptr) ? cached_fr : this->sequence->frame_rate;
|
|
|
|
copy->recalculateMaxLength();
|
|
|
|
return copy;
|
|
}
|
|
|
|
void Clip::reset() {
|
|
audio_just_reset = false;
|
|
open = false;
|
|
finished_opening = false;
|
|
pkt_written = false;
|
|
audio_reset = false;
|
|
frame_sample_index = -1;
|
|
audio_buffer_write = false;
|
|
texture_frame = -1;
|
|
formatCtx = nullptr;
|
|
stream = nullptr;
|
|
codec = nullptr;
|
|
codecCtx = nullptr;
|
|
texture = nullptr;
|
|
last_invalid_ts = -1;
|
|
}
|
|
|
|
void Clip::reset_audio() {
|
|
if (media == nullptr || media->get_type() == MEDIA_TYPE_FOOTAGE) {
|
|
audio_reset = true;
|
|
frame_sample_index = -1;
|
|
audio_buffer_write = 0;
|
|
} else if (media->get_type() == MEDIA_TYPE_SEQUENCE) {
|
|
SequencePtr nested_sequence = media->to_sequence();
|
|
for (int i=0;i<nested_sequence->clips.size();i++) {
|
|
ClipPtr c = nested_sequence->clips.at(i);
|
|
if (c != nullptr) c->reset_audio();
|
|
}
|
|
}
|
|
}
|
|
|
|
void Clip::refresh() {
|
|
// validates media if it was replaced
|
|
if (replaced && media != nullptr && media->get_type() == MEDIA_TYPE_FOOTAGE) {
|
|
FootagePtr m = media->to_footage();
|
|
|
|
if (track < 0 && m->video_tracks.size() > 0) {
|
|
media_stream = m->video_tracks.at(0).file_index;
|
|
} else if (track >= 0 && m->audio_tracks.size() > 0) {
|
|
media_stream = m->audio_tracks.at(0).file_index;
|
|
}
|
|
}
|
|
replaced = false;
|
|
|
|
// reinitializes all effects... just in case
|
|
for (int i=0;i<effects.size();i++) {
|
|
effects.at(i)->refresh();
|
|
}
|
|
|
|
recalculateMaxLength();
|
|
}
|
|
|
|
void Clip::queue_clear() {
|
|
while (queue.size() > 0) {
|
|
av_frame_free(&queue.first());
|
|
queue.removeFirst();
|
|
}
|
|
}
|
|
|
|
void Clip::queue_remove_earliest() {
|
|
int earliest_frame = 0;
|
|
for (int i=1;i<queue.size();i++) {
|
|
// TODO/NOTE: this will not work on sped up AND reversed video
|
|
if (queue.at(i)->pts < queue.at(earliest_frame)->pts) {
|
|
earliest_frame = i;
|
|
}
|
|
}
|
|
av_frame_free(&queue[earliest_frame]);
|
|
queue.removeAt(earliest_frame);
|
|
}
|
|
|
|
QVector<Marker> &Clip::get_markers() {
|
|
if (media != nullptr) {
|
|
return media->get_markers();
|
|
}
|
|
return markers;
|
|
}
|
|
|
|
Clip::~Clip() {
|
|
if (open) {
|
|
close_clip(ClipPtr(this), true);
|
|
}
|
|
|
|
effects.clear();
|
|
av_packet_free(&pkt);
|
|
}
|
|
|
|
long Clip::get_clip_in_with_transition() {
|
|
if (opening_transition != nullptr && opening_transition->secondary_clip != nullptr) {
|
|
// we must be the secondary clip, so return (timeline in - length)
|
|
return clip_in - opening_transition->get_true_length();
|
|
}
|
|
return clip_in;
|
|
}
|
|
|
|
long Clip::get_timeline_in_with_transition() {
|
|
if (opening_transition != nullptr && opening_transition->secondary_clip != nullptr) {
|
|
// we must be the secondary clip, so return (timeline in - length)
|
|
return timeline_in - opening_transition->get_true_length();
|
|
}
|
|
return timeline_in;
|
|
}
|
|
|
|
long Clip::get_timeline_out_with_transition() {
|
|
if (closing_transition != nullptr && closing_transition->secondary_clip != nullptr) {
|
|
// we must be the primary clip, so return (timeline out + length2)
|
|
return timeline_out + closing_transition->get_true_length();
|
|
} else {
|
|
return timeline_out;
|
|
}
|
|
}
|
|
|
|
// timeline functions
|
|
long Clip::getLength() {
|
|
return timeline_out - timeline_in;
|
|
}
|
|
|
|
double Clip::getMediaFrameRate() {
|
|
Q_ASSERT(track < 0);
|
|
if (media != nullptr) {
|
|
double rate = media->get_frame_rate(media_stream);
|
|
if (!qIsNaN(rate)) return rate;
|
|
}
|
|
if (sequence != nullptr) return sequence->frame_rate;
|
|
return qSNaN();
|
|
}
|
|
|
|
void Clip::recalculateMaxLength() {
|
|
if (this->sequence != nullptr) {
|
|
double fr = this->sequence->frame_rate;
|
|
|
|
fr /= speed;
|
|
|
|
calculated_length = LONG_MAX;
|
|
|
|
if (media != nullptr) {
|
|
switch (media->get_type()) {
|
|
case MEDIA_TYPE_FOOTAGE:
|
|
{
|
|
FootagePtr m = media->to_footage();
|
|
const FootageStream* ms = m->get_stream_from_file_index(track < 0, media_stream);
|
|
if (ms != nullptr && ms->infinite_length) {
|
|
calculated_length = LONG_MAX;
|
|
} else {
|
|
calculated_length = m->get_length_in_frames(fr);
|
|
}
|
|
}
|
|
break;
|
|
case MEDIA_TYPE_SEQUENCE:
|
|
{
|
|
SequencePtr s = media->to_sequence();
|
|
calculated_length = refactor_frame_number(s->getEndFrame(), s->frame_rate, fr);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
long Clip::getMaximumLength() {
|
|
return calculated_length;
|
|
}
|
|
|
|
int Clip::getWidth() {
|
|
if (media == nullptr && sequence != nullptr) return sequence->width;
|
|
switch (media->get_type()) {
|
|
case MEDIA_TYPE_FOOTAGE:
|
|
{
|
|
const FootageStream* ms = media->to_footage()->get_stream_from_file_index(track < 0, media_stream);
|
|
if (ms != nullptr) return ms->video_width;
|
|
if (sequence != nullptr) return sequence->width;
|
|
break;
|
|
}
|
|
case MEDIA_TYPE_SEQUENCE:
|
|
{
|
|
SequencePtr s = media->to_sequence();
|
|
return s->width;
|
|
break;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int Clip::getHeight() {
|
|
if (media == nullptr && sequence != nullptr) return sequence->height;
|
|
switch (media->get_type()) {
|
|
case MEDIA_TYPE_FOOTAGE:
|
|
{
|
|
const FootageStream* ms = media->to_footage()->get_stream_from_file_index(track < 0, media_stream);
|
|
if (ms != nullptr) return ms->video_height;
|
|
if (sequence != nullptr) return sequence->height;
|
|
}
|
|
case MEDIA_TYPE_SEQUENCE:
|
|
{
|
|
SequencePtr s = media->to_sequence();
|
|
return s->height;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void Clip::refactor_frame_rate(ComboAction* ca, double multiplier, bool change_timeline_points) {
|
|
if (change_timeline_points) {
|
|
move_clip(ca, ClipPtr(this),
|
|
qRound((double) timeline_in * multiplier),
|
|
qRound((double) timeline_out * multiplier),
|
|
qRound((double) clip_in * multiplier),
|
|
track);
|
|
}
|
|
|
|
// move keyframes
|
|
for (int i=0;i<effects.size();i++) {
|
|
EffectPtr e = effects.at(i);
|
|
for (int j=0;j<e->row_count();j++) {
|
|
EffectRow* r = e->row(j);
|
|
for (int l=0;l<r->fieldCount();l++) {
|
|
EffectField* f = r->field(l);
|
|
for (int k=0;k<f->keyframes.size();k++) {
|
|
ca->append(new SetLong(&f->keyframes[k].time, f->keyframes[k].time, f->keyframes[k].time * multiplier));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|