Changeset b1cb747e78a22db59dac80434995311a07ff6fdf
- Timestamp:
- 26/04/08 18:21:41
(6 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1209226901 +0300
- git-parent:
[0db5f2a07b883f92d95959221776423fcad85974]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1209226901 +0300
- Message:
Standard MIDI file demux: fix comments
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r57bbabb |
rb1cb747 |
|
| 296 | 296 | break; |
|---|
| 297 | 297 | |
|---|
| 298 | | case 0x01: /* Test (comment) */ |
|---|
| | 298 | case 0x01: /* Text (comment) */ |
|---|
| 299 | 299 | EnsureUTF8 ((char *)payload); |
|---|
| 300 | 300 | msg_Info (p_demux, "Text : %s", (char *)payload); |
|---|
| … | … | |
| 441 | 441 | goto skip; |
|---|
| 442 | 442 | } |
|---|
| | 443 | /* never reached */ |
|---|
| 443 | 444 | } |
|---|
| 444 | 445 | case 0xFF: /* SMF Meta Event */ |
|---|
| … | … | |
| 551 | 552 | last_tick = cur_tick + 1; |
|---|
| 552 | 553 | |
|---|
| 553 | | /* MIDI Tick emulation (ping the decider every 10ms) */ |
|---|
| | 554 | /* MIDI Tick emulation (ping the decoder every 10ms) */ |
|---|
| 554 | 555 | while (cur_tick < last_tick) |
|---|
| 555 | 556 | { |
|---|