Changeset b1cb747e78a22db59dac80434995311a07ff6fdf

Show
Ignore:
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
  • modules/demux/smf.c

    r57bbabb rb1cb747  
    296296            break; 
    297297 
    298         case 0x01: /* Test (comment) */ 
     298        case 0x01: /* Text (comment) */ 
    299299            EnsureUTF8 ((char *)payload); 
    300300            msg_Info (p_demux, "Text      : %s", (char *)payload); 
     
    441441                            goto skip; 
    442442                    } 
     443                    /* never reached */ 
    443444                } 
    444445                case 0xFF: /* SMF Meta Event */ 
     
    551552        last_tick = cur_tick + 1; 
    552553 
    553     /* MIDI Tick emulation (ping the decider every 10ms) */ 
     554    /* MIDI Tick emulation (ping the decoder every 10ms) */ 
    554555    while (cur_tick < last_tick) 
    555556    {