~ubuntu-branches/debian/jessie/spice/jessie

« back to all changes in this revision

Viewing changes to client/windows/record.h

  • Committer: Package Import Robot
  • Author(s): Michael Tokarev
  • Date: 2014-05-23 19:26:44 UTC
  • mfrom: (0.4.7) (2.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20140523192644-j9sbho5ghud5keje
Tags: 0.12.5-1
* new upstream release.  Can now build without celt!
* Dropped patches:
  - make-celt-to-be-optional.patch
  - link-server-test-with-libm-libpthread.patch
  - enable_subdir-objects.patch
  - fix-buffer-overflow-when-decrypting-client-spice-ticket.patch
* build-depend on libopus-dev, which enables opus support
  (no --enable-opus configure flag for now)
* do not remove .version in clean anymore (it is part of the tarball)
* do not use dh_autoreconf, since we aren't changing autoconf anymore
* update libspice-server1.symbols with new symbols
* introduce libspice-server1-dbg package (Closes: #743850)
* fix the vcs-browse url (Closes: #722241)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
class WaveRecorder: public WaveRecordAbstract, public EventSources::Trigger {
25
25
public:
26
 
    WaveRecorder(Platform::RecordClient& client, uint32_t sampels_per_sec,
 
26
    WaveRecorder(Platform::RecordClient& client, uint32_t samples_per_sec,
27
27
                 uint32_t bits_per_sample, uint32_t channels);
28
28
    virtual ~WaveRecorder();
29
29
 
34
34
    virtual void on_event();
35
35
 
36
36
private:
37
 
    void init_ring(uint32_t sampels_per_sec, uint32_t frame_bytes, uint32_t frame_align);
 
37
    void init_ring(uint32_t samples_per_sec, uint32_t frame_bytes, uint32_t frame_align);
38
38
    WAVEHDR* wave_hader(uint32_t position);
39
39
    void move_head();
40
40