Changeset 4289:1b0960dba7e3 in roaraudio


Ignore:
Timestamp:
08/29/10 01:31:26 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

typo

Location:
roard
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • roard/include/streams.h

    r4272 r4289  
    166166int streams_ltm_ctl      (int id, int mt, int window, int cmd); 
    167167int streams_ltm_calc     (int id, struct roar_audio_info * info, void * data, size_t len); 
    168 struct roar_stream_ltm * streams_lzm_get(int id, int mt, int window); 
     168struct roar_stream_ltm * streams_ltm_get(int id, int mt, int window); 
    169169 
    170170int streams_ctl          (int id, int_least32_t cmd, void * data); 
  • roard/req.c

    r4287 r4289  
    796796 
    797797     for (i = 6; i < mes->datalen/2; i++) { 
    798       if ( (ltm = streams_lzm_get(d[i], d[5], d[3])) == NULL ) 
     798      if ( (ltm = streams_ltm_get(d[i], d[5], d[3])) == NULL ) 
    799799       return -1; 
    800800 
     
    803803    } else { 
    804804     ROAR_DBG("req_on_get_stream_para(client=%i, ...): LTM single-stream request for stream %i...", client, mes->stream); 
    805      if ( (ltm = streams_lzm_get(mes->stream, d[5], d[3])) == NULL ) 
     805     if ( (ltm = streams_ltm_get(mes->stream, d[5], d[3])) == NULL ) 
    806806      return -1; 
    807807 
     
    839839    if ( mes->stream == -1 ) { 
    840840     for (i = 6; i < mes->datalen/2; i++) { 
    841       if ( (ltm = streams_lzm_get(d[i], d[5], d[3])) == NULL ) 
     841      if ( (ltm = streams_ltm_get(d[i], d[5], d[3])) == NULL ) 
    842842       return -1; 
    843843 
     
    861861     } 
    862862    } else { 
    863      if ( (ltm = streams_lzm_get(mes->stream, d[5], d[3])) == NULL ) 
     863     if ( (ltm = streams_ltm_get(mes->stream, d[5], d[3])) == NULL ) 
    864864      return -1; 
    865865 
  • roard/streams.c

    r4288 r4289  
    11531153} 
    11541154 
    1155 struct roar_stream_ltm * streams_lzm_get(int id, int mt, int window) { 
     1155struct roar_stream_ltm * streams_ltm_get(int id, int mt, int window) { 
    11561156 struct roar_stream_server * ss; 
    11571157 struct roar_stream_ltm *    ltm = NULL; 
Note: See TracChangeset for help on using the changeset viewer.