Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Also, added Daniel Cantarín to AUTHORS and CONTRIBUTORS files, as per @kqyang comment: shaka-project#702 (comment)
  • Loading branch information
Daniel Cantarín committed Jan 31, 2020
1 parent bbae84c commit 5ca890e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ Piotr Srebrny <[email protected]>
Richard Eklycke <[email protected]>
Sergio Ammirata <[email protected]>
The Chromium Authors <*@chromium.org>
Daniel Cantarín <[email protected]>
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ Richard Eklycke <[email protected]>
Rintaro Kuroiwa <[email protected]>
Sergio Ammirata <[email protected]>
Thomas Inskip <[email protected]>
Daniel Cantarín <[email protected]>
2 changes: 1 addition & 1 deletion packager/media/formats/mp2t/ts_segmenter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ void TsSegmenter::SetTsWriterFileOpenedForTesting(bool value) {
ts_writer_file_opened_ = value;
}

Status TsSegmenter::OpenNewSegmentIfClosed(uint32_t next_pts) {
Status TsSegmenter::OpenNewSegmentIfClosed(int64_t next_pts) {
if (ts_writer_file_opened_)
return Status::OK;
const std::string segment_name =
Expand Down
2 changes: 1 addition & 1 deletion packager/media/formats/mp2t/ts_segmenter.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class TsSegmenter {
void SetTsWriterFileOpenedForTesting(bool value);

private:
Status OpenNewSegmentIfClosed(uint32_t next_pts);
Status OpenNewSegmentIfClosed(int64_t next_pts);

// Writes PES packets (carried in TsPackets) to a file. If a file is not open,
// it will open one. This will not close the file.
Expand Down

0 comments on commit 5ca890e

Please sign in to comment.