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

Commit 644f458c authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "hal: fix incorrect routing for voip calls"

parents a92aa4d1 d9b33577
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -288,7 +288,7 @@ static int voip_stop_call(struct audio_device *adev)
        ALOGV("%s: unexpected because out_stream_count=%d, in_stream_count=%d",
               __func__, voip_data.out_stream_count, voip_data.in_stream_count);
        uc_info = get_usecase_from_list(adev, USECASE_COMPRESS_VOIP_CALL);
        if (uc_info)
        if (uc_info && !voip_data.out_stream_count)
            uc_info->stream.out = adev->primary_output;
        ret = -EINVAL;
    }