Changeset 1843 for pjproject/trunk/pjmedia/include/pjmedia/clock.h
- Timestamp:
- Mar 4, 2008 3:31:13 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/include/pjmedia/clock.h
r974 r1843 63 63 * #pjmedia_clock_wait() in order to synchronize timing. 64 64 */ 65 PJMEDIA_CLOCK_NO_ASYNC = 1 65 PJMEDIA_CLOCK_NO_ASYNC = 1, 66 67 /** 68 * Prevent the clock from setting it's thread to highest priority. 69 */ 70 PJMEDIA_CLOCK_NO_HIGHEST_PRIO = 2 66 71 }; 67 72 … … 87 92 * along with clock_rate, specifies the interval 88 93 * of each clock run (or clock ticks). 89 * @param options By default, the callback will be called 90 * asynchronously (depending on the clock 91 * implementation backend, a thread may be 92 * created). If PJMEDIA_CLOCK_NO_ASYNC is set, 93 * application must poll the clock with 94 * #pjmedia_clock_wait() to let the clock runs. 94 * @param options Bitmask of pjmedia_clock_options. 95 95 * @param cb Callback to be called for each clock tick. 96 96 * @param user_data User data, which will be passed to the callback.
Note: See TracChangeset
for help on using the changeset viewer.