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

Commit ab185f72 authored by Daniel Van Veen's avatar Daniel Van Veen Committed by android-build-merger
Browse files

Merge "Fix inequality typo in StreamIn::getCapturePosition" am: ba322571 am: 3770968c

am: d0161b94

Change-Id: Idd1d697f45057872d1a88ed42487cc1e1859d229
parents 25153f35 d0161b94
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -415,7 +415,7 @@ Result StreamIn::getCapturePositionImpl(audio_stream_in_t* stream,
    // spam the log in this case.
    static const std::vector<int> ignoredErrors{ENOSYS};
    Result retval(Result::NOT_SUPPORTED);
    if (stream->get_capture_position != NULL) return retval;
    if (stream->get_capture_position == NULL) return retval;
    int64_t halFrames, halTime;
    retval = Stream::analyzeStatus("get_capture_position",
                                   stream->get_capture_position(stream, &halFrames, &halTime),