[Version] 11.1.67
[Issue type] New feature
Change-Id: I056f780e7db6217c4b06a0ea27560a17cd5ceeb8
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Name: pulseaudio
Summary: Improved Linux sound server
Version: 11.1
-Release: 66
+Release: 67
Group: Multimedia/Audio
License: LGPL-2.1
URL: http://pulseaudio.org
#include <pulse/rtclock.h>
#include <pulse/timeval.h>
#endif
+#ifdef __TIZEN__
+#include <pulse/rtclock.h>
+#endif
#include <pulsecore/core-format.h>
#include <pulsecore/mix.h>
i->pcm_dump_fp = NULL;
}
#endif
+#ifdef __TIZEN__
+ if (state == PA_SINK_INPUT_RUNNING)
+ i->time_of_start_to_run = pa_rtclock_now();
+#endif
update_n_corked(i, state);
i->state = state;
} thread_info;
#ifdef __TIZEN__
+ pa_usec_t time_of_start_to_run;
FILE *pcm_dump_fp;
char *dump_path;
uint32_t dump_length;
#include <time.h>
#include <pulse/timeval.h>
#endif
+#ifdef __TIZEN__
+#include <pulse/rtclock.h>
+#endif
#include <pulse/utf8.h>
#include <pulse/xmalloc.h>
o->pcm_dump_fp = NULL;
}
#endif
+#ifdef __TIZEN__
+ if (state == PA_SOURCE_OUTPUT_RUNNING)
+ o->time_of_start_to_run = pa_rtclock_now();
+#endif
update_n_corked(o, state);
o->state = state;
pa_sink_input *direct_on_input; /* may be NULL */
} thread_info;
#ifdef __TIZEN__
+ pa_usec_t time_of_start_to_run;
FILE *pcm_dump_fp;
char *dump_path;
#endif