Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6ad843ab authored by Meng Wang's avatar Meng Wang Committed by Gerrit - the friendly Code Review server
Browse files

Revert "ASoC: msm: fix integer overflow for long duration offload playback"



This reverts commit fdaacf04.

Change-Id: Id52223e0f1af18a1427674f03d8971dff9420b77
Signed-off-by: default avatarMeng Wang <mengw@codeaurora.org>
parent b2cffb57
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -67,11 +67,7 @@ struct snd_compr_params {
 */
struct snd_compr_tstamp {
	__u32 byte_offset;
#ifdef CONFIG_AUIDO_QGKI
	__u64 copied_total;
#else
	__u32 copied_total;
#endif
	__u32 pcm_frames;
	__u32 pcm_io_frames;
	__u32 sampling_rate;
+0 −5
Original line number Diff line number Diff line
@@ -172,15 +172,10 @@ static int snd_compr_update_tstamp(struct snd_compr_stream *stream,
	if (!stream->ops->pointer)
		return -ENOTSUPP;
	err = stream->ops->pointer(stream, tstamp);
#ifdef CONFIG_AUDIO_QGKI
	if (err)
		return err;
	pr_debug("dsp consumed till %d total %llu bytes\n",
		tstamp->byte_offset, tstamp->copied_total);
#else
	pr_debug("dsp consumed till %d total %d bytes\n",
		tstamp->byte_offset, tstamp->copied_total);
#endif
	if (stream->direction == SND_COMPRESS_PLAYBACK)
		stream->runtime->total_bytes_transferred = tstamp->copied_total;
	else