Changeset 2695:1020ab3bdd4f in roaraudio


Ignore:
Timestamp:
09/13/09 03:13:19 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

more debug lions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/container_framework.c

    r2691 r2695  
    252252 
    253253int cont_fw_cf_close(CODECFILTER_USERDATA_T   inst) { 
     254 ROAR_DBG("cont_fw_cf_close(*) = ?"); 
    254255 return cont_fw_delete(inst); 
    255256} 
     
    260261// no direct read or writing... 
    261262int cont_fw_cf_write(CODECFILTER_USERDATA_T   inst, char * buf, int len) { 
     263 ROAR_DBG("cont_fw_cf_write(*) = -1"); 
    262264 return -1; 
    263265} 
    264266 
    265267int cont_fw_cf_read (CODECFILTER_USERDATA_T   inst, char * buf, int len) { 
     268 ROAR_DBG("cont_fw_cf_read(*) = -1"); 
    266269 return -1; 
    267270} 
     
    269272int cont_fw_cf_flush(CODECFILTER_USERDATA_T   inst) { 
    270273 struct cont_fw_parent_inst * self = (void*)inst; 
     274 
     275 ROAR_DBG("cont_fw_cf_flush(*) = ?"); 
    271276 
    272277 if ( self->pcb.flush != NULL ) 
     
    281286 struct cont_fw_parent_inst * self = (void*)inst; 
    282287 int_least32_t type = cmd & ROAR_STREAM_CTL_TYPEMASK; 
     288 
     289 ROAR_DBG("cont_fw_cf_ctl(*) = ?"); 
    283290 
    284291 cmd -= type; 
Note: See TracChangeset for help on using the changeset viewer.