Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
96f38af0
Commit
96f38af0
authored
Oct 11, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement tempo meta event. Performance now runs at intended speed.
parent
0e7ed04d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
5 deletions
+20
-5
modules/demux/smf.c
modules/demux/smf.c
+20
-5
No files found.
modules/demux/smf.c
View file @
96f38af0
...
...
@@ -137,8 +137,8 @@ static int Open (vlc_object_t * p_this)
p_demux
->
pf_control
=
Control
;
p_demux
->
p_sys
=
p_sys
;
/*
SMF expresses tempo in Beats-Per-Minute, default is 120
*/
date_Init
(
&
p_sys
->
pts
,
ppqn
*
120
,
60
);
/*
Default SMF tempo is 120BPM, i.e. half a second per quarter note
*/
date_Init
(
&
p_sys
->
pts
,
ppqn
*
2
,
1
);
date_Set
(
&
p_sys
->
pts
,
1
);
p_sys
->
pulse
=
0
;
p_sys
->
ppqn
=
ppqn
;
...
...
@@ -260,6 +260,7 @@ static
int
HandleMeta
(
demux_t
*
p_demux
,
mtrk_t
*
tr
)
{
stream_t
*
s
=
p_demux
->
s
;
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
uint8_t
*
payload
;
uint8_t
type
;
int32_t
length
;
...
...
@@ -341,10 +342,24 @@ int HandleMeta (demux_t *p_demux, mtrk_t *tr)
case
0x51
:
/* Tempo */
if
(
length
==
3
)
{
uint32_t
tempo
=
(
payload
[
0
]
<<
16
)
uint32_t
uspqn
=
(
payload
[
0
]
<<
16
)
|
(
payload
[
1
]
<<
8
)
|
payload
[
2
];
/* FIXME: change date */
msg_Dbg
(
p_demux
,
"new tempo: %u"
,
(
unsigned
)
tempo
);
unsigned
tempo
=
60
*
1000000
/
(
uspqn
?
uspqn
:
1
);
msg_Dbg
(
p_demux
,
"tempo: %uus/qn -> %u BPM"
,
(
unsigned
)
uspqn
,
tempo
);
if
(
tempo
<
20
)
{
msg_Warn
(
p_demux
,
"tempo too slow -> 20 BPM"
);
tempo
=
20
;
}
else
if
(
tempo
>
240
)
{
msg_Warn
(
p_demux
,
"tempo too fast -> 240 BPM"
);
tempo
=
240
;
}
date_Change
(
&
p_sys
->
pts
,
p_sys
->
ppqn
*
tempo
,
60
);
}
else
ret
=
-
1
;
...
...
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