Upgrade to thud
[AGL/meta-agl.git] / meta-agl-profile-core / recipes-multimedia / pulseaudio / pulseaudio-12.2 / 0006-sink-input-Remove-pa_sink_input_set_volume_ramp.patch
1 From ac9a99505fd768b66dd92e9091e80b576cabc00d Mon Sep 17 00:00:00 2001
2 From: Sangchul Lee <sangchul1011@gmail.com>
3 Date: Sat, 27 Aug 2016 21:33:20 +0900
4 Subject: [PATCH 6/6] sink-input: Remove pa_sink_input_set_volume_ramp()
5
6 Please use pa_sink_input_add_volume_ramp_factor() or
7 pa_sink_input_remove_volume_ramp_factor() instead of it.
8
9 Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
10 ---
11  src/pulsecore/sink-input.c | 23 -----------------------
12  src/pulsecore/sink-input.h |  1 -
13  2 files changed, 24 deletions(-)
14
15 diff --git a/src/pulsecore/sink-input.c b/src/pulsecore/sink-input.c
16 index 6f89aa1..4c7c568 100644
17 --- a/src/pulsecore/sink-input.c
18 +++ b/src/pulsecore/sink-input.c
19 @@ -1475,29 +1475,6 @@ int pa_sink_input_remove_volume_ramp_factor(pa_sink_input *i, const char *key, b
20      return 0;
21  }
22  
23 -/* Called from main thread */
24 -void pa_sink_input_set_volume_ramp(
25 -        pa_sink_input *i,
26 -        const pa_cvolume_ramp *ramp,
27 -        bool send_msg) {
28 -    pa_sink_input_assert_ref(i);
29 -    pa_assert_ctl_context();
30 -    pa_assert(PA_SINK_INPUT_IS_LINKED(i->state));
31 -    pa_assert(ramp);
32 -
33 -    pa_cvolume_ramp_convert(ramp, &i->ramp, i->sample_spec.rate);
34 -
35 -    pa_log_debug("setting volume ramp with target vol:%d and length:%ld",
36 -                i->ramp.ramps[0].target,
37 -                i->ramp.ramps[0].length);
38 -
39 -
40 -    /* This tells the sink that volume ramp changed */
41 -    if (send_msg)
42 -        pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i), PA_SINK_INPUT_MESSAGE_SET_VOLUME_RAMP,
43 -                                       NULL, 0, NULL) == 0);
44 -}
45 -
46  /* Called from main context */
47  static void set_real_ratio(pa_sink_input *i, const pa_cvolume *v) {
48      pa_sink_input_assert_ref(i);
49 diff --git a/src/pulsecore/sink-input.h b/src/pulsecore/sink-input.h
50 index 5430d53..5fef3d5 100644
51 --- a/src/pulsecore/sink-input.h
52 +++ b/src/pulsecore/sink-input.h
53 @@ -381,7 +381,6 @@ void pa_sink_input_set_volume(pa_sink_input *i, const pa_cvolume *volume, bool s
54  void pa_sink_input_add_volume_factor(pa_sink_input *i, const char *key, const pa_cvolume *volume_factor);
55  int pa_sink_input_remove_volume_factor(pa_sink_input *i, const char *key);
56  pa_cvolume *pa_sink_input_get_volume(pa_sink_input *i, pa_cvolume *volume, bool absolute);
57 -void pa_sink_input_set_volume_ramp(pa_sink_input *i, const pa_cvolume_ramp *ramp, bool send_msg);
58  void pa_sink_input_add_volume_ramp_factor(pa_sink_input *i, const char *key, const pa_cvolume_ramp *ramp_factor, bool send_msg);
59  int pa_sink_input_remove_volume_ramp_factor(pa_sink_input *i, const char *key, bool send_msg);
60  
61 -- 
62 1.9.1
63