We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7292a4 commit c5399d7Copy full SHA for c5399d7
libs/openFrameworks/video/ofAVFoundationPlayer.mm
@@ -62,7 +62,6 @@
62
}
63
64
//--------------------------------------------------------------
65
-// FIXME: fs::path
66
bool ofAVFoundationPlayer::loadPlayer(const of::filesystem::path & fileName, bool bAsync) {
67
if( ofGetUsingArbTex() == false ){
68
killTextureCache();
@@ -74,7 +73,7 @@
74
73
75
BOOL bStream = NO;
76
77
- string fileNameStr { ofPathToString(fileName) };
+ std::string fileNameStr { ofPathToString(fileName) };
78
bStream = bStream || (ofIsStringInString(fileNameStr, "http://"));
79
bStream = bStream || (ofIsStringInString(fileNameStr, "https://"));
80
bStream = bStream || (ofIsStringInString(fileNameStr, "rtsp://"));
0 commit comments