~ubuntu-branches/ubuntu/utopic/linphone/utopic-proposed

« back to all changes in this revision

Viewing changes to mediastreamer2/include/mediastreamer2/msqueue.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2010-05-23 10:04:07 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100523100407-wev5qrmhwwbs0whh
Tags: 3.3.0-1
* New upstream release

* debian/control: s/is a is an/is an/ (Closes: #582661)
* debian/control s/It main/Its main/ (Closes: #582665) 
* configure --disable-strict (Closes: 561708)
* Cleanup arches libv4l-dev libasound2-dev (Closes: #542595)
* Cleanup debian/watch
* Drop fix_desktop_section.dpatch - included upstream
* Drop desktop-icon.dpatch - included upstream
* Drop always_ipv4_for_ipv4_hosts.dpatch - included upstream
* Drop dpatch
* Upstream dropped /usr/bin/sipomatic

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
        return qlast(&q->q);
52
52
}
53
53
 
 
54
static inline void ms_queue_remove(MSQueue *q, mblk_t *m){
 
55
        remq(&q->q,m);
 
56
}
 
57
 
54
58
static inline bool_t ms_queue_empty(MSQueue *q){
55
59
        return qempty(&q->q);
56
60
}
103
107
        return obj->size;
104
108
}
105
109
 
 
110
/* purge all data pending in the bufferizer */
 
111
void ms_bufferizer_flush(MSBufferizer *obj);
 
112
 
106
113
void ms_bufferizer_uninit(MSBufferizer *obj);
107
114
 
108
115
void ms_bufferizer_destroy(MSBufferizer *obj);