Changeset 4371:21a39a95ba93 in roaraudio


Ignore:
Timestamp:
09/14/10 19:44:08 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added debug lions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/hwmixer.c

    r4368 r4371  
    171171 int id; 
    172172 
     173 ROAR_DBG("hwmixer_substream_new(parent=%p) = ?", parent); 
     174 
    173175 if ( parent == NULL ) 
    174176  return NULL; 
     177 
     178 ROAR_DBG("hwmixer_substream_new(parent=%p) = ?", parent); 
    175179 
    176180 stream = roar_mm_malloc(sizeof(struct hwmixer_stream)); 
    177181 if ( stream == NULL ) 
    178182  return NULL; 
     183 
     184 ROAR_DBG("hwmixer_substream_new(parent=%p) = ?", parent); 
    179185 
    180186 if ( (id = streams_new_virtual(parent->basestream, &ss)) == -1 ) { 
     
    195201 streams_set_mixerstream(id, stream); 
    196202 
     203 ROAR_DBG("hwmixer_substream_new(parent=%p) = %p", parent, stream); 
     204 
    197205 return stream; 
    198206} 
Note: See TracChangeset for help on using the changeset viewer.