~ubuntu-branches/ubuntu/quantal/linphone/quantal

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Elie Mamane, Kilian Krause, Lionel Elie Mamane
  • Date: 2009-05-27 11:39:51 UTC
  • mfrom: (5.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090527113951-jd525e5rlwluh617
[ Kilian Krause ]
* Remove -N from wget args in get-orig-source target as -O is already
  used.

[ Lionel Elie Mamane ]
* linphone: Fix file conflict with linphone-common (<= 3.1.2-1)
  (Closes: #528076)

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
        uint64_t orig; /* a relative time to take in account difference between time base given by consecutive get_cur_time_ptr() functions.*/
61
61
        MSTickerTimeFunc get_cur_time_ptr;
62
62
        void *get_cur_time_data;
 
63
        char *name;
63
64
        bool_t run;       /* flag to indicate whether the ticker must be run or not */
64
65
#ifdef WIN32_TIMERS
65
66
        HANDLE TimeEvent;
87
88
MSTicker *ms_ticker_new(void);
88
89
 
89
90
/**
 
91
 * Set a name to the ticker (used for logging)
 
92
**/
 
93
void ms_ticker_set_name(MSTicker *ticker, const char *name);
 
94
 
 
95
/**
90
96
 * Attach a chain of filters to a ticker.
91
97
 * The processing chain will be executed until ms_ticker_detach
92
98
 * will be called.