Skip to content

Commit c5399d7

Browse files
committed
more fixes
1 parent f7292a4 commit c5399d7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libs/openFrameworks/video/ofAVFoundationPlayer.mm

+1-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
}
6363

6464
//--------------------------------------------------------------
65-
// FIXME: fs::path
6665
bool ofAVFoundationPlayer::loadPlayer(const of::filesystem::path & fileName, bool bAsync) {
6766
if( ofGetUsingArbTex() == false ){
6867
killTextureCache();
@@ -74,7 +73,7 @@
7473

7574
BOOL bStream = NO;
7675

77-
string fileNameStr { ofPathToString(fileName) };
76+
std::string fileNameStr { ofPathToString(fileName) };
7877
bStream = bStream || (ofIsStringInString(fileNameStr, "http://"));
7978
bStream = bStream || (ofIsStringInString(fileNameStr, "https://"));
8079
bStream = bStream || (ofIsStringInString(fileNameStr, "rtsp://"));

0 commit comments

Comments
 (0)