Changeset 39df335044bacc905f61b48ddfa7a5edca3c0d14

Show
Ignore:
Timestamp:
04/05/07 23:35:50 (2 years ago)
Author:
Antoine Cellerier <dionoea@videolan.org>
git-committer:
Antoine Cellerier <dionoea@videolan.org> 1178314550 +0000
git-parent:

[970109d8ce8bb2027510168cd39c01610b2f42bd]

git-author:
Antoine Cellerier <dionoea@videolan.org> 1178314550 +0000
Message:

"[PATCH] show input index-number in vlm show" by Ilkka Ollakka

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • THANKS

    r263c385 r39df335  
    8282Hans-Peter Jansen <hpj at urpla.net> - patch for module options handling 
    8383Igor Helman - VLM msecseek command 
    84 Ilkka Ollakka - SDP bitrate patch, VLM play indexing start fix 
     84Ilkka Ollakka - SDP bitrate patch, various VLM fixes 
    8585Jan Gerber <j at v2v dot org> - patch theora decoding aspect ratio 
    8686Jan Van Boghout <vlc at macrabbit.com> - iTunes like slider for OSX intf 
  • src/input/vlm.c

    r3f0c8f4 r39df335  
    13741374    p_msg_sub = vlm_MessageAdd( p_msg, vlm_MessageNew( "inputs", NULL ) ); 
    13751375    for( i = 0; i < p_cfg->i_input; i++ ) 
    1376         vlm_MessageAdd( p_msg_sub, vlm_MessageNew( p_cfg->ppsz_input[i], NULL ) ); 
     1376    { 
     1377        char *psz_tmp; 
     1378        asprintf( &psz_tmp, "%d", i+1 ); 
     1379        vlm_MessageAdd( p_msg_sub, 
     1380                        vlm_MessageNew( psz_tmp, p_cfg->ppsz_input[i] ) ); 
     1381        free( psz_tmp ); 
     1382    } 
    13771383 
    13781384    vlm_MessageAdd( p_msg,