Show
Ignore:
Timestamp:
12/04/10 04:24:26 (1 year ago)
Author:
jwoithe
Message:

ffado.h: remove references to old ffado_streaming_{read,write}() functions as reported by Adrian Knoth. Partial fix to ticket:313. I'm not certain I've got all the details correct - others may wish to check.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/libffado/ffado.h

    r1498 r1928  
    6767 *   } 
    6868 * 
    69  *   ffado_streaming_transfer_buffers(dev); 
     69 *   ffado_streaming_transfer_capture_buffers(dev); 
    7070 * 
    7171 *   for(all channels) { 
     72 *     // For both audio and MIDI channels, captured data is available 
     73 *     // in the buffer previously set with a call to 
     74 *     //   ffado_streaming_set_capture_stream_buffer(dev, channel, buffer) 
    7275 *     switch (channel_type) { 
    7376 *     case audio: 
    74  *       bytesread=ffado_streaming_read(audioinbuffer[channel]); 
    75  *       byteswritten=ffado_streaming_write(audiooutbuffer[channel]); 
     77 *       // Process incoming audio as needed 
    7678 *     case midi: 
    77  *       bytesread=ffado_streaming_read(midiinbuffer[channel]); 
    78  *       byteswritten=ffado_streaming_write(midioutbuffer[channel]); 
     79 *       // Process incoming MIDI data as needed 
    7980 *     } 
    8081 *   } 
     82 * 
     83 *   for(all channels) { 
     84 *     // For both audio and MIDI channels, data is written to buffers 
     85 *     // previously associated with the playback channel streams using 
     86 *     //   ffado_streaming_set_playback_stream_buffer(dev, channel, buffer) 
     87 *     switch (channel_type) { 
     88 *     case audio: 
     89 *       // Set audio playback buffer contents 
     90 *     case midi: 
     91 *       // Set MIDI playback buffer contents 
     92 *     } 
     93 *   } 
     94 *   ffado_streaming_transfer_playback_buffers(dev); 
     95 * 
    8196 * } 
    8297 * ffado_streaming_stop();