Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLMC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
luyikei
VLMC
Commits
8d9eb2fb
Commit
8d9eb2fb
authored
Jun 02, 2009
by
Hugo Beauzee-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed a bug introduced when switched back to VLC 1.0-bugfix
Now we can have more than one media loaded...
parent
2cf157ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/MetaDataManager.cpp
src/MetaDataManager.cpp
+5
-1
No files found.
src/MetaDataManager.cpp
View file @
8d9eb2fb
...
...
@@ -88,8 +88,11 @@ void MetaDataManager::run()
void
MetaDataManager
::
getMetaData
()
{
qDebug
()
<<
"getMetaData();"
;
m_mediaIsPlaying
=
false
;
m_lengthHasChanged
=
false
;
//TODO: restore this when VLC1.1 comes out.
// m_lengthHasChanged = false;
m_lengthHasChanged
=
true
;
m_nextMedia
=
true
;
m_currentClip
->
setLength
(
m_mediaPlayer
->
getLength
()
);
...
...
@@ -212,6 +215,7 @@ void MetaDataManager::entrypointLengthChanged()
void
MetaDataManager
::
entrypointPlaying
()
{
disconnect
(
m_mediaPlayer
,
SIGNAL
(
playing
()
),
this
,
SLOT
(
entrypointPlaying
()
)
);
qDebug
()
<<
"Playing the media"
;
m_mediaIsPlaying
=
true
;
if
(
m_lengthHasChanged
==
true
)
getMetaData
();
...
...
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