Changeset 239

Show
Ignore:
Timestamp:
02/27/08 21:40:44 (4 years ago)
Author:
ath
Message:

Fix FmOutputPulse? loading and remove useless debugging messages.

Location:
trunk/fm_server/src
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/fm_server/src/fm_output_pulse.c

    r231 r239  
    118118        g_assert (length); 
    119119 
    120         g_print ("Ready to write, requested %lu bytes\n", length); 
     120        //g_print ("Ready to write, requested %lu bytes\n", length); 
    121121        gsize written_bytes = 0; 
    122122 
     
    129129                        req = length_samples; 
    130130 
    131                 g_print ("PA: Asking for %lu samples\n", req); 
     131                //g_print ("PA: Asking for %lu samples\n", req); 
    132132 
    133133                FM_BUFFER_REQUESTED (output_pulse->main_buffer) = req; 
     
    142142                pa_stream_write (s, output_pulse->buffer_int, req_bytes, NULL, 0, PA_SEEK_RELATIVE); 
    143143                written_bytes += req_bytes; 
    144                 g_print ("PA: Written %lu bytes\n", req_bytes); 
     144                //g_print ("PA: Written %lu bytes\n", req_bytes); 
    145145        } 
    146146 
  • trunk/fm_server/src/main.c

    r238 r239  
    6666void fm_output_alsa_class_register (void); 
    6767void fm_output_jack_class_register (void); 
    68 //void fm_output_pulse_class_register (void); 
     68void fm_output_pulse_class_register (void); 
    6969void fm_song_db_class_register (void); 
    7070 
     
    141141#endif 
    142142#if HAVE_PULSE 
    143 /*      fm_output_jack_class_register ();*/ 
     143        fm_output_pulse_class_register (); 
    144144#endif 
    145145