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

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

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

Merge commit '6852b198' into kraken

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

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

    return getDefaultPlayerType();
}