Changeset 2691:25c92e4d42cf in roaraudio


Ignore:
Timestamp:
09/13/09 02:53:34 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added debug lions

Location:
roard
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • roard/codecfilter_raum.c

    r2688 r2691  
    3636 int flags = 0; 
    3737 
     38 ROAR_DBG("cf_raum_pcb_open(*) = ?"); 
     39 
    3840 if ( stream == NULL ) 
    3941  return -1; 
     
    6062 cont_fw_set_uinst(self, state); 
    6163 
     64 ROAR_DBG("cf_raum_pcb_open(*) = -1"); 
    6265 return 0; 
    6366} 
     
    6669 void * state; 
    6770 
     71 ROAR_DBG("cf_raum_pcb_close(*) = ?"); 
     72 
    6873 if ( cont_fw_get_uinst(self, &state) == -1 ) 
    6974  return -1; 
    7075 
     76 ROAR_DBG("cf_raum_pcb_close(*) = ?"); 
    7177 return RAUMClose(state); 
    7278} 
    7379 
    7480CONT_FW_SETUP_TYPE(cf_raum_setup) { 
     81 ROAR_DBG("cf_raum_setup(*) = ?"); 
     82 
    7583 self->pcb.open  = cf_raum_pcb_open; 
    7684 self->pcb.close = cf_raum_pcb_close; 
     85 
     86 ROAR_DBG("cf_raum_setup(*) = 0"); 
    7787 return 0; 
    7888} 
  • roard/container_framework.c

    r2683 r2691  
    220220 CONT_FW_SETUP_TYPE((*setup)); 
    221221 
     222 ROAR_DBG("cont_fw_cf_open(*) = ?"); 
     223 
    222224 if ( cont_fw_new(&self) == -1 ) 
    223225  return -1; 
     226 
     227 ROAR_DBG("cont_fw_cf_open(*) = ?"); 
    224228 
    225229 if ( (setup = filter->setup) != NULL ) { 
     
    230234 } 
    231235 
     236 ROAR_DBG("cont_fw_cf_open(*) = ?"); 
     237 
    232238 if ( self->pcb.open != NULL ) { 
    233239  if ( self->pcb.open(self, codec, info, filter) == -1 ) { 
     
    237243 } 
    238244 
     245 ROAR_DBG("cont_fw_cf_open(*) = ?"); 
     246 
    239247 *inst = self; 
     248 
     249 ROAR_DBG("cont_fw_cf_open(*) = 0"); 
    240250 return 0; 
    241251} 
Note: See TracChangeset for help on using the changeset viewer.