Skip to content

Commit

Permalink
bug fix: should be 1<<33 not 2<<33
Browse files Browse the repository at this point in the history
  • Loading branch information
erankor committed Dec 23, 2020
1 parent 547ec65 commit a5c6825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vod/subtitle/webvtt_builder.c
Expand Up @@ -10,7 +10,7 @@

#define WEBVTT_MIN_SEGMENT_SIZE (10) // iOS11 doesn't play when the first vtt segment is smaller than 10 bytes

#define MPEGTS_MAX_TIMESTAMP (2ULL << 33) // 33 bit
#define MPEGTS_MAX_TIMESTAMP (1ULL << 33) // 33 bit

static u_char*
webvtt_builder_write_timestamp(u_char* p, uint64_t timestamp)
Expand Down

0 comments on commit a5c6825

Please sign in to comment.