Loading sound/core/pcm_lib.c +5 −0 Original line number Diff line number Diff line Loading @@ -346,7 +346,12 @@ static int snd_pcm_update_hw_ptr0(struct snd_pcm_substream *substream, * the elapsed time to detect xruns. */ jdelta = curr_jiffies - runtime->hw_ptr_jiffies; #ifdef CONFIG_AUDIO_QGKI if ((jdelta < runtime->hw_ptr_buffer_jiffies / 2) || (runtime->hw_ptr_buffer_jiffies <= 0)) #else if (jdelta < runtime->hw_ptr_buffer_jiffies / 2) #endif goto no_delta_check; hdelta = jdelta - delta * HZ / runtime->rate; xrun_threshold = runtime->hw_ptr_buffer_jiffies / 2 + 1; Loading Loading
sound/core/pcm_lib.c +5 −0 Original line number Diff line number Diff line Loading @@ -346,7 +346,12 @@ static int snd_pcm_update_hw_ptr0(struct snd_pcm_substream *substream, * the elapsed time to detect xruns. */ jdelta = curr_jiffies - runtime->hw_ptr_jiffies; #ifdef CONFIG_AUDIO_QGKI if ((jdelta < runtime->hw_ptr_buffer_jiffies / 2) || (runtime->hw_ptr_buffer_jiffies <= 0)) #else if (jdelta < runtime->hw_ptr_buffer_jiffies / 2) #endif goto no_delta_check; hdelta = jdelta - delta * HZ / runtime->rate; xrun_threshold = runtime->hw_ptr_buffer_jiffies / 2 + 1; Loading