Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLMC
Manage
Activity
Members
Labels
Plan
Issues
26
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLMC
Commits
52167d0a
Commit
52167d0a
authored
8 years ago
by
luyikei
Browse files
Options
Downloads
Patches
Plain Diff
MainWorkflow: Implement resizeClip
parent
238c035e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Workflow/MainWorkflow.cpp
+15
-0
15 additions, 0 deletions
src/Workflow/MainWorkflow.cpp
src/Workflow/MainWorkflow.h
+4
-0
4 additions, 0 deletions
src/Workflow/MainWorkflow.h
with
19 additions
and
0 deletions
src/Workflow/MainWorkflow.cpp
+
15
−
0
View file @
52167d0a
...
...
@@ -251,6 +251,21 @@ MainWorkflow::moveClip( quint32 trackId, const QString& uuid, qint64 startFrame
}
}
void
MainWorkflow
::
resizeClip
(
const
QString
&
uuid
,
qint64
newBegin
,
qint64
newEnd
,
qint64
newPos
)
{
for
(
auto
it
=
m_clips
.
begin
();
it
!=
m_clips
.
end
();
++
it
)
{
if
(
it
.
value
()
->
uuid
().
toString
()
==
uuid
)
{
auto
trackId
=
it
.
key
();
auto
clip
=
it
.
value
();
Commands
::
trigger
(
new
Commands
::
Clip
::
Resize
(
track
(
trackId
),
clip
,
newBegin
,
newEnd
,
newPos
)
);
}
}
}
bool
MainWorkflow
::
startRenderToFile
(
const
QString
&
outputFileName
,
quint32
width
,
quint32
height
,
double
fps
,
const
QString
&
ar
,
quint32
vbitrate
,
quint32
abitrate
,
...
...
This diff is collapsed.
Click to expand it.
src/Workflow/MainWorkflow.h
+
4
−
0
View file @
52167d0a
...
...
@@ -150,6 +150,10 @@ class MainWorkflow : public QObject
Q_INVOKABLE
void
moveClip
(
quint32
trackId
,
const
QString
&
uuid
,
qint64
startFrame
);
Q_INVOKABLE
void
resizeClip
(
const
QString
&
uuid
,
qint64
newBegin
,
qint64
newEnd
,
qint64
newPos
);
bool
startRenderToFile
(
const
QString
&
outputFileName
,
quint32
width
,
quint32
height
,
double
fps
,
const
QString
&
ar
,
quint32
vbitrate
,
quint32
abitrate
,
quint32
nbChannels
,
quint32
sampleRate
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment