Skip to content

Commit

Permalink
Fix smp headers
Browse files Browse the repository at this point in the history
  • Loading branch information
sundermann committed Mar 3, 2023
1 parent b0a167f commit 0494ace
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion include/starfish-media-pipeline/StarfishMediaAPIs.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class StarfishMediaAPIs
std::string Feed(const char *payload);
bool flush();
bool flush(const char *payload);
void getCurrentPlaytime();
int64_t getCurrentPlaytime();
bool getVideoRenderQueueLength(int &length);
bool getAudioBufferSize(int &total, int &used);
const char *getMediaID();
Expand Down Expand Up @@ -63,6 +63,9 @@ class StarfishMediaAPIs
void setExternalContext(GMainContext *);
void unsetExternalContext();
#endif
private:
// Must include big enough storage size. On some system it has 300 bytes, 4KB here should be fairly enough
char padding[4096];
};

enum PF_EVENT_T
Expand Down

0 comments on commit 0494ace

Please sign in to comment.