Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
80e9ec31
Commit
80e9ec31
authored
Jan 23, 2010
by
Ludovic Fauvet
Browse files
Workflow: create empty methods for muting a clip
parent
c507d337
Changes
2
Show whitespace changes
Inline
Side-by-side
src/Workflow/MainWorkflow.cpp
View file @
80e9ec31
...
@@ -263,6 +263,20 @@ MainWorkflow::unmuteTrack( unsigned int trackId, MainWorkflow::TrackType trackTy
...
@@ -263,6 +263,20 @@ MainWorkflow::unmuteTrack( unsigned int trackId, MainWorkflow::TrackType trackTy
m_tracks
[
trackType
]
->
unmuteTrack
(
trackId
);
m_tracks
[
trackType
]
->
unmuteTrack
(
trackId
);
}
}
void
MainWorkflow
::
muteClip
(
const
QUuid
&
uuid
,
unsigned
int
trackId
,
MainWorkflow
::
TrackType
trackType
)
{
qDebug
()
<<
"Mute"
<<
uuid
;
}
void
MainWorkflow
::
unmuteClip
(
const
QUuid
&
uuid
,
unsigned
int
trackId
,
MainWorkflow
::
TrackType
trackType
)
{
qDebug
()
<<
"Unmute"
<<
uuid
;
}
void
toggleBreakPoint
()
void
toggleBreakPoint
()
{
{
}
}
...
...
src/Workflow/MainWorkflow.h
View file @
80e9ec31
...
@@ -269,6 +269,26 @@ class MainWorkflow : public QObject, public Singleton<MainWorkflow>
...
@@ -269,6 +269,26 @@ class MainWorkflow : public QObject, public Singleton<MainWorkflow>
void
unmuteTrack
(
unsigned
int
trackId
,
void
unmuteTrack
(
unsigned
int
trackId
,
MainWorkflow
::
TrackType
trackType
);
MainWorkflow
::
TrackType
trackType
);
/**
* \brief Mute a clip.
*
* \param uuid The clip's uuid.
* \param trackId The id of the track containing the clip.
* \param trackType The type of the track containing the clip.
*/
void
muteClip
(
const
QUuid
&
uuid
,
unsigned
int
trackId
,
MainWorkflow
::
TrackType
trackType
);
/**
* \brief Unmute a clip.
*
* \param uuid The clip's uuid.
* \param trackId The id of the track containing the clip.
* \param trackType The type of the track containing the clip.
*/
void
unmuteClip
(
const
QUuid
&
uuid
,
unsigned
int
trackId
,
MainWorkflow
::
TrackType
trackType
);
/**
/**
* \param uuid : The clip's uuid.
* \param uuid : The clip's uuid.
* Please note that the UUID must be the "timeline uuid"
* Please note that the UUID must be the "timeline uuid"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment