Changeset 239
- Timestamp:
- 02/27/08 21:40:44 (4 years ago)
- Location:
- trunk/fm_server/src
- Files:
-
- 2 modified
-
fm_output_pulse.c (modified) (3 diffs)
-
main.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/fm_server/src/fm_output_pulse.c
r231 r239 118 118 g_assert (length); 119 119 120 g_print ("Ready to write, requested %lu bytes\n", length);120 //g_print ("Ready to write, requested %lu bytes\n", length); 121 121 gsize written_bytes = 0; 122 122 … … 129 129 req = length_samples; 130 130 131 g_print ("PA: Asking for %lu samples\n", req);131 //g_print ("PA: Asking for %lu samples\n", req); 132 132 133 133 FM_BUFFER_REQUESTED (output_pulse->main_buffer) = req; … … 142 142 pa_stream_write (s, output_pulse->buffer_int, req_bytes, NULL, 0, PA_SEEK_RELATIVE); 143 143 written_bytes += req_bytes; 144 g_print ("PA: Written %lu bytes\n", req_bytes);144 //g_print ("PA: Written %lu bytes\n", req_bytes); 145 145 } 146 146 -
trunk/fm_server/src/main.c
r238 r239 66 66 void fm_output_alsa_class_register (void); 67 67 void fm_output_jack_class_register (void); 68 //void fm_output_pulse_class_register (void);68 void fm_output_pulse_class_register (void); 69 69 void fm_song_db_class_register (void); 70 70 … … 141 141 #endif 142 142 #if HAVE_PULSE 143 /* fm_output_jack_class_register ();*/ 143 fm_output_pulse_class_register (); 144 144 #endif 145 145
