Merge "Use PV_PLAYER to handle RTSP streaming" into froyo

This commit is contained in:
James Dong
2010-04-14 09:59:33 -07:00
committed by Android (Google) Code Review

View File

@@ -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(); return getDefaultPlayerType();
} }