Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add override identifier to InsertLiveSegment functions #1361

Merged
merged 1 commit into from
Aug 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/parser/DASHTree.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class ATTR_DLL_LOCAL CDashTree : public adaptive::AdaptiveTree
size_t pos,
uint64_t timestamp,
uint64_t fragmentDuration,
uint32_t movieTimescale);
uint32_t movieTimescale) override;

protected:
virtual CDashTree* Clone() const override { return new CDashTree{*this}; }
Expand Down
2 changes: 1 addition & 1 deletion src/parser/SmoothTree.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class ATTR_DLL_LOCAL CSmoothTree : public AdaptiveTree
size_t pos,
uint64_t timestamp,
uint64_t fragmentDuration,
uint32_t mediaTimescale);
uint32_t mediaTimescale) override;

protected:
virtual bool ParseManifest(const std::string& data);
Expand Down
Loading