Changeset 92b638c in mainline for uspace/drv/audio/sb16/pcm_iface.c


Ignore:
Timestamp:
2012-08-30T11:41:48Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5eed99d
Parents:
ed3816d
Message:

audio, sb16: Add and implement API for playback/capture with or without fragments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified uspace/drv/audio/sb16/pcm_iface.c

    red3816d r92b638c  
    9696}
    9797
    98 static int sb_stop_playback(ddf_fun_t *fun)
     98static int sb_stop_playback(ddf_fun_t *fun, bool immediate)
    9999{
    100         return sb_dsp_stop_playback(fun_to_dsp(fun));
     100        return sb_dsp_stop_playback(fun_to_dsp(fun), immediate);
    101101}
    102102
     
    108108}
    109109
    110 static int sb_stop_capture(ddf_fun_t *fun)
     110static int sb_stop_capture(ddf_fun_t *fun, bool immediate)
    111111{
    112         return sb_dsp_stop_capture(fun_to_dsp(fun));
     112        return sb_dsp_stop_capture(fun_to_dsp(fun), immediate);
    113113}
    114114
Note: See TracChangeset for help on using the changeset viewer.