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

Commit 6852b198 authored by James Dong's avatar James Dong Committed by Android Git Automerger
Browse files

am d3d445b1: Merge "Use PV_PLAYER to handle RTSP streaming" into froyo

Merge commit 'd3d445b1' into froyo-plus-aosp

* commit 'd3d445b1':
  Use PV_PLAYER to handle RTSP streaming
parents 57e60854 d3d445b1
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -747,6 +747,11 @@ player_type getPlayerType(const char* url)
        }
    }

    // Use PV_PLAYER for rtsp for now
    if (!strncasecmp(url, "rtsp://", 7)) {
        return PV_PLAYER;
    }

    return getDefaultPlayerType();
}