Fixed terminology for path (in filesystem) versus uri (with protocol)

for gstreamer in MediaPlayer and MediaSource.
This commit is contained in:
brunoherbelin
2020-05-10 00:40:36 +02:00
parent db0acc9ae2
commit 77cffa160e
16 changed files with 104 additions and 40 deletions

View File

@@ -117,8 +117,8 @@ public:
void accept (Visitor& v);
// Media specific interface
void setURI(const std::string &uri);
std::string uri() const;
void setPath(const std::string &p);
std::string path() const;
MediaPlayer *mediaplayer() const;
protected:
@@ -126,7 +126,7 @@ protected:
void init();
Surface *mediasurface_;
std::string uri_;
std::string path_;
MediaPlayer *mediaplayer_;
};